to run in spanish
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5106
Python in Scheme 0.1
Python in Scheme is a scheme library that allows you to run Python code within Scheme. more>>
Python in Scheme is a scheme library that allows you to run Python code within Scheme.
Python in Scheme project uses the Python/C API to embed a Python interpreter.
<<lessPython in Scheme project uses the Python/C API to embed a Python interpreter.
Download (0.002MB)
Added: 2007-01-18 License: GPL (GNU General Public License) Price:
1013 downloads
SpanishTrans 1.1
SpanishTrans provides a a very simple, complete, fast and clean dictionary, which allows you to translate English to Spanish. more>>
SpanishTrans provides a a very simple, complete, fast and clean dictionary, which allows you to translate English to Spanish.
This is a very simple, complete, fast and clean dictionary, which allows you to highlight an English word in the page that youre reading and get immediately the Spanish translation.
No matter if the selected word is a plural, conjugated verb, etc., the translator realizes about the right word showing you its meaning.
<<lessThis is a very simple, complete, fast and clean dictionary, which allows you to highlight an English word in the page that youre reading and get immediately the Spanish translation.
No matter if the selected word is a plural, conjugated verb, etc., the translator realizes about the right word showing you its meaning.
Download (0.003MB)
Added: 2007-04-04 License: MPL (Mozilla Public License) Price:
939 downloads
run in xterm 0.9.1
run in xterm is an servcie menu which adds run in xterm & run in xterm as root to action menu on binary files, scripts etc. more>>
run in xterm is an servcie menu which adds "run in xterm" & "run in xterm as root" to action menu on binary files, scripts etc.
It has 2 languages: english and polish.
Installation:
copy/save this file in
~/.kde/share/apps/konqueror/servicemenus
<<lessIt has 2 languages: english and polish.
Installation:
copy/save this file in
~/.kde/share/apps/konqueror/servicemenus
Download (MB)
Added: 2006-06-12 License: GPL (GNU General Public License) Price:
1230 downloads
Run a web server inside LAN
Run a web server inside LAN is a simple script to run a WWW server inside a Local Area Network. more>>
Run a web server inside LAN is a simple script to run a WWW server inside a Local Area Network. Run a web server inside LAN script assume all iptables features are compiled statically in the kernel, or all modules are loaded.
Otherwise you may encounter some surprises trying to utilize the more featureful and creative commandlines that Ive come up with.
Sample:
#external and internal interfaces
EXT=eth0
INT=eth1
# clear everything, and create my cascading chains
iptables -F
iptables -N e0
iptables -N tcpin
iptables -N udpin
# e0 is the name of our chain for eth0
iptables -I INPUT -i $EXT -j e0
# OUTPUT Chain
iptables -A OUTPUT -o $EXT -j DROP -p icmp --icmp-type ! echo-request
# remote gnutella queries were really pissing me off one day
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --dport 6346
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --sport 6346
# $EXT Chain
# a single rule to accept SYN Packets for multiple ports (up to 15)
iptables -A tcpin -j ACCEPT -p tcp --syn -m multiport --destination-ports 873,993,995,143,80,113,21,22,23,25,53
# stateful connection tracking is wonderful stuff
# ESTABLISHED tcp connections are let through
# If we send a SYN out, the ACK is seen as RELATED
# then further communication is accepted by the ESTABLISHED rule
iptables -A e0 -j ACCEPT -m state --state ESTABLISHED
iptables -A e0 -j ACCEPT -m state --state RELATED
# certain ports I simply DROP
iptables -A tcpin -j DROP -p tcp --syn -m multiport --destination-ports 6346,139
# UDP rules...
iptables -A udpin -j DROP -p udp -m multiport --destination-ports 137,27960
# I run a DNS server, so we must accept UDP packets on port 53
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 53
# lets log NEW udp packets on ports 1024:65535, then let them through
iptables -A udpin -j LOG -p udp -m state --state NEW --destination-port 1024:65535 --log-level debug --log-prefix UDPNEW --log-ip-options
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 1024:65535
# lets log NEW tcp packets on ports 1024:65535, then let them through
iptables -A tcpin -j LOG -p tcp --syn --destination-port 1024:65535 --log-level debug --log-prefix TCPNEW --log-tcp-options --log-ip-options
iptables -A tcpin -j ACCEPT -p tcp --syn --destination-port 1024:65535
# lets log INVALID or NEW tcp packets on priveleged ports, then DROP
# (remember I have certain ACCEPT rules higher up the chain)
iptables -A tcpin -j LOG -p tcp -m state --state INVALID,NEW --destination-port 1:1023 --log-level warn --log-prefix TCPPRIV --log-tcp-options --log-ip-options
iptables -A tcpin -j DROP -p tcp -m state --state INVALID,NEW --destination-port 1:1023
iptables -A e0 -p tcp -j tcpin
iptables -A e0 -p udp -j udpin
iptables -A e0 -j LOG --log-level debug --log-prefix NETFILTER --log-ip-options -m state --state INVALID,NEW
iptables -A e0 -j DROP
# NAT Rules
# I run a web server inside...
iptables -t nat -A PREROUTING -p tcp -i eth0 --dport 80 -j DNAT --to-destination 192.168.1.4:80
<<lessOtherwise you may encounter some surprises trying to utilize the more featureful and creative commandlines that Ive come up with.
Sample:
#external and internal interfaces
EXT=eth0
INT=eth1
# clear everything, and create my cascading chains
iptables -F
iptables -N e0
iptables -N tcpin
iptables -N udpin
# e0 is the name of our chain for eth0
iptables -I INPUT -i $EXT -j e0
# OUTPUT Chain
iptables -A OUTPUT -o $EXT -j DROP -p icmp --icmp-type ! echo-request
# remote gnutella queries were really pissing me off one day
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --dport 6346
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --sport 6346
# $EXT Chain
# a single rule to accept SYN Packets for multiple ports (up to 15)
iptables -A tcpin -j ACCEPT -p tcp --syn -m multiport --destination-ports 873,993,995,143,80,113,21,22,23,25,53
# stateful connection tracking is wonderful stuff
# ESTABLISHED tcp connections are let through
# If we send a SYN out, the ACK is seen as RELATED
# then further communication is accepted by the ESTABLISHED rule
iptables -A e0 -j ACCEPT -m state --state ESTABLISHED
iptables -A e0 -j ACCEPT -m state --state RELATED
# certain ports I simply DROP
iptables -A tcpin -j DROP -p tcp --syn -m multiport --destination-ports 6346,139
# UDP rules...
iptables -A udpin -j DROP -p udp -m multiport --destination-ports 137,27960
# I run a DNS server, so we must accept UDP packets on port 53
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 53
# lets log NEW udp packets on ports 1024:65535, then let them through
iptables -A udpin -j LOG -p udp -m state --state NEW --destination-port 1024:65535 --log-level debug --log-prefix UDPNEW --log-ip-options
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 1024:65535
# lets log NEW tcp packets on ports 1024:65535, then let them through
iptables -A tcpin -j LOG -p tcp --syn --destination-port 1024:65535 --log-level debug --log-prefix TCPNEW --log-tcp-options --log-ip-options
iptables -A tcpin -j ACCEPT -p tcp --syn --destination-port 1024:65535
# lets log INVALID or NEW tcp packets on priveleged ports, then DROP
# (remember I have certain ACCEPT rules higher up the chain)
iptables -A tcpin -j LOG -p tcp -m state --state INVALID,NEW --destination-port 1:1023 --log-level warn --log-prefix TCPPRIV --log-tcp-options --log-ip-options
iptables -A tcpin -j DROP -p tcp -m state --state INVALID,NEW --destination-port 1:1023
iptables -A e0 -p tcp -j tcpin
iptables -A e0 -p udp -j udpin
iptables -A e0 -j LOG --log-level debug --log-prefix NETFILTER --log-ip-options -m state --state INVALID,NEW
iptables -A e0 -j DROP
# NAT Rules
# I run a web server inside...
iptables -t nat -A PREROUTING -p tcp -i eth0 --dport 80 -j DNAT --to-destination 192.168.1.4:80
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
985 downloads
run 0.1
run adds a service menu for all file types. more>>
run adds a service menu for all file types. This service menu will just call the file in the command line using the active folder as work folder.
Makes running some scripts and applications much easier (Some require work folder to be the same where they are located so double-clicking does not work).
Maybe a good fix would be to make it available only for files that have the executable permission
<<lessMakes running some scripts and applications much easier (Some require work folder to be the same where they are located so double-clicking does not work).
Maybe a good fix would be to make it available only for files that have the executable permission
Download (MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1215 downloads
Robo Hunt 0.1
Robo Hunt is an action game where you have to run for life and plutonium. more>>
Robo Hunt is an action game where you have to run for life and plutonium.
Take all plutonium and dont be caught. The robot hunters are smart and they do not cheat.
<<lessTake all plutonium and dont be caught. The robot hunters are smart and they do not cheat.
Download (0.12MB)
Added: 2005-11-23 License: GPL (GNU General Public License) Price:
1432 downloads
Bio::Tools::Run::PiseWorkflow 1.4
Bio::Tools::Run::PiseWorkflow is a class to create a Pise workflow using Pise application objects as methods. more>>
Bio::Tools::Run::PiseWorkflow is a class to create a Pise workflow using Pise application objects as methods. A workflow is defined by a set of methods which all instanciate the class PiseApplication.
SYNOPSIS
# First, create a Bio::Tools::Run::AnalysisFactory::Pise object:
my $factory = new Bio::Tools::Run::AnalysisFactory::Pise();
# Then create the application objects (Pise::Run::Tools::PiseApplication):
my $clustalw = $factory->program(clustalw);
$clustalw->infile($my_alignment_file);
my $protpars = $factory->program(protpars);
# You can specify different servers for different applications :
my $protdist = $factory->program(protpars
-remote => http://kun.homelinux.com/cgi-bin/Pise/5.a//protpars.pl,
-email => your_email);
# Create a new workflow object :
my $workflow = Bio::Tools::Run::PiseWorkflow->new();
# Define the workflows methods using the application objects:
# the application method $protpars will receive the output of
# type readseq_ok_alig from the application method $clustalw.
$workflow->addpipe(-method => $clustalw,
-tomethod => $protpars,
-pipetype => readseq_ok_alig);
# The application method $clustalw will be piped to a second
# application method ($protdist) using the output of type readseq_ok_alig.
$workflow->addpipe(-method => $clustalw,
-tomethod => $protdist,
-pipetype => readseq_ok_alig);
# The application method $protpars will be piped to the application
# method $consense using the output of type phylip_tree.
my $consense = $factory->program(consense);
$workflow->addpipe(-method => $protpars,
-tomethod => $consense,
-pipetype => phylip_tree);
# Run the workflow.
$workflow->run();
<<lessSYNOPSIS
# First, create a Bio::Tools::Run::AnalysisFactory::Pise object:
my $factory = new Bio::Tools::Run::AnalysisFactory::Pise();
# Then create the application objects (Pise::Run::Tools::PiseApplication):
my $clustalw = $factory->program(clustalw);
$clustalw->infile($my_alignment_file);
my $protpars = $factory->program(protpars);
# You can specify different servers for different applications :
my $protdist = $factory->program(protpars
-remote => http://kun.homelinux.com/cgi-bin/Pise/5.a//protpars.pl,
-email => your_email);
# Create a new workflow object :
my $workflow = Bio::Tools::Run::PiseWorkflow->new();
# Define the workflows methods using the application objects:
# the application method $protpars will receive the output of
# type readseq_ok_alig from the application method $clustalw.
$workflow->addpipe(-method => $clustalw,
-tomethod => $protpars,
-pipetype => readseq_ok_alig);
# The application method $clustalw will be piped to a second
# application method ($protdist) using the output of type readseq_ok_alig.
$workflow->addpipe(-method => $clustalw,
-tomethod => $protdist,
-pipetype => readseq_ok_alig);
# The application method $protpars will be piped to the application
# method $consense using the output of type phylip_tree.
my $consense = $factory->program(consense);
$workflow->addpipe(-method => $protpars,
-tomethod => $consense,
-pipetype => phylip_tree);
# Run the workflow.
$workflow->run();
Download (0.81MB)
Added: 2007-02-22 License: Perl Artistic License Price:
974 downloads
Test-Run 0.0110
Test-Run is an improved test harness for scripts that emit TAP (Test Anything Protocol). more>>
Test-Run is an improved test harness for scripts that emit TAP (Test Anything Protocol). It was forked from Test::Harness, and it uses TAP::Parser.
The project is used to analyze the output of the scripts and present it to the user in a summarized form. Test-Run features separation of the test-running backend and the command line frontend, a "runprove" utility for running tests from the command line, a plugin-system, and colors for the summary line.
<<lessThe project is used to analyze the output of the scripts and present it to the user in a summarized form. Test-Run features separation of the test-running backend and the command line frontend, a "runprove" utility for running tests from the command line, a plugin-system, and colors for the summary line.
Download (0.067MB)
Added: 2007-06-12 License: MIT/X Consortium License Price:
865 downloads
tr_panel 0.1.b2
tr_panel is a a very minimal xlib panel for unix/linux based operating systems. more>>
tr_panel is a a very minimal xlib panel for unix/linux based operating systems.
Its used to launch applications.
to compile run:
# make
to run:
# ./tr_panel
to configure the bahaiviour of the panel edit tr_panel.conf
<<lessIts used to launch applications.
to compile run:
# make
to run:
# ./tr_panel
to configure the bahaiviour of the panel edit tr_panel.conf
Download (0.014MB)
Added: 2006-09-29 License: GPL (GNU General Public License) Price:
1121 downloads
Linux in a window of Windows 4.0-r0
Linux in a window of Windows. Run the Debian Linux appliance in the free VMware Player side by side with Windows. This is a full desktop Gnome install... more>> <<less
Download (455993KB)
Added: 2009-04-13 License: Freeware Price: Free
196 downloads
jTans 1.0
jTans project is a Java Tangram puzzle game. more>>
jTans project is a Java Tangram puzzle game.
jTans is a Java version of Tangram, an ancient Chinese puzzle. The object is to put 7 geometric shapes together to form a given outline. All of the pieces must be used and are laid next to one another. It can be run as a Java 2 applet, a standalone application, or a Web Start application.
Main features:
- Java2 application wich may be used as an applet, a standalone application or a Java Web Start application. (there is also a C/GTK version for Linux and Unix called gTans)
- 290 figures.
- Hint and solution.
- Most of the game colors and textures are configurable.
- Internationnalized (actually english, spanish an partially french)
- Resizeable window.
- The size of the pieces (relative to the game area) may be changed.
- The solved figures are remembered.
<<lessjTans is a Java version of Tangram, an ancient Chinese puzzle. The object is to put 7 geometric shapes together to form a given outline. All of the pieces must be used and are laid next to one another. It can be run as a Java 2 applet, a standalone application, or a Web Start application.
Main features:
- Java2 application wich may be used as an applet, a standalone application or a Java Web Start application. (there is also a C/GTK version for Linux and Unix called gTans)
- 290 figures.
- Hint and solution.
- Most of the game colors and textures are configurable.
- Internationnalized (actually english, spanish an partially french)
- Resizeable window.
- The size of the pieces (relative to the game area) may be changed.
- The solved figures are remembered.
Download (0.14MB)
Added: 2006-12-27 License: GPL (GNU General Public License) Price:
1031 downloads
Bio::Tools::Run::TribeMCL 1.4
Bio::Tools::Run::TribeMCL is a method for clustering proteins into related groups, which are termed protein families. more>>
Bio::Tools::Run::TribeMCL is a method for clustering proteins into related groups, which are termed protein families.
SYNOPSIS
use Bio::Tools::Run::TribeMCL;
use Bio::SearchIO;
# 3 methods to input the blast results
# straight forward raw blast output (NCBI or WU-BLAST)
my @params = (inputtype=>blastfile);
# OR
# markov program format
# protein_id1 protein_id2 evalue_magnitude evalue_factor
# for example:
# proteins ENSP00000257547 and ENSP00000261659
# with a blast score evalue of 1e-50
# and proteins O42187 and ENSP00000257547
# with a blast score evalue of 1e-119
# entry would be
my @array = [[qw(ENSP00000257547 ENSP00000261659 1 50)],
[qw(O42187 ENSP00000257547 1 119)]];
my @params = (pairs=>@array,I=>2.0);
# OR
# pass in a searchio object
# slowest of the 3 methods as it does more rigourous parsing
# than required for us here
my $sio = Bio::SearchIO->new(-format=>blast,
-file=>blast.out);
my @params=(inputtype=>searchio,I=>2.0);
# you can specify the path to the executable manually in the following way
my @params=(inputtype=>blastfile,I=>2.0,
mcl=>/home/shawn/software/mcl-02-150/src/shmcl/mcl,
matrix=>/home/shawn/software/mcl-02-150/src/contrib/tribe/tribe-matrix);
my $fact = Bio::Tools::Run::TribeMCL->new(@params);
# OR
$fact->matrix_executable(/home/shawn/software/mcl-02-150/src/contrib/tribe/tribe-matrix);
$fact->mcl_executable(/home/shawn/software/mcl-02-150/src/shmcl/mcl);
# to run
my $fact = Bio::Tools::Run::TribeMCL->new(@params);
# Run the program
# returns an array reference to clusters where members are the ids
# for example :2 clusters with 3 members per cluster:
# $fam = [ [mem1 mem2 mem3],[mem1 mem2 mem3]]
# pass in either the blastfile path/searchio obj/the array ref to scores
my $fam = $fact->run($sio);
# print out your clusters
for (my $i = 0; $i
print "Cluster $i t ".scalar(@{$fam->[$i]})." membersn";
foreach my $member (@{$fam->[$i]}){
print "t$membern";
}
}
This clustering is achieved by analysing similarity patterns between proteins in a given dataset, and using these patterns to assign proteins into related groups. In many cases, proteins in the same protein family will have similar functional properties.
Enhancements:
- Perl
<<lessSYNOPSIS
use Bio::Tools::Run::TribeMCL;
use Bio::SearchIO;
# 3 methods to input the blast results
# straight forward raw blast output (NCBI or WU-BLAST)
my @params = (inputtype=>blastfile);
# OR
# markov program format
# protein_id1 protein_id2 evalue_magnitude evalue_factor
# for example:
# proteins ENSP00000257547 and ENSP00000261659
# with a blast score evalue of 1e-50
# and proteins O42187 and ENSP00000257547
# with a blast score evalue of 1e-119
# entry would be
my @array = [[qw(ENSP00000257547 ENSP00000261659 1 50)],
[qw(O42187 ENSP00000257547 1 119)]];
my @params = (pairs=>@array,I=>2.0);
# OR
# pass in a searchio object
# slowest of the 3 methods as it does more rigourous parsing
# than required for us here
my $sio = Bio::SearchIO->new(-format=>blast,
-file=>blast.out);
my @params=(inputtype=>searchio,I=>2.0);
# you can specify the path to the executable manually in the following way
my @params=(inputtype=>blastfile,I=>2.0,
mcl=>/home/shawn/software/mcl-02-150/src/shmcl/mcl,
matrix=>/home/shawn/software/mcl-02-150/src/contrib/tribe/tribe-matrix);
my $fact = Bio::Tools::Run::TribeMCL->new(@params);
# OR
$fact->matrix_executable(/home/shawn/software/mcl-02-150/src/contrib/tribe/tribe-matrix);
$fact->mcl_executable(/home/shawn/software/mcl-02-150/src/shmcl/mcl);
# to run
my $fact = Bio::Tools::Run::TribeMCL->new(@params);
# Run the program
# returns an array reference to clusters where members are the ids
# for example :2 clusters with 3 members per cluster:
# $fam = [ [mem1 mem2 mem3],[mem1 mem2 mem3]]
# pass in either the blastfile path/searchio obj/the array ref to scores
my $fam = $fact->run($sio);
# print out your clusters
for (my $i = 0; $i
print "Cluster $i t ".scalar(@{$fam->[$i]})." membersn";
foreach my $member (@{$fam->[$i]}){
print "t$membern";
}
}
This clustering is achieved by analysing similarity patterns between proteins in a given dataset, and using these patterns to assign proteins into related groups. In many cases, proteins in the same protein family will have similar functional properties.
Enhancements:
- Perl
Download (0.81MB)
Added: 2007-02-22 License: Perl Artistic License Price:
975 downloads
QTruco 1.1
QTruco is an implementation of games played with Spanish cards. more>>
QTruco is an implementation of games played with Spanish cards. It currently supports "Truco" and "Casita Robada" games, player vs. computer AI, and player vs. remote player modes, with multiple AIs available for each game. It includes game rules in English and Spanish.
Main features:
- "Truco" and "Casita Robada" games supported.
- Player vs. Computer AI mode supported.
- Player vs. Remote Player mode supported.
- Multiple Computer AIs for each game.
- Fully GPL compliant: cards have been drawn from scratch, QT3 open source edition used for code.
- English and spanish languages available.
<<lessMain features:
- "Truco" and "Casita Robada" games supported.
- Player vs. Computer AI mode supported.
- Player vs. Remote Player mode supported.
- Multiple Computer AIs for each game.
- Fully GPL compliant: cards have been drawn from scratch, QT3 open source edition used for code.
- English and spanish languages available.
Download (0.22MB)
Added: 2005-09-13 License: GPL (GNU General Public License) Price:
1502 downloads
Bio::Tools::Run::PiseApplication::charge 1.4
Bio::Tools::Run::PiseApplication::charge is a Perl module. more>>
Bio::Tools::Run::PiseApplication::charge is a Perl module.
Bio::Tools::Run::PiseApplication::charge
Bioperl class for:
CHARGE Protein charge plot (EMBOSS)
Parameters:
(see also:
http://bioweb.pasteur.fr/seqanal/interfaces/charge.html
for available values):
charge (String)
init (String)
seqall (Sequence)
seqall -- protein [sequences] (-seqall)
pipe: seqsfile
window (Integer)
Window (-window)
aadata (String)
Amino acid property data file name (-aadata)
plot (Switch)
Produce graphic (-plot)
graph (Excl)
graph (-graph)
outfile (OutFile)
outfile (-outfile)
auto (String)
psouput (String)
<<lessBio::Tools::Run::PiseApplication::charge
Bioperl class for:
CHARGE Protein charge plot (EMBOSS)
Parameters:
(see also:
http://bioweb.pasteur.fr/seqanal/interfaces/charge.html
for available values):
charge (String)
init (String)
seqall (Sequence)
seqall -- protein [sequences] (-seqall)
pipe: seqsfile
window (Integer)
Window (-window)
aadata (String)
Amino acid property data file name (-aadata)
plot (Switch)
Produce graphic (-plot)
graph (Excl)
graph (-graph)
outfile (OutFile)
outfile (-outfile)
auto (String)
psouput (String)
Download (0.81MB)
Added: 2006-08-24 License: Perl Artistic License Price:
1156 downloads
Conectiva 10
Conectiva Linux is a Linux distribution from Brazil. more>>
Conectiva Linux is a Linux distribution from Brazil. The distribution includes support for English, Spanish, and Portuguese.
It uses apt-get as the mechanism for updating and installing packages, with RPM as the package format.
<<lessIt uses apt-get as the mechanism for updating and installing packages, with RPM as the package format.
Download (644MB)
Added: 2005-04-06 License: GPL (GNU General Public License) Price:
1676 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 to run in spanish 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