fcp 1.0
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3047
Net::FCP 1.0
Net::FCP Perl module is a Freenet client protocol. more>>
Net::FCP Perl module is a Freenet client protocol.
SYNOPSIS
use Net::FCP;
my $fcp = new Net::FCP;
my $ni = $fcp->txn_node_info->result;
my $ni = $fcp->node_info;
See http://freenet.sourceforge.net/index.php?page=fcp for a description of what the messages do. I am too lazy to document all this here.
The module uses AnyEvent to find a suitable Event module.
<<lessSYNOPSIS
use Net::FCP;
my $fcp = new Net::FCP;
my $ni = $fcp->txn_node_info->result;
my $ni = $fcp->node_info;
See http://freenet.sourceforge.net/index.php?page=fcp for a description of what the messages do. I am too lazy to document all this here.
The module uses AnyEvent to find a suitable Event module.
Download (0.028MB)
Added: 2007-06-23 License: Perl Artistic License Price:
854 downloads
xexec 1.0
xexec is a client/server system to locate a program via the X11 protocol and spawn it. more>>
xexec is a client/server system to locate a program via the X11 protocol and spawn it.
It is useful for loading the Web browser on your machine from a program run on a remote host.
Usage:
hosta$ xlisten open-url /bin/sh -c htmlview "$CMD"
hostb$ xexec open-url http://www.google.com/
note that your "exe" for xlisten must return before xlisten responds. any output written to stdout will be passed back to xexec.
<<lessIt is useful for loading the Web browser on your machine from a program run on a remote host.
Usage:
hosta$ xlisten open-url /bin/sh -c htmlview "$CMD"
hostb$ xexec open-url http://www.google.com/
note that your "exe" for xlisten must return before xlisten responds. any output written to stdout will be passed back to xexec.
Download (0.031MB)
Added: 2005-10-12 License: GPL (GNU General Public License) Price:
1473 downloads
RFind 1.0
RFind it indexes and searches filenames in a directory hierarchy. more>>
RFind indexes the filenames of a given directory, and allows you to quickly search this index with regular expressions. Search-on-typing with more than 500,000 indexed filenames is easily possible.
RFind attempts to be very configurable so that it can be useful to everyone. It features hierarchically presented search results, search-on-typing, and the ability to define rules to execute on mouse click.
Main features:
- Hierarchical presented search results
- Search-on-typing
- Define rules to execute on mouseclick
<<lessRFind attempts to be very configurable so that it can be useful to everyone. It features hierarchically presented search results, search-on-typing, and the ability to define rules to execute on mouse click.
Main features:
- Hierarchical presented search results
- Search-on-typing
- Define rules to execute on mouseclick
Download (0.011MB)
Added: 2005-04-28 License: Public Domain Price:
1639 downloads
fcp.pl 0.3
fcp.pl is a powerful ftp client in early stage of development. more>>
fcp.pl is a powerful ftp client in early stage of development. It supports auto-bookmarks, auto-reconnect, resume, directory recursion, regexp ignore list, concurrent connection to more servers, intelligent timeouts, filename and command completion, directory caching, proxy servers, speed limiting, symlinks, queues, skins and lots more. For now, the target is developers who want to help, and support to other clients is limited.
Installation:
-----------------
1. install following perl modules: Date::Manip, Curses, Term::ReadLine::Gnu. If
you have RedHat, you can find these in the DMA/CPAN (7.x) or simply cpan (6.x)
2. copy Fcp.pm into /usr/lib/perl5/site_perl or wherever you prefer it
3. copy fcp.pl into /usr/local/bin or wherever you prefer it
Interactive mode:
-----------------
fcp.pl
commands (examples):
open ftp://user:pass@hostname:port/path
set resume 1
lcd /wherever
get whatever
quit
command list:
get filename
put filename
mget glob
mput glob
set variable [value]
unset variable
dir or ls or list [glob]
ldir or lls or llist [glob]
purge -> clears cache
rm -> delete remote file
lrm -> delete local file
lmkdir -> create local directory
mkdir -> create remote directory
lcd path -> change local path
cd path -> change remote path
lpwd -> print local working directory
pwd -> print remote working directory
abor -> abort current operation
open url_or_bookmark_or_# -> open a ftp site
load url_or_bookmark -> same as open, only doesnt connect
close -> close current connection
quit
enqueue -> put the following command to queue
queue -> list queue
clr_queue -> clear queue
go -> process queue
curses -> turn on curses interface
"set variable" is equivalent to "set variable 1"
"unset variable" is equivalent to "set variable 0"
Commands from interactive mode are saved into a history file. Upon quit, queues
and bookmarks are saved, unless "immutable" is set.
sets:
-----
timeout - in seconds for tcp connection, data transfer, and sleep between
reconnects
maxcount - stop trying to connect after this many failures, if the server tells
you that its busy or user limit was reached
recur - recursively traverse subdirectories
resume - autoresume
ignore - regexp that tells which files and directories ignore in mget/mput
name - bookmark name. Defaults to hostname
size - always use ftp SIZE command to find out file size
mdtm - always use ftp MDTM command to find out file modification date/time
(these last 2 variables cause more time spent on directory listings but
sometimes provide more accurate results). SIZE and MDTM are used in cases it
makes sense regardless of settings.
speed - limit speed of downloads and uploads. In bytes/s. Also understands
stuff like 10k or 2m
timeformat - display date/time in this format. For argument meanings see man
date
dircache - keep directory listing this many seconds. cache is also deleted
manually after the "purge" command
hostname, port, user, pass - obvious
passive - use passive data connections, when 0, use active.
human - display size as "168M" instead of "172492244"
immutable - dont update bookmark on close/quit
symlink - treat symlink as symlinks. If 0, treat them as files or directories.
If you try to download a symlink, it either creates a symlink locally (when
set to 1) or downloads the file/makes a directory (when set to 0).
quiet - write less (only errors and transfer progress)
skin - yes, fcp.pl has skins. Curently 3: wget, ncftp and curses
status - connection status.
proxy - hostname:port for a ftp proxy server, "USER user@host:port"-proxy style
Curses interface:
-----------------
You cant open new sites with curses interface yet, so you have to
open whatever
first. Then simply type "curses" and the curses interface will come up.
keys:
l -> page down
h -> page up
k -> one up
j -> one down
d -> transfer (download or upload)
t or space -> tag (currently has no effect except files in the listing change
color :-))
enter/return -> change directory
r -> reread directory listing
Tab -> switch between remote, local and queue
- + * -> think Midnight Commander/Norton Commander/Dos Navigator/Far
q -> enqueue transferring current file
g -> process queue
c -> clear queue
x -> close curses interface
Scripting:
----------
create a file containing ftp command just like youd type them interactively.
Then you can run
fcp.pl file_with_commands
and they will be processed. As far as I remember putting QUIT on the last line
isnt necessary.
If you have a question, ask over email.
Enjoy!
Enhancements:
- forceresume option
- radical speed improvements (copying at 5.5MB/s eats about 15% CPU on Duron 900)
- symlink handling fixed
- curses directory listing bugfix
- tagging
- sorting
- proxy port fix
- upload and recursive upload fix
<<lessInstallation:
-----------------
1. install following perl modules: Date::Manip, Curses, Term::ReadLine::Gnu. If
you have RedHat, you can find these in the DMA/CPAN (7.x) or simply cpan (6.x)
2. copy Fcp.pm into /usr/lib/perl5/site_perl or wherever you prefer it
3. copy fcp.pl into /usr/local/bin or wherever you prefer it
Interactive mode:
-----------------
fcp.pl
commands (examples):
open ftp://user:pass@hostname:port/path
set resume 1
lcd /wherever
get whatever
quit
command list:
get filename
put filename
mget glob
mput glob
set variable [value]
unset variable
dir or ls or list [glob]
ldir or lls or llist [glob]
purge -> clears cache
rm -> delete remote file
lrm -> delete local file
lmkdir -> create local directory
mkdir -> create remote directory
lcd path -> change local path
cd path -> change remote path
lpwd -> print local working directory
pwd -> print remote working directory
abor -> abort current operation
open url_or_bookmark_or_# -> open a ftp site
load url_or_bookmark -> same as open, only doesnt connect
close -> close current connection
quit
enqueue -> put the following command to queue
queue -> list queue
clr_queue -> clear queue
go -> process queue
curses -> turn on curses interface
"set variable" is equivalent to "set variable 1"
"unset variable" is equivalent to "set variable 0"
Commands from interactive mode are saved into a history file. Upon quit, queues
and bookmarks are saved, unless "immutable" is set.
sets:
-----
timeout - in seconds for tcp connection, data transfer, and sleep between
reconnects
maxcount - stop trying to connect after this many failures, if the server tells
you that its busy or user limit was reached
recur - recursively traverse subdirectories
resume - autoresume
ignore - regexp that tells which files and directories ignore in mget/mput
name - bookmark name. Defaults to hostname
size - always use ftp SIZE command to find out file size
mdtm - always use ftp MDTM command to find out file modification date/time
(these last 2 variables cause more time spent on directory listings but
sometimes provide more accurate results). SIZE and MDTM are used in cases it
makes sense regardless of settings.
speed - limit speed of downloads and uploads. In bytes/s. Also understands
stuff like 10k or 2m
timeformat - display date/time in this format. For argument meanings see man
date
dircache - keep directory listing this many seconds. cache is also deleted
manually after the "purge" command
hostname, port, user, pass - obvious
passive - use passive data connections, when 0, use active.
human - display size as "168M" instead of "172492244"
immutable - dont update bookmark on close/quit
symlink - treat symlink as symlinks. If 0, treat them as files or directories.
If you try to download a symlink, it either creates a symlink locally (when
set to 1) or downloads the file/makes a directory (when set to 0).
quiet - write less (only errors and transfer progress)
skin - yes, fcp.pl has skins. Curently 3: wget, ncftp and curses
status - connection status.
proxy - hostname:port for a ftp proxy server, "USER user@host:port"-proxy style
Curses interface:
-----------------
You cant open new sites with curses interface yet, so you have to
open whatever
first. Then simply type "curses" and the curses interface will come up.
keys:
l -> page down
h -> page up
k -> one up
j -> one down
d -> transfer (download or upload)
t or space -> tag (currently has no effect except files in the listing change
color :-))
enter/return -> change directory
r -> reread directory listing
Tab -> switch between remote, local and queue
- + * -> think Midnight Commander/Norton Commander/Dos Navigator/Far
q -> enqueue transferring current file
g -> process queue
c -> clear queue
x -> close curses interface
Scripting:
----------
create a file containing ftp command just like youd type them interactively.
Then you can run
fcp.pl file_with_commands
and they will be processed. As far as I remember putting QUIT on the last line
isnt necessary.
If you have a question, ask over email.
Enjoy!
Enhancements:
- forceresume option
- radical speed improvements (copying at 5.5MB/s eats about 15% CPU on Duron 900)
- symlink handling fixed
- curses directory listing bugfix
- tagging
- sorting
- proxy port fix
- upload and recursive upload fix
Download (0.026MB)
Added: 2006-06-14 License: GPL (GNU General Public License) Price:
1227 downloads
YaFM 1.0.5
YaFM is a web-based file manager written in PHP. more>>
YaFM is a web-based file manager written in PHP and licensed under the GPL.
It allows you to upload, download, view, edit, copy, move/rename, change permissions and owner group of a single file or a group of files which reside on a unix filesystem local to the script.
It does not require MySQL (although you can easily implement a SQL-based authenticationscheme if you need one).
It should be relatively easy to change the look and feel of YaFM since Ive tried to keep PHP code and HTML separate (the current look and feel is based on Adam Suttons phpFtp)
Installation:
Note: most of these instructions apply to RedHat-like systems. In RedHat the default webroot for apache is /var/www/html and CGI programs are placed into /var/www/cgi-bin and this layout is respected in the .tar.gz archives and RPMs youve downloaded from
YaFMs website.
Also the assumed location of your php CGI executable is /usr/bin/php and the PHP configuration file is assumed to be in /etc/php.ini If your installation differs or you want to install YaFM to another location please extract the archives manually, also you may have to modify the first line of the yafm.phps script!
Quick instructions:
If youve got the .tar.gz package install it as follows:
# tar --directory=/ -xvzf /path/to/yafm-release.tar.gz
If youve got the .tar.bz2 package install it as follows:
# bzcat /path/to/yafm-release.tar.bz2 | tar --directory=/ -xv
If youve got the RPM, install it as follows:
# rpm -Uvh /path/to/fileman-release.rpm
(note: replace yafm-release with the respective release number, e.g. yafm-1.0.5)
Now you should have a working YaFM installation, you can access it at
http://your-host-name/cgi-bin/yafm.phps
WARNING: by default two accounts are created user1 with password1 and
user2 with password2. Please edit the login.inc file to change accounts
Enhancements:
This is a new feature and bugfix release of YaFM but there may still be a few gotchas.
- File Finder implemented
- HTTPS compatible (https://yourhost/cgi-bin/yafm.phps now works)
- You can keep using YaFM while a download is in progress
- Downloads only timeout after one hour
- Login fixes
- YaFM looks better now on Internet Explorer
- More layout fixes
<<lessIt allows you to upload, download, view, edit, copy, move/rename, change permissions and owner group of a single file or a group of files which reside on a unix filesystem local to the script.
It does not require MySQL (although you can easily implement a SQL-based authenticationscheme if you need one).
It should be relatively easy to change the look and feel of YaFM since Ive tried to keep PHP code and HTML separate (the current look and feel is based on Adam Suttons phpFtp)
Installation:
Note: most of these instructions apply to RedHat-like systems. In RedHat the default webroot for apache is /var/www/html and CGI programs are placed into /var/www/cgi-bin and this layout is respected in the .tar.gz archives and RPMs youve downloaded from
YaFMs website.
Also the assumed location of your php CGI executable is /usr/bin/php and the PHP configuration file is assumed to be in /etc/php.ini If your installation differs or you want to install YaFM to another location please extract the archives manually, also you may have to modify the first line of the yafm.phps script!
Quick instructions:
If youve got the .tar.gz package install it as follows:
# tar --directory=/ -xvzf /path/to/yafm-release.tar.gz
If youve got the .tar.bz2 package install it as follows:
# bzcat /path/to/yafm-release.tar.bz2 | tar --directory=/ -xv
If youve got the RPM, install it as follows:
# rpm -Uvh /path/to/fileman-release.rpm
(note: replace yafm-release with the respective release number, e.g. yafm-1.0.5)
Now you should have a working YaFM installation, you can access it at
http://your-host-name/cgi-bin/yafm.phps
WARNING: by default two accounts are created user1 with password1 and
user2 with password2. Please edit the login.inc file to change accounts
Enhancements:
This is a new feature and bugfix release of YaFM but there may still be a few gotchas.
- File Finder implemented
- HTTPS compatible (https://yourhost/cgi-bin/yafm.phps now works)
- You can keep using YaFM while a download is in progress
- Downloads only timeout after one hour
- Login fixes
- YaFM looks better now on Internet Explorer
- More layout fixes
Download (0.065MB)
Added: 2005-09-28 License: GPL (GNU General Public License) Price:
1487 downloads
gbdfed 1.0
gbdfed lets you interactively create new bitmap font files or modify existing ones. more>>
gbdfed lets you interactively create new bitmap font files or modify existing ones. It allows editing multiple fonts and multiple glyphs.
gbdfed allows cut and paste operations between fonts and glyphs and editing font properties. The editor works natively with BDF fonts.
gbdfed can import:
Metafont PK/GF fonts.
Han Bitmap Font format (HBF) fonts.
Linux console (PSF, CP, and EGA/VGA) fonts.
Sun VF fonts.
OpenType (OTF & TTF) fonts (using Freetype 2).
A font from the X server.
gbdfed can export:
PSF2 Linux console fonts.
HEX fonts (see online help).
The editor also supports 2, 4, and 8 bits-per-pixel gray scale fonts for embedding in OTF fonts.
Main features:
- Multiple fonts can be loaded from the command line.
- Multiple fonts can be open at the same time.
- Cutting and pasting glyphs between fonts.
- Multiple glyph bitmap editors can be open at the same time.
- Cutting and pasting between glyph bitmap editors.
- Export of XBM files from glyph bitmap editors.
- Automatic correction of certain metrics when a font is loaded.
- Generation of XLFD font names for fonts without XLFD names.
- Update an XLFD font name from the font properties.
- Update the font properties from an XLFD font name.
- Font property editor.
- Font comment editor.
- Supports unencoded glyphs (ENCODING of -1).
- Display of glyph encodings in octal, decimal, or hex.
- Builtin on-line help.
- Imports PK/GF fonts.
- Imports HBF (Han Bitmap Font) fonts.
- Imports Linux console fonts (PSF, CP, and FNT).
- Imports Sun console fonts (vfont format).
- Imports fonts from the X server.
- Imports Windows FON/FNT fonts.
- Imports TrueType fonts and collections.
- Exports PSF fonts.
- Exports HEX fonts.
<<lessgbdfed allows cut and paste operations between fonts and glyphs and editing font properties. The editor works natively with BDF fonts.
gbdfed can import:
Metafont PK/GF fonts.
Han Bitmap Font format (HBF) fonts.
Linux console (PSF, CP, and EGA/VGA) fonts.
Sun VF fonts.
OpenType (OTF & TTF) fonts (using Freetype 2).
A font from the X server.
gbdfed can export:
PSF2 Linux console fonts.
HEX fonts (see online help).
The editor also supports 2, 4, and 8 bits-per-pixel gray scale fonts for embedding in OTF fonts.
Main features:
- Multiple fonts can be loaded from the command line.
- Multiple fonts can be open at the same time.
- Cutting and pasting glyphs between fonts.
- Multiple glyph bitmap editors can be open at the same time.
- Cutting and pasting between glyph bitmap editors.
- Export of XBM files from glyph bitmap editors.
- Automatic correction of certain metrics when a font is loaded.
- Generation of XLFD font names for fonts without XLFD names.
- Update an XLFD font name from the font properties.
- Update the font properties from an XLFD font name.
- Font property editor.
- Font comment editor.
- Supports unencoded glyphs (ENCODING of -1).
- Display of glyph encodings in octal, decimal, or hex.
- Builtin on-line help.
- Imports PK/GF fonts.
- Imports HBF (Han Bitmap Font) fonts.
- Imports Linux console fonts (PSF, CP, and FNT).
- Imports Sun console fonts (vfont format).
- Imports fonts from the X server.
- Imports Windows FON/FNT fonts.
- Imports TrueType fonts and collections.
- Exports PSF fonts.
- Exports HEX fonts.
Download (0.29MB)
Added: 2006-01-19 License: Free To Use But Restricted Price:
1376 downloads
kmplot 1.0
kmplot is a mathematical function plotter for the KDE desktop. more>>
Kmplot is a mathematical function plotter for the KDE-Desktop. It has built in a powerfull parser.
You can plot different functions simultaneously and combine their function terms to build new functions.
Kmplot supports functions with parameters and functions in polar coordinates. Several grid modes are possible. Plots may be printed with high precision in correct scale.
<<lessYou can plot different functions simultaneously and combine their function terms to build new functions.
Kmplot supports functions with parameters and functions in polar coordinates. Several grid modes are possible. Plots may be printed with high precision in correct scale.
Download (0.50MB)
Added: 2005-09-13 License: GPL (GNU General Public License) Price:
1514 downloads
Mix 1.0
Mix is a KDE theme composed by different collected items, which were already installed (Main Plastic): Plastic, SUSE etc.. more>>
Mix is a KDE theme composed by different collected items, which were already installed: Plastik, SUSE etc..
Plus many different Wallpapers - if one installed it. The theme should function also for other distributions.
<<lessPlus many different Wallpapers - if one installed it. The theme should function also for other distributions.
Download (MB)
Added: 2007-04-16 License: GPL (GNU General Public License) Price:
925 downloads
Zen 1.0
Zen is a Gnome theme that aims to be clear, soft and configurable in colours more>>
Zen is a Gnome theme that aims to be clear, soft and configurable in colours
Colours for selected text, progress bar and Metacity borders can be changed running ./configure at the root of the theme directory (usually ~/.themes/Zen/).
Default is purple, other ones are blue, grey, brown, orange, yellow, olive and green.
Zen for Metacity theme is based on Clear-alternative-wide an is provided by Billy Cantrell
<<lessColours for selected text, progress bar and Metacity borders can be changed running ./configure at the root of the theme directory (usually ~/.themes/Zen/).
Default is purple, other ones are blue, grey, brown, orange, yellow, olive and green.
Zen for Metacity theme is based on Clear-alternative-wide an is provided by Billy Cantrell
Download (0.039MB)
Added: 2007-01-26 License: GPL (GNU General Public License) Price:
1004 downloads
Foopanel 0.1.0
Foopanel is a desktop panel that is themable and extensible through plugins. more>>
Foopanel is a desktop panel that is themable and extensible through plugins.
Foopanel is a powerful desktop panel that enables you to have all that you want just one-click-far. It is extensible through Plugins and fully themeable.
Foopanel differs from the XFCEs panel (and also by the GNOME panel) because: it is written in Python, a great and powerful interpreted language that make it very easy to write plugins: these do not need any particular compilation or installation, they are plain text files that must be placed in the right directory.
Nothing more to do. Its appearence can easily be customized, by using a theme of those available or by writing a custom one.
<<lessFoopanel is a powerful desktop panel that enables you to have all that you want just one-click-far. It is extensible through Plugins and fully themeable.
Foopanel differs from the XFCEs panel (and also by the GNOME panel) because: it is written in Python, a great and powerful interpreted language that make it very easy to write plugins: these do not need any particular compilation or installation, they are plain text files that must be placed in the right directory.
Nothing more to do. Its appearence can easily be customized, by using a theme of those available or by writing a custom one.
Download (0.018MB)
Added: 2006-03-16 License: GPL (GNU General Public License) Price:
1318 downloads
Pharago 1.0
Pharago provides a nice Gnome (GTK+) theme. more>>
Pharago provides a nice Gnome (GTK+) theme.
Pharago is a mix of Gonxical for the style and Gnursid for the colours.
There is an alternative menubar for blended window manager themes :
Copy menubar-4blending.png to menubar.png to setup the new menubar
(copy menubar-default.png to menubar.png to get the default one back)
Clearlooks is an engine and it is easy to configure it to have different colour variations I suppose. Pharago is based on Gonxical just like Clarity is (pixmap themes) and it takes more time to change the colours because many pixmaps need to be redesigned !
<<lessPharago is a mix of Gonxical for the style and Gnursid for the colours.
There is an alternative menubar for blended window manager themes :
Copy menubar-4blending.png to menubar.png to setup the new menubar
(copy menubar-default.png to menubar.png to get the default one back)
Clearlooks is an engine and it is easy to configure it to have different colour variations I suppose. Pharago is based on Gonxical just like Clarity is (pixmap themes) and it takes more time to change the colours because many pixmaps need to be redesigned !
Download (0.026MB)
Added: 2007-01-26 License: GPL (GNU General Public License) Price:
1006 downloads
Wchange 1.0
Wchange provides a very simple wallpaper changer. more>>
Wchange provides a very simple wallpaper changer.
It requires only java runtime environment (JRE) and gconftool-2.
Usage:
java Wchange /home/folder/pictures/ seconds [random]
Where:
/home/folder/pictures/ is the directory where are wallpapers
seconds is how much time the system will wait between wallpaper switching
random (optional) use it only if you want wallpaper random switching
<<lessIt requires only java runtime environment (JRE) and gconftool-2.
Usage:
java Wchange /home/folder/pictures/ seconds [random]
Where:
/home/folder/pictures/ is the directory where are wallpapers
seconds is how much time the system will wait between wallpaper switching
random (optional) use it only if you want wallpaper random switching
Download (0.003MB)
Added: 2007-03-29 License: GPL (GNU General Public License) Price:
940 downloads
FZoom 1.0.1
FZoom is a fancy zoom. more>>
FancyZoom is a fancy zoom. Actually it is not really that fancy.
I was surfing the net on my machine at home (equipped with a 14 inch monitor) and some of the icons were just too small to be interpreted into something recognizable by my strained eyes and thus FancyZoom was born.
<<lessI was surfing the net on my machine at home (equipped with a 14 inch monitor) and some of the icons were just too small to be interpreted into something recognizable by my strained eyes and thus FancyZoom was born.
Download (0.039MB)
Added: 2005-09-18 License: GPL (GNU General Public License) Price:
840 downloads
Alan 1.0
Alan project is a Turing machine implementation. more>>
Alan project is a Turing machine implementation.
Alan is an implementation of a Turing machine for educational purposes.
It was created as a programing project at the University of Aplied Sciences Rosenheim.
Features include an easy-to-use GUI and a reusable Turing Machine component. Additionally, Alan contains many example programs for the Turing machine.
<<lessAlan is an implementation of a Turing machine for educational purposes.
It was created as a programing project at the University of Aplied Sciences Rosenheim.
Features include an easy-to-use GUI and a reusable Turing Machine component. Additionally, Alan contains many example programs for the Turing machine.
Download (0.37MB)
Added: 2006-10-25 License: GPL (GNU General Public License) Price:
1095 downloads
gonxical 1.0
gonxical provides a Gnome (GTK+) theme. more>>
gonxical provides a Gnome (GTK+) theme.
This theme is based on the Gonx project.
The Gonx project is used to create the user interface of the successor of the Be OS.
<<lessThis theme is based on the Gonx project.
The Gonx project is used to create the user interface of the successor of the Be OS.
Download (0.021MB)
Added: 2007-01-26 License: GPL (GNU General Public License) Price:
1001 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 fcp 1.0 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