webconverger 2.12 without flash
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 304
Webconverger 2.29
Webconverger project is an evolution of the hybrid client for deployments in places like offices or Internet cafes. more>>
Webconverger project is an evolution of the hybrid client for deployments in places like offices or Internet cafes where only Web applications are used.
Unlike thin or hybrid clients, Webconverger is faster and more responsive by providing a Web browser that runs locally.
Main features:
- Ideal just for Web applications
- Free & open software
- Low system requirements
- Good security
- Painless to deploy and setup
- Features a Web standards compliant browser
- Cost effective
- Does not require registration or accounts
- Flash and a PDF viewer installed by default
- Easy for new users to learn and use
- Low maintenance costs
- Long term support
Enhancements:
- The latest security updates to Iceweasel (Firefox) rebuild 2.0.0.6 have been applied.
- Previous versions of Webconverger will upgrade nonetheless with somewhat delayed startups.
<<lessUnlike thin or hybrid clients, Webconverger is faster and more responsive by providing a Web browser that runs locally.
Main features:
- Ideal just for Web applications
- Free & open software
- Low system requirements
- Good security
- Painless to deploy and setup
- Features a Web standards compliant browser
- Cost effective
- Does not require registration or accounts
- Flash and a PDF viewer installed by default
- Easy for new users to learn and use
- Low maintenance costs
- Long term support
Enhancements:
- The latest security updates to Iceweasel (Firefox) rebuild 2.0.0.6 have been applied.
- Previous versions of Webconverger will upgrade nonetheless with somewhat delayed startups.
Download (308.5MB)
Added: 2007-08-08 License: DFSG approved Price:
808 downloads
Other version of Webconverger
License:GPL (GNU General Public License)
GD::Convert 2.12
GD::Convert is a Perl module with additional output formats for GD. more>>
GD::Convert is a Perl module with additional output formats for GD.
SYNOPSIS
use GD;
use GD::Convert qw(gif=gif_netpbm newFromGif=newFromGif_imagemagick wbmp);
# or:
require GD::Convert;
import GD::Convert;
...
$gd->ppm;
$gd->xpm;
$gd->gif;
$gd->wbmp;
...
$gd = GD::Image->newFromPpmData(...);
$gd = GD::Image->newFromGif(...);
This module provides additional output methods for the GD module: ppm, xpm, wbmp, gif_netpbm and gif_imagemagick, and also additional constructors: newFromPpm, newFromPpmData, newFromGif_netpbm, newFromGifData_netpbm, newFromGif_imagemagick, newFromGifData_imagemagick.
The new methods go into the GD namespace.
For convenience, it is possible to set shorter names for the gif, newFromGif and newFromGifData methods by providing one of the following strings in the import list:
gif=gif_netpbm
newFromGif=newFromGif_netpbm
newFromGifData=newFromGifData_netpbm
Use external commands from netpbm to load and create GIF images.
gif=gif_imagemagick
newFromGif=newFromGif_imagemagick
newFromGifData=newFromGifData_imagemagick
Use external commands from imagemagick to load and create GIF images.
gif=any
newFromGif=any
newFromGifData=any
Use any of the above methods to load and create GIF images.
wbmp
Create wbmp images. Only necessary for GD before version 1.26, but it does not hurt if it is included with newer GD versions.
The new methods and constructors:
$ppmdata = $image->ppm
Take a GD image and return a string with a PPM file as its content.
$xpmdata = $image->xpm
Take a GD image and return a string with a XPM file as its content.
$gifdata = $image->gif_netpbm([...])
Take a GD image and return a string with a GIF file as its content. The conversion will use the ppmtogif binary from netpbm. Make sure that ppmtogif is actually in your PATH. If you specify gif=gif_netpbm in the use line, then you can use the method name gif instead.
The gif_netpbm handles the optional parameter -transparencyhack. If set to a true value, a transparent GIF file will be produced. Note that this will not work if the transparent color occurs also as a normal color.
$gifdata = $image->gif_imagemagick
This is the same as gif_netpbm, instead it is using the convert program of ImageMagick.
$image = GD::Image->newFromPpm($file, [$truecolor])
Create a GD image from the named ppm file or filehandle reference. Only raw ppm files (signature P6) are supported.
$image = GD::Image->newFromPpmData($data, [$truecolor])
Create a GD image from the data string containing ppm data. Only raw ppm files are supported.
$image = GD::Image->newFromGif_netpbm($file, [$truecolor]);
Create a GD image from the named file or filehandle reference using external netpbm programs.
$image = GD::Image->newFromGifData_netpbm($file, [$truecolor]);
Create a GD image from the data string using external netpbm programs.
$image = GD::Image->newFromGif_imagemagick($file, [$truecolor]);
Create a GD image from the named file or filehandle reference using external ImageMagick programs.
$image = GD::Image->newFromGifData_imagemagick($file, [$truecolor]);
Create a GD image from the data string using external ImageMagick programs.
You can set the variable $GD::Convert::DEBUG to a true value to get some information about external commands used while converting.
<<lessSYNOPSIS
use GD;
use GD::Convert qw(gif=gif_netpbm newFromGif=newFromGif_imagemagick wbmp);
# or:
require GD::Convert;
import GD::Convert;
...
$gd->ppm;
$gd->xpm;
$gd->gif;
$gd->wbmp;
...
$gd = GD::Image->newFromPpmData(...);
$gd = GD::Image->newFromGif(...);
This module provides additional output methods for the GD module: ppm, xpm, wbmp, gif_netpbm and gif_imagemagick, and also additional constructors: newFromPpm, newFromPpmData, newFromGif_netpbm, newFromGifData_netpbm, newFromGif_imagemagick, newFromGifData_imagemagick.
The new methods go into the GD namespace.
For convenience, it is possible to set shorter names for the gif, newFromGif and newFromGifData methods by providing one of the following strings in the import list:
gif=gif_netpbm
newFromGif=newFromGif_netpbm
newFromGifData=newFromGifData_netpbm
Use external commands from netpbm to load and create GIF images.
gif=gif_imagemagick
newFromGif=newFromGif_imagemagick
newFromGifData=newFromGifData_imagemagick
Use external commands from imagemagick to load and create GIF images.
gif=any
newFromGif=any
newFromGifData=any
Use any of the above methods to load and create GIF images.
wbmp
Create wbmp images. Only necessary for GD before version 1.26, but it does not hurt if it is included with newer GD versions.
The new methods and constructors:
$ppmdata = $image->ppm
Take a GD image and return a string with a PPM file as its content.
$xpmdata = $image->xpm
Take a GD image and return a string with a XPM file as its content.
$gifdata = $image->gif_netpbm([...])
Take a GD image and return a string with a GIF file as its content. The conversion will use the ppmtogif binary from netpbm. Make sure that ppmtogif is actually in your PATH. If you specify gif=gif_netpbm in the use line, then you can use the method name gif instead.
The gif_netpbm handles the optional parameter -transparencyhack. If set to a true value, a transparent GIF file will be produced. Note that this will not work if the transparent color occurs also as a normal color.
$gifdata = $image->gif_imagemagick
This is the same as gif_netpbm, instead it is using the convert program of ImageMagick.
$image = GD::Image->newFromPpm($file, [$truecolor])
Create a GD image from the named ppm file or filehandle reference. Only raw ppm files (signature P6) are supported.
$image = GD::Image->newFromPpmData($data, [$truecolor])
Create a GD image from the data string containing ppm data. Only raw ppm files are supported.
$image = GD::Image->newFromGif_netpbm($file, [$truecolor]);
Create a GD image from the named file or filehandle reference using external netpbm programs.
$image = GD::Image->newFromGifData_netpbm($file, [$truecolor]);
Create a GD image from the data string using external netpbm programs.
$image = GD::Image->newFromGif_imagemagick($file, [$truecolor]);
Create a GD image from the named file or filehandle reference using external ImageMagick programs.
$image = GD::Image->newFromGifData_imagemagick($file, [$truecolor]);
Create a GD image from the data string using external ImageMagick programs.
You can set the variable $GD::Convert::DEBUG to a true value to get some information about external commands used while converting.
Download (0.010MB)
Added: 2006-08-10 License: GPL (GNU General Public License) Price:
1173 downloads
Computer Basics Whats a USB Flash Drive 1.0
Computer Basics: What is a USB Flash Drive and How They Work in Plain English - another easy video computer lesson from Worth Godwin uses simple expla... more>> <<less
Download (77118KB)
Added: 2009-04-09 License: Freeware Price: Free
198 downloads
libgconf-java 2.12.6
Java-GNOME is a set of Java bindings for GNOME and GTK libraries, so GNOME applications can be written in Java. more>>
Java-GNOME is a set of Java bindings for GNOME and GTK libraries, so GNOME applications can be written in Java.
Java-GNOME is implemented as a JNI layer that delegates the Java calls out to the underlying C library.
Installation:
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
<<lessJava-GNOME is implemented as a JNI layer that delegates the Java calls out to the underlying C library.
Installation:
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
Download (0.33MB)
Added: 2007-01-07 License: GPL (GNU General Public License) Price:
1020 downloads
PicoStreamer 2.2
PicoStreamer is a complete server for live audio/video streaming. more>>
PicoStreamer is a complete server for live audio/video streaming. It can stream MP3, AAC, and video live using Flash FLV. PicoStreamer does not require any Flash server. It only needs a Web server with Perl and PHP. It requires neither expensive dedicated servers nor compilation on the target machine.
A source client (for Win32) is included. A management/playing framework written in PHP makes PicoStreamer simple to use. The PicoIcy component acts as a local shoutcast server emulator, so you can use your preferred shoutcast source client to stream or stream Flash format directly from the Web.
Enhancements:
- Added live flash audio/video streaming support.
- Added Flash encoder.
- Added Flash player also for mp3.
- Added Brasilian (PT) language.
- Added dynamic playlist chooser.
- Added content-length managing.
- PicoIcy now in tray-bar.
- Fixed list blocking on weird chars.
- Removed php ctype_digits dependence.
- Removed perl html::entitites dependence.
- Fixed many minor bugs.
<<lessA source client (for Win32) is included. A management/playing framework written in PHP makes PicoStreamer simple to use. The PicoIcy component acts as a local shoutcast server emulator, so you can use your preferred shoutcast source client to stream or stream Flash format directly from the Web.
Enhancements:
- Added live flash audio/video streaming support.
- Added Flash encoder.
- Added Flash player also for mp3.
- Added Brasilian (PT) language.
- Added dynamic playlist chooser.
- Added content-length managing.
- PicoIcy now in tray-bar.
- Fixed list blocking on weird chars.
- Removed php ctype_digits dependence.
- Removed perl html::entitites dependence.
- Fixed many minor bugs.
Download (0.33MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1135 downloads
Data Crow 2.12 / 3.0 Alpha 2
Data Crow retrieves information from the web for you. more>>
Always wanted to manage all your collections in one product? You want a product you can customize to your needs? Your search ends here! Using Data Crow allows you to create a huge database containing all your collected items. A lot of work? No! Data Crow project retrieves information from the web for you. Including front covers, screenshots and links to the online information. Follow the easy installation of this free product and see for yourself.
Main features:
- Skinnable UI
- Internal help system (activated by the F1 key)
- Nice-looking and easy-to-use interface
- Highly customizable!
- Keeping track of who borrowed what
- Software registration
- Audio CD registration
- Music files registration
- Movie registration
- Book registration
- Reporting Tool (Html, Pdf, Text)
- Amazon.com support (http://www.amazon.com)
- Imdb support (http://www.imdb.com)
- Freedb support (http://www.freedb.org)
- Imports information from CD or your hard disk
- Extracts information from music files (OGG, FLAC, APE and MP3 files)
- Supports parsing for DivX, Xvid, ASF, MKV, OGM, RIFF, MOV, IFO, VOB and Mpeg video
- Add your own, rename, disable and order fields
- Backup and Restore of the database
- SQL query tool, for expert users
- Platform-independent
- Internal HSQL database
Whats New in 2.12 Stable Release:
- Some changes and fixes were made and the overall quality of the product was improved.
Whats New in 3.0 Alpha 2 Development Release:
- General fixes were made and missing functionality was added.
<<lessMain features:
- Skinnable UI
- Internal help system (activated by the F1 key)
- Nice-looking and easy-to-use interface
- Highly customizable!
- Keeping track of who borrowed what
- Software registration
- Audio CD registration
- Music files registration
- Movie registration
- Book registration
- Reporting Tool (Html, Pdf, Text)
- Amazon.com support (http://www.amazon.com)
- Imdb support (http://www.imdb.com)
- Freedb support (http://www.freedb.org)
- Imports information from CD or your hard disk
- Extracts information from music files (OGG, FLAC, APE and MP3 files)
- Supports parsing for DivX, Xvid, ASF, MKV, OGM, RIFF, MOV, IFO, VOB and Mpeg video
- Add your own, rename, disable and order fields
- Backup and Restore of the database
- SQL query tool, for expert users
- Platform-independent
- Internal HSQL database
Whats New in 2.12 Stable Release:
- Some changes and fixes were made and the overall quality of the product was improved.
Whats New in 3.0 Alpha 2 Development Release:
- General fixes were made and missing functionality was added.
Download (16.4MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
887 downloads
Capacitor Converter 1.0
Capacitor Converter is an extension which converts capacitor values. more>>
Capacitor Converter is an extension which converts capacitor values.
Easy to use capacitor converter. Converts between pF, nF and uF in a flash. For those of you who didnt know you can make the toolbar disappear.
Just right-click(Windows) or ctrl+click(one button Macs) beside the address bar and select Capacitor Converter to make it disappear.
<<lessEasy to use capacitor converter. Converts between pF, nF and uF in a flash. For those of you who didnt know you can make the toolbar disappear.
Just right-click(Windows) or ctrl+click(one button Macs) beside the address bar and select Capacitor Converter to make it disappear.
Download (0.002MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
603 downloads
GNOPPIX 2.12 beta1
Gnoppix is a linux live cd based upon Ubuntu. more>>
Gnoppix is a linux live cd based upon Ubuntu.
It can be compared to Knoppix but Gnoppix uses GNOME as desktop environment.
The GNOPPIX project proudly presents the first beta release of version 2.12 of the GNOPPIX linux live cd.
This version comes with Gnome 2.12, updates and lot of improvements. Gnoppix 2.12 beta1 comes with four languages; German, English French and Hindi.
<<lessIt can be compared to Knoppix but Gnoppix uses GNOME as desktop environment.
The GNOPPIX project proudly presents the first beta release of version 2.12 of the GNOPPIX linux live cd.
This version comes with Gnome 2.12, updates and lot of improvements. Gnoppix 2.12 beta1 comes with four languages; German, English French and Hindi.
Download (569MB)
Added: 2005-09-07 License: GPL (GNU General Public License) Price:
1517 downloads
Tellico 1.2.12
Tellico is a collection manager for keeping track of your books, bibliographies, videos, music, comic books. more>>
Tellico is a collection manager for keeping track of your books, bibliographies, videos, music, comic books, coins, stamps, trading cards, wines, or any custom items.
Tellico project supports any number of user-defined fields, of eleven different types: text, paragraph, list, year, checkbox, URL, tables of one or two columns, images, dates, and combinations.
Tellico imports Bibtex, Bibtexml, MODS, RIS, and CSV and exports to Bibtex, Bibtexml, CSV, HTML, and PilotDB. It offers grouping, view filtering, and searching.
Tellico can also import data from Amazon.com and IMDb.com, along with z39.50 servers, CDDB data, audio files, and Alexandria libraries.
<<lessTellico project supports any number of user-defined fields, of eleven different types: text, paragraph, list, year, checkbox, URL, tables of one or two columns, images, dates, and combinations.
Tellico imports Bibtex, Bibtexml, MODS, RIS, and CSV and exports to Bibtex, Bibtexml, CSV, HTML, and PilotDB. It offers grouping, view filtering, and searching.
Tellico can also import data from Amazon.com and IMDb.com, along with z39.50 servers, CDDB data, audio files, and Alexandria libraries.
Download (4.5MB)
Added: 2007-07-05 License: GPL (GNU General Public License) Price:
844 downloads
Quick Lounge Applet 2.12.4
The Quick Lounge applet is an applet for the GNOME Panel. more>>
Quick Lounge applet is an applet for the GNOME Panel. Applets are little applications embedded in the Panel.
With this applet you can organize your preferred applications in a single place.
You can add spaces between applications, they can be used to group together applications with similar tasks.
When the applet size exceeds the available space a menu containing the remaing launchers is created.
The menu can be accessed pressing the arrow button located at the end of the applet. The menu displays spaces as separators.
<<lessWith this applet you can organize your preferred applications in a single place.
You can add spaces between applications, they can be used to group together applications with similar tasks.
When the applet size exceeds the available space a menu containing the remaing launchers is created.
The menu can be accessed pressing the arrow button located at the end of the applet. The menu displays spaces as separators.
Download (0.58MB)
Added: 2007-01-17 License: GPL (GNU General Public License) Price:
1010 downloads
Wx::ActiveX::Flash 0.05
Wx::ActiveX::Flash is an ActiveX interface for Shockwave Flash. more>>
Wx::ActiveX::Flash is an ActiveX interface for Shockwave Flash.
SYNOPSIS
use Wx::ActiveX::Flash ;
my $flash = Wx::ActiveX::Flash->new( $parent , -1 , wxDefaultPosition , wxDefaultSize );
$flash->LoadMovie(0,"file:///F:/swf/test.swf") ;
$flash->Play ;
EVT_ACTIVEX($this, $flash ,"FSCommand", sub{
my ( $this , $evt ) = @_ ;
my $cmd = $evt->{command} ;
my $args = $evt->{args} ;
...
}) ;
ActiveX control for Shockwave Flash. The control comes from Wx::ActiveX, and all methods/events from there exit here too.
** You will need to already have the Flash player installed.
new ( PARENT , ID , POS , SIZE )
This will create and return the Flash object.
<<lessSYNOPSIS
use Wx::ActiveX::Flash ;
my $flash = Wx::ActiveX::Flash->new( $parent , -1 , wxDefaultPosition , wxDefaultSize );
$flash->LoadMovie(0,"file:///F:/swf/test.swf") ;
$flash->Play ;
EVT_ACTIVEX($this, $flash ,"FSCommand", sub{
my ( $this , $evt ) = @_ ;
my $cmd = $evt->{command} ;
my $args = $evt->{args} ;
...
}) ;
ActiveX control for Shockwave Flash. The control comes from Wx::ActiveX, and all methods/events from there exit here too.
** You will need to already have the Flash player installed.
new ( PARENT , ID , POS , SIZE )
This will create and return the Flash object.
Download (0.053MB)
Added: 2007-01-05 License: Perl Artistic License Price:
1033 downloads
Blackjack Flash 2
Theres a reason why blackjack is the most popular casino game today, both in online and land-based casinos across the globe. The enticing combinatio... more>> <<less
Download (160KB)
Added: 2009-04-13 License: Freeware Price: Free
198 downloads
Sitellite Content Management System 4.2.12
Sitellite is an advanced Web-based Content Management System. more>>
Sitellite Content Management System is an advanced Web-based Content Management System (CMS) and PHP content publishing framework.
Main features:
Cross-Platform WYSIWYG editor
- Sitellite lowers the learning curve of Content Management to the point of being Grandma-friendly, without sacrificing standards-compliance.
"Undo" button!
- Never lose a change or delete a page by accident again! Sitellite keeps every change you make in its automatic version control system.
Most advanced Access Control in PHP
- Sitellite makes it as easy as it should be to implement multi-role privileges into your web site.
Most advanced development model in PHP
- At the core of Sitellite are two Enterprise-scale components: The Sitellite Application Framework and the Sitellite Content Server. These make Sitellites power and flexibility unparallelled in the PHP world.
Built-in multi-lingual help system
- Users know how important help is, and so do we! Thats why we built into Sitellite a top-notch help system that add-on developers can also take advantage of.
Enhancements:
- IE7 is supported.
- Form spam abuse is prevented with CAPTCHA, blacklists, etc.
- Integration with Snipshot.com was added for image editing.
- Coral cache is used for traffic surge protection.
- File download statistics are available.
- The cache is automatically flushed to keep the site cache in sync.
- Google Maps and Google Site Maps were integrated.
- Many user interface improvements were made.
- SEO improvements were done, including more control over URLs.
- Many bugs were fixed.
<<lessMain features:
Cross-Platform WYSIWYG editor
- Sitellite lowers the learning curve of Content Management to the point of being Grandma-friendly, without sacrificing standards-compliance.
"Undo" button!
- Never lose a change or delete a page by accident again! Sitellite keeps every change you make in its automatic version control system.
Most advanced Access Control in PHP
- Sitellite makes it as easy as it should be to implement multi-role privileges into your web site.
Most advanced development model in PHP
- At the core of Sitellite are two Enterprise-scale components: The Sitellite Application Framework and the Sitellite Content Server. These make Sitellites power and flexibility unparallelled in the PHP world.
Built-in multi-lingual help system
- Users know how important help is, and so do we! Thats why we built into Sitellite a top-notch help system that add-on developers can also take advantage of.
Enhancements:
- IE7 is supported.
- Form spam abuse is prevented with CAPTCHA, blacklists, etc.
- Integration with Snipshot.com was added for image editing.
- Coral cache is used for traffic surge protection.
- File download statistics are available.
- The cache is automatically flushed to keep the site cache in sync.
- Google Maps and Google Site Maps were integrated.
- Many user interface improvements were made.
- SEO improvements were done, including more control over URLs.
- Many bugs were fixed.
Download (5.1MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
985 downloads
Multiplication Flash 1.1
Multiplication Flash (mFlash) is just a way to save the mess, bother, and expense of paper flashcards. more>>
Multiplication Flash short from mFlash is just a way to save the mess, bother, and expense of paper flashcards. And I think the kids enjoy the feedback and noises. Anything ypu can do to encourage, you know.
As mentioned above, you can turn of the sound ("good job" or "shucks" sort of sounds -- a few dozen different ones. You can choose to work on a particular number; for instance, pick "Number 7" if you are having trouble with your sevens. Or just leave the dropdown box on "All Numbers" if you would rather have random problems.
As far as basic usage goes -- you enter the number you think is the correct answer in the "Type Answer" box, then either hit the keyboard "Enter" key, or click the "Enter" Button. (The "Next" button in the above screenshot is a green Enter button that changes to a yellow Next button after a correct answer is given.)
Hitting the keyboard "Enter" after the Next button is displayed will also move you to the next problem.
<<lessAs mentioned above, you can turn of the sound ("good job" or "shucks" sort of sounds -- a few dozen different ones. You can choose to work on a particular number; for instance, pick "Number 7" if you are having trouble with your sevens. Or just leave the dropdown box on "All Numbers" if you would rather have random problems.
As far as basic usage goes -- you enter the number you think is the correct answer in the "Type Answer" box, then either hit the keyboard "Enter" key, or click the "Enter" Button. (The "Next" button in the above screenshot is a green Enter button that changes to a yellow Next button after a correct answer is given.)
Hitting the keyboard "Enter" after the Next button is displayed will also move you to the next problem.
Download (0.82MB)
Added: 2006-11-17 License: GPL (GNU General Public License) Price:
1079 downloads
GnomeLiveCd 2.12.0
The goal of this project is to create a LiveCD to demonstrate GNOME. more>>
The goal of this project is to create a LiveCD to demonstrate GNOME. The initial motivation was to be able to send a GNOME LiveCD to journalists and news agencies so that they can test and talk about GNOME without installing it, but others have expressed interest as well.
The infrastructure for this will be flexible, so that it can be easily customized and re-targetted- for example, to distribute a version with a custom splashscreen for a specific conference, to change the language for distribution by non-en_US gnome groups, or to change the software set to market to different groups (artists, developers, etc.)
<<lessThe infrastructure for this will be flexible, so that it can be easily customized and re-targetted- for example, to distribute a version with a custom splashscreen for a specific conference, to change the language for distribution by non-en_US gnome groups, or to change the software set to market to different groups (artists, developers, etc.)
Download (630MB)
Added: 2005-09-08 License: GPL (GNU General Public License) Price:
1508 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 webconverger 2.12 without flash 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