qinstall src
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 271
qinstall-src 2.0
qinstall-src is a source package collection along with a bash script that helps an administrator to compile a mail server. more>>
For those who want to build their own mailserver from sources on different GNU/Linux distributions like Slackware, Gentoo, CentOS, SuSe, Fedora Core or Debian, we created an universal package called qinstall-src.
qinstall-src is a source package collection along with a bash script that helps an administrator to compile, configure, install and run an e-mail server, based on qmail, together with all the programs required to run properly.
Main features:
- all perl modules required for optimum runtime;
- user administration web interface(qmailadmin);
- console-based user and domain administration (vpopmail, cqadmin);
- a bash script that eases the administration of queue pending messages (qmHandle);
- personalized webmail (SSL/TLS), activated quota, password changer (squirrelmail);
- ESMTP/SMTP, IMAP/POP3 SSL services activated by default (qmail, courier imap);
- e-mail autoresponder (autorespond);
- antivirus and antispam software (clamav, spamassassin);
- email filters (procmail);
- other programs that help running the e-mail server at optimum speed;
qinstall-src is tested on Slackware, Gentoo, Fedora Core, CentOS, openSuSe and Debian.
Enhancements:
- Many packages have been upgraded to the latest version.
- All packages have been ported to Bluewhite64 Linux (64-bit).
<<lessqinstall-src is a source package collection along with a bash script that helps an administrator to compile, configure, install and run an e-mail server, based on qmail, together with all the programs required to run properly.
Main features:
- all perl modules required for optimum runtime;
- user administration web interface(qmailadmin);
- console-based user and domain administration (vpopmail, cqadmin);
- a bash script that eases the administration of queue pending messages (qmHandle);
- personalized webmail (SSL/TLS), activated quota, password changer (squirrelmail);
- ESMTP/SMTP, IMAP/POP3 SSL services activated by default (qmail, courier imap);
- e-mail autoresponder (autorespond);
- antivirus and antispam software (clamav, spamassassin);
- email filters (procmail);
- other programs that help running the e-mail server at optimum speed;
qinstall-src is tested on Slackware, Gentoo, Fedora Core, CentOS, openSuSe and Debian.
Enhancements:
- Many packages have been upgraded to the latest version.
- All packages have been ported to Bluewhite64 Linux (64-bit).
Download (MB)
Added: 2007-07-20 License: GPL (GNU General Public License) Price:
530 downloads
IPv6 FireWall script
IPv6 FireWall script is a firewall based on ip6tables. more>>
IPv6 FireWall script is a firewall based on ip6tables.
firewall6.sh 122 lines
#!/bin/bash
# Basic IPv6 FireWall script by Dennis Kruyt (dennis@klingon.nl)
#
# Sun Jan 5 18:26:28 2003 - DK
#debug
#set -x
cd /opt/scripts/firewall
source ./config6
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11
# change to script directory
cd ${SCRIPTSDIR}
SCRIPT=${SCRIPTSDIR}/firewall6.sh
case "$1" in
flush)
echo -e "Starting Firewall:"
${IPTABLE6} -F >> /dev/null 2>&1
${IPTABLE6} -X >> /dev/null 2>&1
echo -e "Setting defaults op ACCEPT!"
echo -e "ALERT: no firewall rules active"
#
${IPTABLE6} -P INPUT ACCEPT
${IPTABLE6} -P OUTPUT ACCEPT
${IPTABLE6} -P FORWARD ACCEPT
;;
start|reload)
echo -n "Starting Firewall: "
# paging!
#
# create a backup
TIME=`date +%s`
tar -czf /opt/backups/firewall/firewall.${TIME}.tar.gz /opt/scripts/firewall
# sending mail
mail email@address.com -s "Firewall - (re)started" < $0
# wait
sleep 1
# kerneloptions
echo -n "Loading Kernel options.."
./kernel_options6.sh
echo -n "Flushing and deleting all chains.."
${IPTABLE6} -F >> /dev/null 2>&1
${IPTABLE6} -X >> /dev/null 2>&1
# default policy
echo -n "Setting default policy DROP.."
${IPTABLE6} -P INPUT DROP
${IPTABLE6} -P OUTPUT DROP
${IPTABLE6} -P FORWARD DROP
# ?????????????
#${IPTABLE} -F -t mangle
#${IPTABLE} -t mangle -X
echo -e "Loading chains.."
# create chain blacklist
${IPTABLE6} --new blacklist
#And drop the evil ones
for i in $BLACKLIST6;do
${IPTABLE6} -A blacklist --src $i -j DROP
done
#icmp chain
${IPTABLE6} --new icmprules
${IPTABLE6} -A icmprules -p icmpv6 -j ACCEPT
# create out chain
${IPTABLE6} --new out
#localhost to localhost
${IPTABLE6} -A out --src $LOCALHOST6 --dst $LOCALHOST6 -j ACCEPT
# for now accept all outgoing IPv6 traffic
${IPTABLE6} -A out --src $SIXXS --dst $ANY6 -j ACCEPT
# create in chain
${IPTABLE6} --new in
#localhost to localhost
${IPTABLE6} -A in --src $LOCALHOST6 --dst $LOCALHOST6 -j ACCEPT
# for now accept all incomming IPv6 traffic
${IPTABLE6} -A in --dst $SIXXS --src $ANY6 -j ACCEPT
#All that are in trusted may ssh
for i in $THRUSTED6;do
${IPTABLE6} -A in -p tcp --dst $SIXXS --dport 22 --src $i -j ACCEPT
done
# jump to all ipv6 chains
${IPTABLE6} -A INPUT -j blacklist
${IPTABLE6} -A OUTPUT -j blacklist
${IPTABLE6} -A FORWARD -j blacklist
${IPTABLE6} -A INPUT -j icmprules
${IPTABLE6} -A OUTPUT -j icmprules
${IPTABLE6} -A INPUT -j in
${IPTABLE6} -A OUTPUT -j out
;;
show)
echo -e "Rules in the firewall: ${CHAIN} n"
${IPTABLE6} -L -n
;;
*)
echo -e "Usage: ${SCRIPT} {flush|start|reload|show} n"
exit 1
;;
esac
exit 0
config6 12 lines
export IPTABLE6=/sbin/ip6tables
export SCRIPTSDIR=/opt/scripts/firewall
export EXT="eth0" # device
export SIXXS="3ffe:8114:1000::50f/127" # extern
export ANY6="::/0"
export LOCALHOST6="::1/128"
export THRUSTED6=""
export BLACKLIST6="3ffe:8114:2fff:1391::1"
kernel_options6.sh 7 lines
#!/bin/bash
# forwarding on
#echo "1" > /proc/sys/net/ipv6 blablabla
# Set some other IPv6 proc settings
#echo "1" > /proc/sys/net/ipv6 blablabla
<<lessfirewall6.sh 122 lines
#!/bin/bash
# Basic IPv6 FireWall script by Dennis Kruyt (dennis@klingon.nl)
#
# Sun Jan 5 18:26:28 2003 - DK
#debug
#set -x
cd /opt/scripts/firewall
source ./config6
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11
# change to script directory
cd ${SCRIPTSDIR}
SCRIPT=${SCRIPTSDIR}/firewall6.sh
case "$1" in
flush)
echo -e "Starting Firewall:"
${IPTABLE6} -F >> /dev/null 2>&1
${IPTABLE6} -X >> /dev/null 2>&1
echo -e "Setting defaults op ACCEPT!"
echo -e "ALERT: no firewall rules active"
#
${IPTABLE6} -P INPUT ACCEPT
${IPTABLE6} -P OUTPUT ACCEPT
${IPTABLE6} -P FORWARD ACCEPT
;;
start|reload)
echo -n "Starting Firewall: "
# paging!
#
# create a backup
TIME=`date +%s`
tar -czf /opt/backups/firewall/firewall.${TIME}.tar.gz /opt/scripts/firewall
# sending mail
mail email@address.com -s "Firewall - (re)started" < $0
# wait
sleep 1
# kerneloptions
echo -n "Loading Kernel options.."
./kernel_options6.sh
echo -n "Flushing and deleting all chains.."
${IPTABLE6} -F >> /dev/null 2>&1
${IPTABLE6} -X >> /dev/null 2>&1
# default policy
echo -n "Setting default policy DROP.."
${IPTABLE6} -P INPUT DROP
${IPTABLE6} -P OUTPUT DROP
${IPTABLE6} -P FORWARD DROP
# ?????????????
#${IPTABLE} -F -t mangle
#${IPTABLE} -t mangle -X
echo -e "Loading chains.."
# create chain blacklist
${IPTABLE6} --new blacklist
#And drop the evil ones
for i in $BLACKLIST6;do
${IPTABLE6} -A blacklist --src $i -j DROP
done
#icmp chain
${IPTABLE6} --new icmprules
${IPTABLE6} -A icmprules -p icmpv6 -j ACCEPT
# create out chain
${IPTABLE6} --new out
#localhost to localhost
${IPTABLE6} -A out --src $LOCALHOST6 --dst $LOCALHOST6 -j ACCEPT
# for now accept all outgoing IPv6 traffic
${IPTABLE6} -A out --src $SIXXS --dst $ANY6 -j ACCEPT
# create in chain
${IPTABLE6} --new in
#localhost to localhost
${IPTABLE6} -A in --src $LOCALHOST6 --dst $LOCALHOST6 -j ACCEPT
# for now accept all incomming IPv6 traffic
${IPTABLE6} -A in --dst $SIXXS --src $ANY6 -j ACCEPT
#All that are in trusted may ssh
for i in $THRUSTED6;do
${IPTABLE6} -A in -p tcp --dst $SIXXS --dport 22 --src $i -j ACCEPT
done
# jump to all ipv6 chains
${IPTABLE6} -A INPUT -j blacklist
${IPTABLE6} -A OUTPUT -j blacklist
${IPTABLE6} -A FORWARD -j blacklist
${IPTABLE6} -A INPUT -j icmprules
${IPTABLE6} -A OUTPUT -j icmprules
${IPTABLE6} -A INPUT -j in
${IPTABLE6} -A OUTPUT -j out
;;
show)
echo -e "Rules in the firewall: ${CHAIN} n"
${IPTABLE6} -L -n
;;
*)
echo -e "Usage: ${SCRIPT} {flush|start|reload|show} n"
exit 1
;;
esac
exit 0
config6 12 lines
export IPTABLE6=/sbin/ip6tables
export SCRIPTSDIR=/opt/scripts/firewall
export EXT="eth0" # device
export SIXXS="3ffe:8114:1000::50f/127" # extern
export ANY6="::/0"
export LOCALHOST6="::1/128"
export THRUSTED6=""
export BLACKLIST6="3ffe:8114:2fff:1391::1"
kernel_options6.sh 7 lines
#!/bin/bash
# forwarding on
#echo "1" > /proc/sys/net/ipv6 blablabla
# Set some other IPv6 proc settings
#echo "1" > /proc/sys/net/ipv6 blablabla
Download (0.002MB)
Added: 2007-02-13 License: GPL (GNU General Public License) Price:
994 downloads
udpShell 2
udpShell is a remote shell that uses UDP instead of TCP. more>>
udpShell is a remote shell that uses UDP instead of TCP. It uses a client-server architecture (udpShell as the daemon and udpClient as the client).
Installation:
cd src
make
this sould make the work
if you like edit the Makefile to reflect your system, preferences.
<<lessInstallation:
cd src
make
this sould make the work
if you like edit the Makefile to reflect your system, preferences.
Download (0.007MB)
Added: 2006-06-22 License: Freeware Price:
1219 downloads
netstat-nat 1.4.7
Netstat-nat is a small program written in C. more>>
Netstat-nat is a small program written in C. It displays NAT connections, managed by netfilter/iptables which comes with the > 2.4.x linux kernels. The program reads its information from /proc/net/ip_conntrack, which is the temporary conntrack-storage of netfilter. (http://netfilter.samba.org/). Netstat-nat takes several arguments but they not needed.
-h displays help
-n dont resolve IPs/ports to host/portnames.
-p protocol display NAT connections with protocol selection.
-s source host display connections by source IP/hostname.
-d destination host display connections by destination IP/hostname.
-S display SNAT connections
-D display DNAT connections
-L display only connections to NAT box self (disables display of SNAT & DNAT)
-x extended view of hostnames
-r src | dst | src-port | dst-port | state sort connections
-o strip output-header
Enhancements:
- This release contains a fix for read-in (ip_conntrack).
- Previous versions could sometimes hang or segfault on some systems.
- There is a fix for displaying DNAT over SNAT connections.
<<less-h displays help
-n dont resolve IPs/ports to host/portnames.
-p protocol display NAT connections with protocol selection.
-s source host display connections by source IP/hostname.
-d destination host display connections by destination IP/hostname.
-S display SNAT connections
-D display DNAT connections
-L display only connections to NAT box self (disables display of SNAT & DNAT)
-x extended view of hostnames
-r src | dst | src-port | dst-port | state sort connections
-o strip output-header
Enhancements:
- This release contains a fix for read-in (ip_conntrack).
- Previous versions could sometimes hang or segfault on some systems.
- There is a fix for displaying DNAT over SNAT connections.
Download (0.071MB)
Added: 2006-08-19 License: GPL (GNU General Public License) Price:
1168 downloads
Fish Supper 0.1.5
Fish Supper is an arcade puzzler based on Frogger. more>>
Fish Supper is an arcade puzzler based on Frogger. Fish Supper is loosely based on the retro classic Frogger.
Guide a cat across a series of rivers, jumping from log to log to reach a tasty fish supper on the other side.
Before landing on a log, though, you need to make sure youve got a crystal the same colour (or two that together will make that colour), otherwise youre zapped back to the beginning.
Written in C++/SDL.
Installation:
You will need the SDL, SDL_image and SDL_mixer libraries and development files.
After unpacking the archive, go into the "src" directory:
cd FishSupper/src
Type: make
Move back up one level: cd ..
You should now have an executable called "fishsupper" that you can run with:
./fishsupper
<<lessGuide a cat across a series of rivers, jumping from log to log to reach a tasty fish supper on the other side.
Before landing on a log, though, you need to make sure youve got a crystal the same colour (or two that together will make that colour), otherwise youre zapped back to the beginning.
Written in C++/SDL.
Installation:
You will need the SDL, SDL_image and SDL_mixer libraries and development files.
After unpacking the archive, go into the "src" directory:
cd FishSupper/src
Type: make
Move back up one level: cd ..
You should now have an executable called "fishsupper" that you can run with:
./fishsupper
Download (1.2MB)
Added: 2007-03-31 License: GPL (GNU General Public License) Price:
938 downloads
Accountability Pal 0.1.1
Accountability Pal monitors your network and keeps track of who is using the Internet . more>>
Accountability Pal monitors your network and keeps track of who is using the Internet and what they are viewing, downloading, uploading, etc. It sends a email report of each users activity to the person/people you specify.
These days, more people are becoming addicted to viewing pornography on the Internet. Web sites offer free glimpses into enticing worlds of sexual immorality, and the anonymity that the Internet has to offer provides a way of indulging in those desires in the privacy of your own home without the worry of getting caught by their spouse or other loved ones. As a result, when the addiction is discovered by someone else, it often has such a devastating effect that families are destroyed as a result.
Thats where Accountability Pal comes in. Several of my friends have a passion for helping those with an addiction to porn, or they want to make sure their kids would not fall into that trap. Accountability Pal monitors your network and emails you, or others, reports of what everyone is viewing.
Enhancements:
- installer/accpal.nsi:
- Fixes to install all required dependencies on Windows.
- ChangeLog: Updated ChangeLog for version 0.1.1.
- configure.ac: Updated version to 0.1.1.
- installer/accpal.nsi:
- Updated installer to include all required files and to launch README.
- src/accpal.c: Added pause after ethernet interfaces are listed.
- README: Updated README to reflect Windows version.
- accpal.conf: Updated sample config file to reflect new options.
- src/accpal.h, src/apreport.c, src/common.c:
- added generation of Date header on emails.
<<lessThese days, more people are becoming addicted to viewing pornography on the Internet. Web sites offer free glimpses into enticing worlds of sexual immorality, and the anonymity that the Internet has to offer provides a way of indulging in those desires in the privacy of your own home without the worry of getting caught by their spouse or other loved ones. As a result, when the addiction is discovered by someone else, it often has such a devastating effect that families are destroyed as a result.
Thats where Accountability Pal comes in. Several of my friends have a passion for helping those with an addiction to porn, or they want to make sure their kids would not fall into that trap. Accountability Pal monitors your network and emails you, or others, reports of what everyone is viewing.
Enhancements:
- installer/accpal.nsi:
- Fixes to install all required dependencies on Windows.
- ChangeLog: Updated ChangeLog for version 0.1.1.
- configure.ac: Updated version to 0.1.1.
- installer/accpal.nsi:
- Updated installer to include all required files and to launch README.
- src/accpal.c: Added pause after ethernet interfaces are listed.
- README: Updated README to reflect Windows version.
- accpal.conf: Updated sample config file to reflect new options.
- src/accpal.h, src/apreport.c, src/common.c:
- added generation of Date header on emails.
Download (0.33MB)
Added: 2006-06-29 License: GPL (GNU General Public License) Price:
1222 downloads
jnetmaze 0.1
jnetmaze project is a clone of netmaze written in Java. more>>
jnetmaze project is a clone of netmaze written in Java.
Java 1.3 or greater is probably required for compiliation (esp. Server.java - which uses sun.misc.Signal)
Compile: (with gnu make)
# gmake
With alternate compiler:
# gmake JC=jikes
Compile: (with ant)
# ant
Compile: (using only javac)
# cd src
# CLASSPATH=applet:awt:client:common:server:text:swing
# javac */*.java
Run:
# cd bin
# java -server Server
or
# java TextClient
# java AwtClient
# java SwingClient
<<lessJava 1.3 or greater is probably required for compiliation (esp. Server.java - which uses sun.misc.Signal)
Compile: (with gnu make)
# gmake
With alternate compiler:
# gmake JC=jikes
Compile: (with ant)
# ant
Compile: (using only javac)
# cd src
# CLASSPATH=applet:awt:client:common:server:text:swing
# javac */*.java
Run:
# cd bin
# java -server Server
or
# java TextClient
# java AwtClient
# java SwingClient
Download (MB)
Added: 2006-12-04 License: GPL (GNU General Public License) Price:
1058 downloads
Luxilla 1.0b8
Luxilla is a tool for running XUL files. more>>
Luxilla is a "runtime" that turns Luxor XUL markup into live windows, dialogs, menus, toolbars and more without requiring a single-line of Java code.
Pass on the chrome folder holding your XUL markup to Luxilla and see the XUL markup come to life.
Example:
java luxilla c:/sandbox/luxilla/src/samples/chrome-calc
Running Luxilla
Before you can start Luxilla you need to download all required libraries and set up your classpath.
Get the luxor-libs package at http://sourceforge.net/projects/luxor-xul or use the libraries bundled with Ramses - the Luxor XUL example suite. (The libraries dont ship with Luxilla to keep the download size small.)
Once you got all libraries fix up your classpath. Heres the jar line-up required for Luxilla:
* luxor-1.0-b8.jar
* rachel-2.0-b2.jar
* salsa-1.0-b1.jar
* houston-1.0-b1.jar
* caramel-1.0-b1.jar
* apollo-1.0-b1.jar
* cypress-1.0-b1.jar
* jdom-1.0-b8.jar
* velocity-1.3-rc1.jar
* collections-2.0.jar
* saxpath-1.0.jar
* jaxen-1.0.jar
Now youre ready to roll. Use the class luxilla or luxor.runner.Tool for startup and pass on the the chrome folder holding your XUL files as the one and only command line argument.
Example:
java luxilla c:/sandbox/luxilla/src/samples/chrome-calc
java luxor.runner.Tool c:/sandbox/luxilla/src/samples/chrome-calc
<<lessPass on the chrome folder holding your XUL markup to Luxilla and see the XUL markup come to life.
Example:
java luxilla c:/sandbox/luxilla/src/samples/chrome-calc
Running Luxilla
Before you can start Luxilla you need to download all required libraries and set up your classpath.
Get the luxor-libs package at http://sourceforge.net/projects/luxor-xul or use the libraries bundled with Ramses - the Luxor XUL example suite. (The libraries dont ship with Luxilla to keep the download size small.)
Once you got all libraries fix up your classpath. Heres the jar line-up required for Luxilla:
* luxor-1.0-b8.jar
* rachel-2.0-b2.jar
* salsa-1.0-b1.jar
* houston-1.0-b1.jar
* caramel-1.0-b1.jar
* apollo-1.0-b1.jar
* cypress-1.0-b1.jar
* jdom-1.0-b8.jar
* velocity-1.3-rc1.jar
* collections-2.0.jar
* saxpath-1.0.jar
* jaxen-1.0.jar
Now youre ready to roll. Use the class luxilla or luxor.runner.Tool for startup and pass on the the chrome folder holding your XUL files as the one and only command line argument.
Example:
java luxilla c:/sandbox/luxilla/src/samples/chrome-calc
java luxor.runner.Tool c:/sandbox/luxilla/src/samples/chrome-calc
Download (0.10MB)
Added: 2005-05-05 License: GPL (GNU General Public License) Price:
1636 downloads
tclDBRCS 0.2a
tclDBRCS is a database-oriented revision control system which features full project/tag/branch support. more>>
tclDBRCS is a database-oriented revision control system which features full project/tag/branch support. The application supports encryption of file content, CVS import, infinite branching of branches, entire diff or merge of project, RC of binary files, empty directory storage, removal without losing history, and more. No specialized server is needed outside of PostgreSQL, and all operations are executed on the client machine.
Install required packages:
1.1) Install PostgreSQL
1.2) Install GNU diffutils
1.3) Install XDELTA3
1.4) Install CVS (TortoiseCVS for example)
Install tcldbrcs:
2.1) untar the package tcldbrcs- .tar.gz
2.2) Edit bin/dbrcs.bat, bin/initdb.bat bin/tkdbrcs.bat to match your installation path
2.3) Edit etc/configuration_options.src.tcl, etc/access_keys.src.tcl
Start a shell and add /bin in your path
Enhancements:
- This release adds support for SQLite.
- There are some bugfixes.
<<lessInstall required packages:
1.1) Install PostgreSQL
1.2) Install GNU diffutils
1.3) Install XDELTA3
1.4) Install CVS (TortoiseCVS for example)
Install tcldbrcs:
2.1) untar the package tcldbrcs- .tar.gz
2.2) Edit bin/dbrcs.bat, bin/initdb.bat bin/tkdbrcs.bat to match your installation path
2.3) Edit etc/configuration_options.src.tcl, etc/access_keys.src.tcl
Start a shell and add /bin in your path
Enhancements:
- This release adds support for SQLite.
- There are some bugfixes.
Download (0.11MB)
Added: 2007-08-17 License: GPL (GNU General Public License) Price:
801 downloads
SWT 3.2
SWT is an open source widget toolkit for Java. more>>
SWT is an open source widget toolkit for Java designed to provide efficient, portable access to the user-interface facilities of the operating systems on which it is implemented.
Full-blown examples that can be downloaded from the eclipse download page. The examples in package org.eclipse.swt.examples run standalone, and the examples in org.eclipse.swt.examples.* packages are eclipse plug-ins.
To get the examples, first go and watch to the eclipse download page:
http://download.eclipse.org/downloads/index.php
Then click on the eclipse build that you would like examples for (i.e. the eclipse build that you are running; typically the latest Stable Build).
Then scroll down until you see "Example Plug-ins". Read the paragraph on installing them, and select the download for your platform.
After installing the examples, the source for them will be in a src.zip file in the appropriate subdirectory of: eclipse/plugins/org.eclipse.sdk.examples.source_ /src/
For example, the 3.1 source for the standalone examples in org.eclipse.swt.examples is in: org.eclipse.sdk.examples.source_3.1.0/src/org.eclipse.swt.examples_3.1.0/swtexamplessrc.zip.
To run the plug-in SWT examples, restart eclipse, go to Window > Show View... > Other... and expand "SWT Examples".
<<lessFull-blown examples that can be downloaded from the eclipse download page. The examples in package org.eclipse.swt.examples run standalone, and the examples in org.eclipse.swt.examples.* packages are eclipse plug-ins.
To get the examples, first go and watch to the eclipse download page:
http://download.eclipse.org/downloads/index.php
Then click on the eclipse build that you would like examples for (i.e. the eclipse build that you are running; typically the latest Stable Build).
Then scroll down until you see "Example Plug-ins". Read the paragraph on installing them, and select the download for your platform.
After installing the examples, the source for them will be in a src.zip file in the appropriate subdirectory of: eclipse/plugins/org.eclipse.sdk.examples.source_ /src/
For example, the 3.1 source for the standalone examples in org.eclipse.swt.examples is in: org.eclipse.sdk.examples.source_3.1.0/src/org.eclipse.swt.examples_3.1.0/swtexamplessrc.zip.
To run the plug-in SWT examples, restart eclipse, go to Window > Show View... > Other... and expand "SWT Examples".
Download (2.8MB)
Added: 2006-07-15 License: GPL (GNU General Public License) Price:
710 downloads
Convert::Cyrillic 1.05
Convert::Cyrillic is a Perl module with routines for converting from one cyrillic charset to another. more>>
Convert::Cyrillic is a Perl module with routines for converting from one cyrillic charset to another.
SYNOPSIS
use Convert::Cyrillic;
$src = koi8;
$dst = win;
$SrcBuf = text in koi8 here;
$DstBuf = Convert::Cyrillic::cstocs ($Src, $Dst, $SrcBuf);
This package implements routine for converting from one cyrillic charset to another. It is intended to be used from cgis which need built-in support for translations. For example, you may wish to use it in form processor to translate from user encoding to one used by your site.
Where $Src and $Dst are one of:
KOI8 - for KOI8-R
WIN - for WIN-1251
DOS - for DOS, alternative, CP-866
MAC - for Macintosh
ISO - for ISO-8859-5
UTF-8 - for UTF-8 (Unicode)
VOL - for Volapuk (transliteration)
Buffer may contain line breaks, which are preserved.
<<lessSYNOPSIS
use Convert::Cyrillic;
$src = koi8;
$dst = win;
$SrcBuf = text in koi8 here;
$DstBuf = Convert::Cyrillic::cstocs ($Src, $Dst, $SrcBuf);
This package implements routine for converting from one cyrillic charset to another. It is intended to be used from cgis which need built-in support for translations. For example, you may wish to use it in form processor to translate from user encoding to one used by your site.
Where $Src and $Dst are one of:
KOI8 - for KOI8-R
WIN - for WIN-1251
DOS - for DOS, alternative, CP-866
MAC - for Macintosh
ISO - for ISO-8859-5
UTF-8 - for UTF-8 (Unicode)
VOL - for Volapuk (transliteration)
Buffer may contain line breaks, which are preserved.
Download (0.024MB)
Added: 2006-08-23 License: Perl Artistic License Price:
1166 downloads
load-plugins 0.5
load-plugins provides kicker cpuload and memory load plugins. more>>
load-plugins provides kicker cpuload and memory load plugins.
To install:
$ ./configure
$ make
$ copy inst/*.desktop $KDEDIR/share/apps/kicker/applets
$ copy src/*.la $KDEDIR/lib/kde3
$ copy src/.lib/*.so $KDEDIR/lib/kde3
$ copy inst/*rc $KDEHOME/share/config
Enhancements:
- fixed bug with applet background color
- support added for kicker with tiled background image
<<lessTo install:
$ ./configure
$ make
$ copy inst/*.desktop $KDEDIR/share/apps/kicker/applets
$ copy src/*.la $KDEDIR/lib/kde3
$ copy src/.lib/*.so $KDEDIR/lib/kde3
$ copy inst/*rc $KDEHOME/share/config
Enhancements:
- fixed bug with applet background color
- support added for kicker with tiled background image
Download (1.7MB)
Added: 2007-02-27 License: GPL (GNU General Public License) Price:
971 downloads
Tin 1.8.2
Tin is a full-screen easy to use Netnews reader. more>>
Tin project is a full-screen easy to use Netnews reader.
It can read news locally (i.e., /var/spool/news) or remotely (rtin or tin -r option) via a NNTP (Network News Transport Protocol) server.
It will automatically utilize NOV (News OVerview) style index files if available locally or via the NNTP XOVER command.
Quick Install:
configure to your local setup (have a look at):
./configure --help (or ./conf-tin)
check your local setup in:
include/autoconf.h
compile with:
make build (or cd src; make)
install with:
make install
Install at your own risk.
Enhancements:
- A few possible buffer overflows were fixed.
<<lessIt can read news locally (i.e., /var/spool/news) or remotely (rtin or tin -r option) via a NNTP (Network News Transport Protocol) server.
It will automatically utilize NOV (News OVerview) style index files if available locally or via the NNTP XOVER command.
Quick Install:
configure to your local setup (have a look at):
./configure --help (or ./conf-tin)
check your local setup in:
include/autoconf.h
compile with:
make build (or cd src; make)
install with:
make install
Install at your own risk.
Enhancements:
- A few possible buffer overflows were fixed.
Download (1.8MB)
Added: 2006-04-26 License: GPL (GNU General Public License) Price:
1282 downloads
webImageTool 0.1
webImageTool is a service menu that extracts height and width from an image and builds the html tag from it. more>>
webImageTool is a service menu that extracts height and width from an image and builds the html tag from it.
This is usefull for webdesigners.
Example:
Copy Image dimension => height="768" width="1024"
Copy HTML-TAG => img src="PATH TO FILENAME/FILENAME" border="0" alt="FILENAME">
<<lessThis is usefull for webdesigners.
Example:
Copy Image dimension => height="768" width="1024"
Copy HTML-TAG => img src="PATH TO FILENAME/FILENAME" border="0" alt="FILENAME">
Download (0.002MB)
Added: 2006-08-09 License: GPL (GNU General Public License) Price:
1171 downloads
Mindy 1.0
Mindy is a minimal molecular dynamics program. more>>
Mindy is a very simple, serial molecular dynamics program derived from NAMD source code. It currently uses xplor parameter and structure files. The program is written in very straightforward C++.
Installation
Unpack the distribution. A directory named "mindy" will be created. In the mindy directory are two subdirectories, "src" and "test". The "src" directory contains the source code and a Makefile to build mindy.
Typing "make" within the src directory shoud build mindy using g++. If you would like to build mindy using a different compiler or different compiler flags, use one of the build targets in the Makefile or add a new one.
The executable is named mindy_$ARCH, where ARCH is the platform. by default, this is "g++".
Using
The command line syntax for mindy is:
mindy nsteps pdbfile psffile paramfile
Nsteps specifies how many timesteps to take. pdbfile and psffile are the coordinate and structure files, respectively, of the system you want to simulate. paramfile is the name of your parameter file. Both the psf file and the parameter must be in X-Plor format.
The test directory contains two sets of files which can be used as inputs for mindy. "alanin" is a 66 atom polypeptide, and "brH" is a crystal structure of bacteriorhodopsin containing 3762 atoms. Run alanin by typing
mindy 1000 alanin.pdb alanin.psf alanin.params
at the command line.
<<lessInstallation
Unpack the distribution. A directory named "mindy" will be created. In the mindy directory are two subdirectories, "src" and "test". The "src" directory contains the source code and a Makefile to build mindy.
Typing "make" within the src directory shoud build mindy using g++. If you would like to build mindy using a different compiler or different compiler flags, use one of the build targets in the Makefile or add a new one.
The executable is named mindy_$ARCH, where ARCH is the platform. by default, this is "g++".
Using
The command line syntax for mindy is:
mindy nsteps pdbfile psffile paramfile
Nsteps specifies how many timesteps to take. pdbfile and psffile are the coordinate and structure files, respectively, of the system you want to simulate. paramfile is the name of your parameter file. Both the psf file and the parameter must be in X-Plor format.
The test directory contains two sets of files which can be used as inputs for mindy. "alanin" is a 66 atom polypeptide, and "brH" is a crystal structure of bacteriorhodopsin containing 3762 atoms. Run alanin by typing
mindy 1000 alanin.pdb alanin.psf alanin.params
at the command line.
Download (0.23MB)
Added: 2005-04-01 License: Free To Use But Restricted Price:
1666 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above qinstall src search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed