come and go
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3066
GO!Script 3.0
GO!Script is an IDE for writing scripts such as batch files,java scripts,php,ini files,installers.What makes it special is the fact that it makes codi... more>> <<less
Download (650KB)
Added: 2009-04-28 License: Freeware Price: Free
183 downloads

Internet DJ Console 0.5.1
The Linux DJ software more>> Internet DJ Console is a program that I started writing in March of 2005 after discovering the lack of DJ software on Linux that suited me. The programs that I did find were either feature poor, full of bugs, suited more towards the live side of things, or sadly did not even compile. It dawned on me that something needed to be done and that having some coding skills of my own that I may as well have a go myself. The basics of the different components in the project and how they would fit together came to me almost in a flash, and after pondering the sketch I drew, a few days later I started coding. The result is Internet DJ Console.<<less
Download (639KB)
Added: 2009-04-11 License: Freeware Price: Free
198 downloads
VaultletSuite 2 Go for Linux 2.6.3
"VaultletSuite 2 Go is the first industrial strength privacy protecting software more>> , VaultletSuite 2 Go is the first industrial strength privacy protecting software thats a snap to use, installs on your computer or goes anywhere with you on your USB drive, and runs on 4 different operating systems.
Not only that, but it supports the top 10 languages used on the internet, along with providing Right-to-Left text rendering support in VaultletMail for Hebrew and Farsi.
Simply put, its the easiest and most secure way to protect and control your spam-free email, passwords and other important files wherever you and USB drive may roam.<<less
Download (21.29MB)
Added: 2009-04-05 License: Freeware Price: Free
201 downloads
IT++ 3.10.12 / 3.99.3.1
IT++ is a C++ library of mathematical, signal processing, speech processing, and communications classes and functions. more>>
IT++ is a C++ library of mathematical, signal processing, speech processing, and communications classes and functions. IT++ library is being developed by researchers in these areas and is widely used by researchers, both in the communications industry and universities. Since 2004, IT++ is also being developed as a part of the European Network of Excellence (NEWCOM).
The kernel of the IT++ library are templated vector and matrix classes, and lots of functions for vectors and matrices. Such a kernel makes IT++ library similar to Matlab.
IT++ makes an extensive use of existing open-source libraries (but not only) for increased functionality, speed and accuracy. In particular BLAS, CBLAS, LAPACK and FFTW libraries might be used. Instead of NetLibs reference BLAS and LAPACK, some optimized platform-specific libraries can be used as well, i.e.:
- ATLAS (Automatically Tuned Linear Algebra Software) - includes optimised BLAS, CBLAS and a limited set of LAPACK routines
- MKL (Intel Math Kernel Library) - includes all required BLAS, CBLAS, LAPACK and FFT routines (FFTW not required)
- ACML (AMD Core Math Library) - includes BLAS, LAPACK and FFT routines (FFTW not required)
It is possible to compile and use IT++ without any of the above listed libraries, but the functionality will be reduced.
The IT++ library originates from the former department of Information Theory at the Chalmers University of Technology, Gothenburg, Sweden. Because the library is coded in C++, the name IT++ seemed like a good idea at the time. While departments come and go, IT++ have developed a life of its own and is now released under the terms of the GNU General Public License (GPL) for you to enjoy.
IT++ should work on GNU/Linux, Sun Solaris, Microsoft Windows (with Cygwin or Microsoft Visual C++ .NET) and Mac OS X (more testers needed).
<<lessThe kernel of the IT++ library are templated vector and matrix classes, and lots of functions for vectors and matrices. Such a kernel makes IT++ library similar to Matlab.
IT++ makes an extensive use of existing open-source libraries (but not only) for increased functionality, speed and accuracy. In particular BLAS, CBLAS, LAPACK and FFTW libraries might be used. Instead of NetLibs reference BLAS and LAPACK, some optimized platform-specific libraries can be used as well, i.e.:
- ATLAS (Automatically Tuned Linear Algebra Software) - includes optimised BLAS, CBLAS and a limited set of LAPACK routines
- MKL (Intel Math Kernel Library) - includes all required BLAS, CBLAS, LAPACK and FFT routines (FFTW not required)
- ACML (AMD Core Math Library) - includes BLAS, LAPACK and FFT routines (FFTW not required)
It is possible to compile and use IT++ without any of the above listed libraries, but the functionality will be reduced.
The IT++ library originates from the former department of Information Theory at the Chalmers University of Technology, Gothenburg, Sweden. Because the library is coded in C++, the name IT++ seemed like a good idea at the time. While departments come and go, IT++ have developed a life of its own and is now released under the terms of the GNU General Public License (GPL) for you to enjoy.
IT++ should work on GNU/Linux, Sun Solaris, Microsoft Windows (with Cygwin or Microsoft Visual C++ .NET) and Mac OS X (more testers needed).
Download (MB)
Added: 2007-08-12 License: GPL (GNU General Public License) Price:
807 downloads
Sort::Half::Maker 0.03
Sort::Half::Maker is a Perl module to create half-sort subs easily. more>>
Sort::Half::Maker is a Perl module to create half-sort subs easily.
SYNOPSIS
use Sort::Half::Maker qw(make_halfsort);
$sub = make_halfsort(
start => [ qw(x y z) ],
end => [ qw(a b c) ],
fallback => sub { $_[0] cmp $_[1] },
);
@list = sort $sub qw(a y f h w z b t x);
# qw(x y z f h t w a b)
Before anything, what it a half-sort?
A half-sort is a sort subroutine defined by a starting list, an ending list and an ordinary sort subroutine. Elements in the starting list always go first in comparison to others and keep the original order. Elements in the ending list always go last in comparison to others and keep their original order. The remaining elements are sorted via the given ordinary sort subroutine.
An example, please?
Imagine we want to sort the list of key/value pairs of a hash, such that qw(name version abstract license author) come first and qw(meta-spec) comes last, using case-insensitive comparison in-between. With this module, this is done so:
$sub = make_halfsort(
start => [ qw(name version abstract license author) ],
end => [ qw(meta-spec) ],
fallback => sub { lc $_[0] cmp lc $_[1] }
);
my @pairs = map { ($_, $h{$_}) } sort $sub keys(%h);
Why is it good for?
I dont see many uses for it. I played with the concept while writing a patch to improve META.yml generation by ExtUtils::MakeMaker. There we wanted to dump some keys (like name, version, abstract, license, author) before and then the ones the module author provided as extra information.
FUNCTIONS
make_halfsort
$sub = make_halfsort(start => @start_list,
end => @end_list,
fallback => &sort_sub
);
@sorted = sort $sub @unsorted;
Builds a sort subroutine which can be used with sort. It splits the sorted list into (possibly) three partitions: the elements contained in @start_list, the elements contained in @end_list and the remaining ones. For the elements in @start_list and @end_list, the list order is preserved. For the remaining ones, the given sort sub (or the default) is used.
If fallback is ommited, it defaults to use the sort sub sub ($$) { $_[0] cmp $_[1] }.
The arguments start or end may be ommited as well. But if you omit both, you could have done it without a half-sort.
<<lessSYNOPSIS
use Sort::Half::Maker qw(make_halfsort);
$sub = make_halfsort(
start => [ qw(x y z) ],
end => [ qw(a b c) ],
fallback => sub { $_[0] cmp $_[1] },
);
@list = sort $sub qw(a y f h w z b t x);
# qw(x y z f h t w a b)
Before anything, what it a half-sort?
A half-sort is a sort subroutine defined by a starting list, an ending list and an ordinary sort subroutine. Elements in the starting list always go first in comparison to others and keep the original order. Elements in the ending list always go last in comparison to others and keep their original order. The remaining elements are sorted via the given ordinary sort subroutine.
An example, please?
Imagine we want to sort the list of key/value pairs of a hash, such that qw(name version abstract license author) come first and qw(meta-spec) comes last, using case-insensitive comparison in-between. With this module, this is done so:
$sub = make_halfsort(
start => [ qw(name version abstract license author) ],
end => [ qw(meta-spec) ],
fallback => sub { lc $_[0] cmp lc $_[1] }
);
my @pairs = map { ($_, $h{$_}) } sort $sub keys(%h);
Why is it good for?
I dont see many uses for it. I played with the concept while writing a patch to improve META.yml generation by ExtUtils::MakeMaker. There we wanted to dump some keys (like name, version, abstract, license, author) before and then the ones the module author provided as extra information.
FUNCTIONS
make_halfsort
$sub = make_halfsort(start => @start_list,
end => @end_list,
fallback => &sort_sub
);
@sorted = sort $sub @unsorted;
Builds a sort subroutine which can be used with sort. It splits the sorted list into (possibly) three partitions: the elements contained in @start_list, the elements contained in @end_list and the remaining ones. For the elements in @start_list and @end_list, the list order is preserved. For the remaining ones, the given sort sub (or the default) is used.
If fallback is ommited, it defaults to use the sort sub sub ($$) { $_[0] cmp $_[1] }.
The arguments start or end may be ommited as well. But if you omit both, you could have done it without a half-sort.
Download (0.004MB)
Added: 2007-08-08 License: Perl Artistic License Price:
807 downloads
Fantasdic 1.0 Beta 3
Fantasdic is a client for the DICT protocol. more>>
Fantasdic is a client for the DICT protocol.
Main features:
- Can use multiple servers at the same time and filter databases.
- Includes a simple vocabulary learning tool.
- Scans clipboard.
- Keeps an history of searched words so you can go back and go forward easily.
- Supports i18n.
<<lessMain features:
- Can use multiple servers at the same time and filter databases.
- Includes a simple vocabulary learning tool.
- Scans clipboard.
- Keeps an history of searched words so you can go back and go forward easily.
- Supports i18n.
Download (0.093MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
817 downloads
Jagged Alliance 2 - Stracciatella 0.5
Jagged Alliance - Stracciatella is a Jagged Alliance 2 port using SDL. more>>
Jagged Alliance - Stracciatella is a Jagged Alliance 2 port using SDL.
Arulco had been a nice, prospering country until... well, until Deidranna took over. After framing her husband and prince Enrico Chivaldori for killing the monarch she ruled the country with an iron fist.
Genocide, poverty and ruthless murder is common these days. Enrico Chivaldori gives his last dollars to a shadowy figure to gather a team of mercenaries to free his country. He gives his last dollars to you. So you are in charge now - hire some mercs, go to Arulco and liberate it - and after youre finished you could clean up all the mess you made.
Jagged Alliance 2 is a turn based strategy game in which you hire mercs to free the country of Arulco. Over 150 different characters, a nonlinear gameplay, deep strategic battles and more-than-average detailed equipment do their best, to keep you playing on and on. So come to Arulco - and remember: You fight for Freedom. You kill for cash!
<<lessArulco had been a nice, prospering country until... well, until Deidranna took over. After framing her husband and prince Enrico Chivaldori for killing the monarch she ruled the country with an iron fist.
Genocide, poverty and ruthless murder is common these days. Enrico Chivaldori gives his last dollars to a shadowy figure to gather a team of mercenaries to free his country. He gives his last dollars to you. So you are in charge now - hire some mercs, go to Arulco and liberate it - and after youre finished you could clean up all the mess you made.
Jagged Alliance 2 is a turn based strategy game in which you hire mercs to free the country of Arulco. Over 150 different characters, a nonlinear gameplay, deep strategic battles and more-than-average detailed equipment do their best, to keep you playing on and on. So come to Arulco - and remember: You fight for Freedom. You kill for cash!
Download (2.5MB)
Added: 2007-07-27 License: Freeware Price:
555 downloads
Encaps Gallery 1.7.12
Encaps Gallery is photo album software which supports different skins (html-templates). more>>
Encaps Gallery project is photo album software which supports different skins (html-templates). The design of photo album is based on native PHP and HTML templates. Encaps photo Gallery software has 6 predefined skins. Photo album software back-end demo
Main features:
- MySQL database installer
- create unlimited categories
- upload unlimited media files (images,mov,swf)
- automatic thumbnails creation (optional)
- easy to install and use
- web-admin (back-end)
- large number of images is splitted by pages
- PayPal shopping cart (optional, can be enabled/disabled from back-end)
Encaps Gallery photo album software is trying to provide a free, light weight & flexible to customize web application for online digital photo album creating. That allows you to create a custom photo album on your web page. Encaps Gallery photo album software may be run stand-alone or embedded within another web page. PHP photo gallery helps you to create your custom photo album. Encaps photo Gallery is fully functional ready-to-go image hosting system written in PHP.
Photo album scripts come with an Admin panel to manage your photo galleries and images, completely customizable using HTML templates. You can easily create and manage photo albums, using http/ftp image upload and admin back-end.
<<lessMain features:
- MySQL database installer
- create unlimited categories
- upload unlimited media files (images,mov,swf)
- automatic thumbnails creation (optional)
- easy to install and use
- web-admin (back-end)
- large number of images is splitted by pages
- PayPal shopping cart (optional, can be enabled/disabled from back-end)
Encaps Gallery photo album software is trying to provide a free, light weight & flexible to customize web application for online digital photo album creating. That allows you to create a custom photo album on your web page. Encaps Gallery photo album software may be run stand-alone or embedded within another web page. PHP photo gallery helps you to create your custom photo album. Encaps photo Gallery is fully functional ready-to-go image hosting system written in PHP.
Photo album scripts come with an Admin panel to manage your photo galleries and images, completely customizable using HTML templates. You can easily create and manage photo albums, using http/ftp image upload and admin back-end.
Download (0.22MB)
Added: 2007-07-19 License: Freely Distributable Price:
830 downloads
Games::Go::SGF 0.05
Games::Go::SGF is a Perl module that can parse and dissect Standard Go Format files. more>>
Games::Go::SGF is a Perl module that can parse and dissect Standard Go Format files.
SYNOPSIS
use Games::Go::SGF;
my $sgf = new Games::Go::SGF($sgfdata);
print "Game played on ".$sgf->date."n";
print $sgf->white. " (W) vs. ".$sgf->black." (B)n";
print "Board size: ".$sgf->size.". Komi: ".$sgf->komi."n";
while ($move = $sgf->move($move_no++)) {
print "$move_no: ".$move->move,"n";
}
This is a very simple SGF file parser, of currently limited functionality. It can read and step through SGF files, follow variations, and so on. Its good enough for getting simple statistics about games of Go, and building up Games::Go::Board objects representing games stored as SGF.
$sgf->move returns either a normal Games::Go::SGF::Node or a Games::Go::SGF::Variation object. They behave exactly the same, but the variation object has the additional methods mainline() to get the main line of the game, variation($n) to get the first node in the nth variation, and variations to retrieve an array of variations. $variation->move will, by default, follow the mainline.
<<lessSYNOPSIS
use Games::Go::SGF;
my $sgf = new Games::Go::SGF($sgfdata);
print "Game played on ".$sgf->date."n";
print $sgf->white. " (W) vs. ".$sgf->black." (B)n";
print "Board size: ".$sgf->size.". Komi: ".$sgf->komi."n";
while ($move = $sgf->move($move_no++)) {
print "$move_no: ".$move->move,"n";
}
This is a very simple SGF file parser, of currently limited functionality. It can read and step through SGF files, follow variations, and so on. Its good enough for getting simple statistics about games of Go, and building up Games::Go::Board objects representing games stored as SGF.
$sgf->move returns either a normal Games::Go::SGF::Node or a Games::Go::SGF::Variation object. They behave exactly the same, but the variation object has the additional methods mainline() to get the main line of the game, variation($n) to get the first node in the nth variation, and variations to retrieve an array of variations. $variation->move will, by default, follow the mainline.
Download (0.003MB)
Added: 2007-07-12 License: Perl Artistic License Price:
835 downloads
FoxGame 1.4.14
FoxGame is an extension that can be used to enhance user experience with O-game. more>>
FoxGame is an extension that can be used to enhance user experience with O-game.
Enhance user experience with O-game (now works in every o-game version)
Adds a lot of features to the webgame O-game.
It also integrates Database features inside the game.
O-Game, is a real-time spacial browser game.
bs-BA/hr-HR/cs-SR can be downloaded as a separate version from http://foxgame.mozdev.org/ because there is no especific firefox version for those languages.
Main features:
- Automatic universe selector in login page.
- Reduced galaxy view: Planet column is not rendered and its functinality is moved to Name col., debris header reduced also.
- Extra delete options and spy report options: You can control messages from the top or the bottom.
- Fleet arrival and return time: In fleet destiny selection page you will see the time when you fleet will arrive and come back to your planet.
- Fleet retreat time: In fleet page you will see the time when your fleet will arrive if you order to come back.
- Multilanguage support: es-ES(spanish), en-US(english), de-DE(deutsch), pl-PL(polish), fr-FR(french), nl-NL/nl-BR (dutch), it-IT (italian), bs-BA/sr-CS/hr-HR (bosnian, serbian, croatian), pt-PT/pt-BR(portugese), tr-TR(Turkish), zh-CN/zh-TW (Simplified chinese and traditional chinese), ru-RU (russian), da-DK (danish), si-SL (slovenian) and sv-SE/sv-FI (swedish). If your language is not supported and you want to translate it, mail me.
- Almost all finishing hours: Research and buildings finishing hours, hangars qeue finishing time, you can see date/time in overview if you wish and even in phalanx.
- Highlight ally and private messages: Ally and private messages now have a diferent background to see them easily.
- Highlight big debris fields: Debris fields bigger than you fix min will have different background in galaxy view.
- Autochoose mision type: You can define mission priorities so FoxGame will select the mission according to that.
- Online DBs integration: Send reports to Milos (only ogame.com.es), EspRep and GalaxieTool directly within OGame (solar systems, stats and spy reports supported).
- In mines and power plants info screens (the ones you see when you click in the name) you will see the diferences between your actual level and the rest.
- Autoselect fleet destination: Select coord text anywhere go to fleet send screen and Voila! the destination is already selected. There is no need to take down numbers anymore.
- Private message signatures.
<<lessEnhance user experience with O-game (now works in every o-game version)
Adds a lot of features to the webgame O-game.
It also integrates Database features inside the game.
O-Game, is a real-time spacial browser game.
bs-BA/hr-HR/cs-SR can be downloaded as a separate version from http://foxgame.mozdev.org/ because there is no especific firefox version for those languages.
Main features:
- Automatic universe selector in login page.
- Reduced galaxy view: Planet column is not rendered and its functinality is moved to Name col., debris header reduced also.
- Extra delete options and spy report options: You can control messages from the top or the bottom.
- Fleet arrival and return time: In fleet destiny selection page you will see the time when you fleet will arrive and come back to your planet.
- Fleet retreat time: In fleet page you will see the time when your fleet will arrive if you order to come back.
- Multilanguage support: es-ES(spanish), en-US(english), de-DE(deutsch), pl-PL(polish), fr-FR(french), nl-NL/nl-BR (dutch), it-IT (italian), bs-BA/sr-CS/hr-HR (bosnian, serbian, croatian), pt-PT/pt-BR(portugese), tr-TR(Turkish), zh-CN/zh-TW (Simplified chinese and traditional chinese), ru-RU (russian), da-DK (danish), si-SL (slovenian) and sv-SE/sv-FI (swedish). If your language is not supported and you want to translate it, mail me.
- Almost all finishing hours: Research and buildings finishing hours, hangars qeue finishing time, you can see date/time in overview if you wish and even in phalanx.
- Highlight ally and private messages: Ally and private messages now have a diferent background to see them easily.
- Highlight big debris fields: Debris fields bigger than you fix min will have different background in galaxy view.
- Autochoose mision type: You can define mission priorities so FoxGame will select the mission according to that.
- Online DBs integration: Send reports to Milos (only ogame.com.es), EspRep and GalaxieTool directly within OGame (solar systems, stats and spy reports supported).
- In mines and power plants info screens (the ones you see when you click in the name) you will see the diferences between your actual level and the rest.
- Autoselect fleet destination: Select coord text anywhere go to fleet send screen and Voila! the destination is already selected. There is no need to take down numbers anymore.
- Private message signatures.
Download (0.057MB)
Added: 2007-07-11 License: MPL (Mozilla Public License) Price:
611 downloads
TOPCASED 1.0.0
TOPCASED is a Toolkit in OPen source for Critical Applications and SystEm Development more>>
TOPCASED comes from Toolkit in OPen source for Critical Applications and SystEm Development and is an id s system/software engineering workshop based on Eclipse.
It aims to provide the tools required to go from requirements to the implementation stages. The current version includes several graphical editors: ECORE, UML 2 (class, use cases, sequence diagrams only), structured analysis, and AADL (Architecture Analysis and Design Language).
These editors are partially generated from ECORE models and models can be checked. OCL and EMF checks are supported at this time. External tools can be easily connected to the workshop thanks to a simple communication bus.
<<lessIt aims to provide the tools required to go from requirements to the implementation stages. The current version includes several graphical editors: ECORE, UML 2 (class, use cases, sequence diagrams only), structured analysis, and AADL (Architecture Analysis and Design Language).
These editors are partially generated from ECORE models and models can be checked. OCL and EMF checks are supported at this time. External tools can be easily connected to the workshop thanks to a simple communication bus.
Download (21.3MB)
Added: 2007-07-07 License: Eclipse Public License Price:
842 downloads
Games::Go::SGF2misc::SVG 1.00
Games::Go::SGF2misc::SVG is a Perl package to simplify SGF game rendering using Image::LibrSVG. more>>
Games::Go::SGF2misc::SVG is a Perl package to simplify SGF game rendering using Image::LibrSVG.
SYNOPSIS
use Games::Go::SGF2misc::SVG;
my $image = new Games::Go::SGF2misc::SVG(imagesize => 3in,
boardsize => 19,
gobanColor=> white );
$image->drawGoban();
$image->placeStone(b,cd);
$image->placeStone(w,[4,2]);
$image->placeStone(b,db);
$image->placeStone(w,dc);
$image->placeStone(b,cc);
$image->placeStone(w,eb);
$image->placeStone(b,cb);
$image->addCircle(cb,1);
$image->save($filename); # As a .svg
$image->export($filename); # As a .png
<<lessSYNOPSIS
use Games::Go::SGF2misc::SVG;
my $image = new Games::Go::SGF2misc::SVG(imagesize => 3in,
boardsize => 19,
gobanColor=> white );
$image->drawGoban();
$image->placeStone(b,cd);
$image->placeStone(w,[4,2]);
$image->placeStone(b,db);
$image->placeStone(w,dc);
$image->placeStone(b,cc);
$image->placeStone(w,eb);
$image->placeStone(b,cb);
$image->addCircle(cb,1);
$image->save($filename); # As a .svg
$image->export($filename); # As a .png
Download (0.006MB)
Added: 2007-07-05 License: Perl Artistic License Price:
844 downloads
Drag de Go 0.2.5
Drag de Go is a Firefox extension that allows you to execute several commands by the direction you drag and drop. more>>
Drag de Go is a Firefox extension that allows you to execute several commands (like open link, save link, search selected text) by the direction you drag and drop.
This extension identify the Object you drag Selected Text, Link, Image, or Extension File, and you can set commands to each object.
Main features:
- Assistance of file up-loading on web page.
- Open text link. (missing URL such as "ttp://...", "tp://..." can be opened. )
- The page the link ahead, the image, and the extension, etc. can be saved.
- The place where the file and the bookmark, etc. are opened by drag & drop can be set.
- Gesture in page source window.
- Execute "open link in ... Tab" command with ctrl key pastes the URL of link to address bar.
<<lessThis extension identify the Object you drag Selected Text, Link, Image, or Extension File, and you can set commands to each object.
Main features:
- Assistance of file up-loading on web page.
- Open text link. (missing URL such as "ttp://...", "tp://..." can be opened. )
- The page the link ahead, the image, and the extension, etc. can be saved.
- The place where the file and the bookmark, etc. are opened by drag & drop can be set.
- Gesture in page source window.
- Execute "open link in ... Tab" command with ctrl key pastes the URL of link to address bar.
Download (0.086MB)
Added: 2007-06-29 License: MPL (Mozilla Public License) Price:
854 downloads
Nailer 0.1
Nailer project is a Glib application that uses MPlayer to generate thumbnails of video media files. more>>
Nailer project is a Glib application that uses MPlayer to generate thumbnails of video media files.
Nailer takes 3 command line arguments. The first two are manadatory and the third is optional.
nailer input output [size]
input - is any video file that mplayer supports
output - is either the name of the png or jpeg file you want the output to go into
size - is the size in the X axis of the thumbnail you want to generate
nailer can be used to replace totem-video-thumbnailer and comes with the nautilus configuration file to do so.
<<lessNailer takes 3 command line arguments. The first two are manadatory and the third is optional.
nailer input output [size]
input - is any video file that mplayer supports
output - is either the name of the png or jpeg file you want the output to go into
size - is the size in the X axis of the thumbnail you want to generate
nailer can be used to replace totem-video-thumbnailer and comes with the nautilus configuration file to do so.
Download (0.32MB)
Added: 2007-06-07 License: GPL (GNU General Public License) Price:
869 downloads
qGo 1.5.4
qGo is a full featured SGF editor and Go Client for NNGS/IGS/etc. more>>
qGo is a full featured SGF editor and Go Client for NNGS/IGS/etc., available for Linux, Mac and Windows.
qGo is based on Qt 3.2.1nc (Windows) and Qt 3.1+ (Linux, Mac). Go is an ancient boardgame, very common in Japan, China, Korea and Taiwan.
Enhancements:
- fixed : mark issue with teaching games
- added : blind go
- added : 2 new translations (latin and simplified chinese)
- changed : added SGF (uppercase) as file suffix
<<lessqGo is based on Qt 3.2.1nc (Windows) and Qt 3.1+ (Linux, Mac). Go is an ancient boardgame, very common in Japan, China, Korea and Taiwan.
Enhancements:
- fixed : mark issue with teaching games
- added : blind go
- added : 2 new translations (latin and simplified chinese)
- changed : added SGF (uppercase) as file suffix
Download (1.6MB)
Added: 2007-06-06 License: GPL (GNU General Public License) Price:
870 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 come and go 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