nexuiz 2.3
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 314
Nexuiz 2.3
Nexuiz is a fast-paced, chaotic, and intense multiplayer first-person shooter game. more>>
Nexuiz is a fast-paced, chaotic, and intense multiplayer first-person shooter game, focused on providing basic, old style deathmatch.
Nexuiz is extremely modder-friendly. Nexuiz is built on the power of the Darkplaces engine, which is a heavily modified version of the original Quake.
Darkplaces features realtime lighting and stencil shadows, bumpmapping, gloss, bloom, and totally rewritten network code that supports up to 64 players on a single server.
<<lessNexuiz is extremely modder-friendly. Nexuiz is built on the power of the Darkplaces engine, which is a heavily modified version of the original Quake.
Darkplaces features realtime lighting and stencil shadows, bumpmapping, gloss, bloom, and totally rewritten network code that supports up to 64 players on a single server.
Download (199.5MB)
Added: 2007-06-01 License: GPL (GNU General Public License) Price:
881 downloads
Tinyquizz 2.3
Tinyquizz is a deliberately simplistic tool to produce self-assessment quizzes. more>>
Tinyquizz project is a deliberately simplistic tool to produce self-assessment quizzes. Quizzes consist of a single entirely self-contained XHTML file. There is no need for a web server, PHP, database server, or e-learning platform to run them. A simple web browser is enough. It even fully works offline.
Quizzes produces by Tinyquizz can only be used for self-assessment because the answers are contained in the quizz file.
How does Tinyquizz work ?
Quizzes are written in XML, that is raw text with tags to delimit sections. For instance here is a question (tags are in bold):
< question>
< statement>You can cross when the light is < /statement>
< answer correct="no">Red< /answer>
< answer correct="yes">Green< /answer>
< /question>
Once you wrote the quizz you transform it with an XSLT processor or using the online transformer which does not require any installation.
Any basic text editor is ok to write Tinyquizz quizzes. However you may prefer to use a dedicated XML text editor such as Jaxe which can additionally ensure that the syntax is correct. Indeed you need to use the right tag at the right place
Enhancements:
- Input widgets are now locked once the result is displayed.
- A new reset button has been added.
- A new optional < justification > tag can now be added after each answer to provide the user with individualized feedback.
- Disc bullets are used for answers when there is no correct answer.
- New reference documentation is now available on the Web site as well as in the distribution.
<<lessQuizzes produces by Tinyquizz can only be used for self-assessment because the answers are contained in the quizz file.
How does Tinyquizz work ?
Quizzes are written in XML, that is raw text with tags to delimit sections. For instance here is a question (tags are in bold):
< question>
< statement>You can cross when the light is < /statement>
< answer correct="no">Red< /answer>
< answer correct="yes">Green< /answer>
< /question>
Once you wrote the quizz you transform it with an XSLT processor or using the online transformer which does not require any installation.
Any basic text editor is ok to write Tinyquizz quizzes. However you may prefer to use a dedicated XML text editor such as Jaxe which can additionally ensure that the syntax is correct. Indeed you need to use the right tag at the right place
Enhancements:
- Input widgets are now locked once the result is displayed.
- A new reset button has been added.
- A new optional < justification > tag can now be added after each answer to provide the user with individualized feedback.
- Disc bullets are used for answers when there is no correct answer.
- New reference documentation is now available on the Web site as well as in the distribution.
Download (0.015MB)
Added: 2006-04-10 License: GPL (GNU General Public License) Price:
1292 downloads
Ansel 2.3
Ansel is a picture gallery for web sites. more>>
Ansel is a picture gallery for web sites. It is a high quality, information-rich photo gallery designed to handle large numbers of images and albums. Ansel stores all its images in a database, making it both fast and flexible.
Ansel is similar in spirit to Shutterfly and Yahoo pictures, but does not place restrictions on image size. It was named after Ansel Adams, the famous twentieth century naturalist photographer of the
American West.
Ansel is free; it carries a BSD liscence which allows many different types of usage including commercial ones. However along with this fact comes some caveats. It is designed to be easy to use, but not necessarily easy to setup. In fact its a bit advanced in that department.
Ansel requires a webserver with the PHP/PHP-MySQL engine, and a running MySQL database. You may need to know the basics of PHP, MySQL, and Apache to get things running.
I have tried to make Ansel use relative paths instead of absolute ones to make it play nicely with the rest of your site and to allow multiple instances.
Your system must have ImageMagic installed, specifically mogrify (named from Calvin&Hobbes I believe) and montage. These are used for image manipulation and are generally available by default on Linux systems.
Apache
Ansel allows images to be uploaded to the gallery remotely, which means potentially anyone can add pictures. In Ansel 2.0 passwords are used to protect pictures in an album. Security is by-album, not by-picture, which shouldnt be too much of a problem.
However, you must serve this site over HTTPS to safely encrypt passwords sent from browsers. A 403 password box sends usernames and passwords in plain text, and only by running the site over encrypted channels (like https) can security be called anything close to safe. Apache has an excellent and free mod_ssl which will run https.
MySQL
You have to create the ansel database in MySQL and give select and update permissions to a user. Ones that will work off the bat would be:
mysql> grant select,update,insert on ansel.* to apache@localhost;
To create the database do the following as root:
$ mysqladmin create ansel
$ mysql ansel < ansel.sql
The ansel.sql file is contained in the ansel/sql directory.
PHP
I believe Ansel expects to have magicquotes turned off. This affects how quotes are returned from the database. You should change the resource limits to allow large picture uploads. These are for my Linux RedHat system (Built with Rocks 3.1), the exact locations of these file may vary for you.
In File /etc/httpd/conf.d/php.conf:
LimitRequestBody 16777216
In File /etc/php.ini:
; Maximum size of POST data that PHP will accept.
post_max_size = 60M
; Maximum allowed size for uploaded files.
upload_max_filesize = 20M
Enhancements:
- Security was improved by removing the requirement for PHPs register_globals setting.
- Minor features including a more dynamic gallery home page were added.
<<lessAnsel is similar in spirit to Shutterfly and Yahoo pictures, but does not place restrictions on image size. It was named after Ansel Adams, the famous twentieth century naturalist photographer of the
American West.
Ansel is free; it carries a BSD liscence which allows many different types of usage including commercial ones. However along with this fact comes some caveats. It is designed to be easy to use, but not necessarily easy to setup. In fact its a bit advanced in that department.
Ansel requires a webserver with the PHP/PHP-MySQL engine, and a running MySQL database. You may need to know the basics of PHP, MySQL, and Apache to get things running.
I have tried to make Ansel use relative paths instead of absolute ones to make it play nicely with the rest of your site and to allow multiple instances.
Your system must have ImageMagic installed, specifically mogrify (named from Calvin&Hobbes I believe) and montage. These are used for image manipulation and are generally available by default on Linux systems.
Apache
Ansel allows images to be uploaded to the gallery remotely, which means potentially anyone can add pictures. In Ansel 2.0 passwords are used to protect pictures in an album. Security is by-album, not by-picture, which shouldnt be too much of a problem.
However, you must serve this site over HTTPS to safely encrypt passwords sent from browsers. A 403 password box sends usernames and passwords in plain text, and only by running the site over encrypted channels (like https) can security be called anything close to safe. Apache has an excellent and free mod_ssl which will run https.
MySQL
You have to create the ansel database in MySQL and give select and update permissions to a user. Ones that will work off the bat would be:
mysql> grant select,update,insert on ansel.* to apache@localhost;
To create the database do the following as root:
$ mysqladmin create ansel
$ mysql ansel < ansel.sql
The ansel.sql file is contained in the ansel/sql directory.
PHP
I believe Ansel expects to have magicquotes turned off. This affects how quotes are returned from the database. You should change the resource limits to allow large picture uploads. These are for my Linux RedHat system (Built with Rocks 3.1), the exact locations of these file may vary for you.
In File /etc/httpd/conf.d/php.conf:
LimitRequestBody 16777216
In File /etc/php.ini:
; Maximum size of POST data that PHP will accept.
post_max_size = 60M
; Maximum allowed size for uploaded files.
upload_max_filesize = 20M
Enhancements:
- Security was improved by removing the requirement for PHPs register_globals setting.
- Minor features including a more dynamic gallery home page were added.
Download (0.034MB)
Added: 2005-09-27 License: GPL (GNU General Public License) Price:
1487 downloads
jMemorize 1.2.3
jMemorize manages your whole learning progress and features statistics, categories and a visually appealing. more>>
jMemorize is a Java application that manages your flashcards by the famous Leitner system and makes memorizing facts not only more efficient but also more fun. jMemorize manages your whole learning progress and features statistics, categories and a visually appealing and intuitive interface.
The basic idea is to divide the cards into different decks depending on the difficulty they present to you. This is done by repetitive quizzes in which you try to answer the question out of your mind. Every time you know the correct answer to a card, it is put on the next higher card deck. If you fail at a card, it is put back to the starting deck.
This system is combined with time schedules. Cards that have been known, are considered to be learned until a specific expiration date has passed. The higher the deck, the more far away the expiration date is set.
For example might a card that has been successfully checked for the first time be scheduled to be relearned one day later again, while a card that has been correctly answered three times in a row might be considered as learned for about week. As long as a card is considered learned, it wont appear in learn sessions.
As a whole, this system manages your personal learn sessions and allows you to focus on learning, while it automatically decides which facts should be learned right now to make the most out of your time.
Main features:
- Create, edit, remove and reset cards.
- Arrange cards by creating card categories.
- Have a visual representation of your current learn situation.
- Customize your learn session setting in nearly every way imaginable. This includes the abilities (among others) to..
- choose which category to learn.
- choose to learn only new cards, expired cards or all cards.
- choose card/time limits.
- choose whether you want learn cards in normal mode, with flipped card sides or randomly flipped card sides.
- choose from different preset time schedules or enter you own custom time schedule.
- Search through your cards with the find tool.
- And much more..
<<lessThe basic idea is to divide the cards into different decks depending on the difficulty they present to you. This is done by repetitive quizzes in which you try to answer the question out of your mind. Every time you know the correct answer to a card, it is put on the next higher card deck. If you fail at a card, it is put back to the starting deck.
This system is combined with time schedules. Cards that have been known, are considered to be learned until a specific expiration date has passed. The higher the deck, the more far away the expiration date is set.
For example might a card that has been successfully checked for the first time be scheduled to be relearned one day later again, while a card that has been correctly answered three times in a row might be considered as learned for about week. As long as a card is considered learned, it wont appear in learn sessions.
As a whole, this system manages your personal learn sessions and allows you to focus on learning, while it automatically decides which facts should be learned right now to make the most out of your time.
Main features:
- Create, edit, remove and reset cards.
- Arrange cards by creating card categories.
- Have a visual representation of your current learn situation.
- Customize your learn session setting in nearly every way imaginable. This includes the abilities (among others) to..
- choose which category to learn.
- choose to learn only new cards, expired cards or all cards.
- choose card/time limits.
- choose whether you want learn cards in normal mode, with flipped card sides or randomly flipped card sides.
- choose from different preset time schedules or enter you own custom time schedule.
- Search through your cards with the find tool.
- And much more..
Download (3.1MB)
Added: 2007-07-22 License: GPL (GNU General Public License) Price:
918 downloads
PlonePAS 2.3
PlonePAS is a product which allows the use of the PluggableAuthService in Plone. more>> <<less
Download (0.065MB)
Added: 2007-04-14 License: GPL (GNU General Public License) Price:
923 downloads
Emilda 1.2.3
Emilda is an Integrated Library System that features an OPAC. more>>
Emilda is an Integrated Library System that features an OPAC, circulation and administration functions, Z39.50 capabilities, and 100% MARC compatibility.
MARC compatibility is achieved using the Zebra server from Indexdata in conjunction with MySQL. Emilda is mainly written in PHP, but Perl scripts exist for MARC manipulation and shell interaction.
<<lessMARC compatibility is achieved using the Zebra server from Indexdata in conjunction with MySQL. Emilda is mainly written in PHP, but Perl scripts exist for MARC manipulation and shell interaction.
Download (0.67MB)
Added: 2005-06-30 License: GPL (GNU General Public License) Price:
1578 downloads
Synaesthesia 2.3
Synaesthesia graphically represents music in real time as a shimmering field of fog and glowing lines. more>>
Synaesthesia is a program that gives a graphical accompanyment to music. Anyone can make some pretty piece of graphics that flashes in time to the music, Synaesthesia manages a wee bit more sophistication.
The screenshots to the right dont really do justice to the display, which writhes in tight synchrony to the music you play.
Synaesthesias display combines information about the frequency, location and diffuseness of sound.
The display is sufficiently detailed to let you distinguish several individual instruments, singers, or special effects on screen by their location, shape and color, and sufficiently fast to distinguish individual drum beats and notes.
Synaesthesia runs under Linux, FreeBSD and Windows.
Main features:
- Displays sound from CD or line input, piped from another program, or through EsounD.
- Display incorporates stereo and surround sound information.
- Can be used as a CD player
- Svgalib, X-Windows and SDL support
Synaesthesia works well in tandem with EsounD based mp3 players, such as XMMS.
Synaesthesia is free software distributed under GPL.
<<lessThe screenshots to the right dont really do justice to the display, which writhes in tight synchrony to the music you play.
Synaesthesias display combines information about the frequency, location and diffuseness of sound.
The display is sufficiently detailed to let you distinguish several individual instruments, singers, or special effects on screen by their location, shape and color, and sufficiently fast to distinguish individual drum beats and notes.
Synaesthesia runs under Linux, FreeBSD and Windows.
Main features:
- Displays sound from CD or line input, piped from another program, or through EsounD.
- Display incorporates stereo and surround sound information.
- Can be used as a CD player
- Svgalib, X-Windows and SDL support
Synaesthesia works well in tandem with EsounD based mp3 players, such as XMMS.
Synaesthesia is free software distributed under GPL.
Download (2.3MB)
Added: 2005-09-09 License: GPL (GNU General Public License) Price:
1506 downloads
JuK 2.3.4
JuK is a Jukebox and music manager for KDE. more>>
JuK is part of the KDE Multimedia package. JuK packages are distributed with basically all current Linux and many Unix distributions.
Main features:
An easy to use, playlist and metadata focused interface with several playlist types:
- Collection List where the entire database of music is shown and automatically updated based on folders the user has indicated contain their music collection
- Search Playlists that allow for powerful combinations of search criteria to produce dynamically updated playlists
- Dynamic Lists which are produced by using multiple selection in the playlist selector and are a union of two or more playlists
- Folder Playlists which represent a single folder in the file system and are updated automatically based on its contents
- History Playlist which stores a history of the what the user has played
- Play Queue, an enhancement of the popular Play Next funtionality of previous versions that enables a manegable upcoming queue of items to be played
Player and tag editor for several audio formats:
- MP3 (MPEG Layer 3 Audio)
- Ogg Vorbis
- FLAC (Free Lossless Audio Codec)
- MPC (MusePack)
Multiple audio output backends:
- aRts (Default)
- GStreamer 0.8
- aKode
- Inline search for quick filtering of the currently visible items
- MusicBrainz integration for file identification on over the internet
- File renamer that renames files based on the tag content
- A powerful tag editor that works seemlessly with all supported music formats
- CD burning support via the popular K3b tool
- Visually attractive, but unobtrusive track announcements
- A Now Playing heads-up style title bar featuring the album cover, links to show more from the playing artist or album and a brief history of previously played items
- Cover art management via Google Image Search
- Random play including Album Random Play for randomly playing complete albums
<<lessMain features:
An easy to use, playlist and metadata focused interface with several playlist types:
- Collection List where the entire database of music is shown and automatically updated based on folders the user has indicated contain their music collection
- Search Playlists that allow for powerful combinations of search criteria to produce dynamically updated playlists
- Dynamic Lists which are produced by using multiple selection in the playlist selector and are a union of two or more playlists
- Folder Playlists which represent a single folder in the file system and are updated automatically based on its contents
- History Playlist which stores a history of the what the user has played
- Play Queue, an enhancement of the popular Play Next funtionality of previous versions that enables a manegable upcoming queue of items to be played
Player and tag editor for several audio formats:
- MP3 (MPEG Layer 3 Audio)
- Ogg Vorbis
- FLAC (Free Lossless Audio Codec)
- MPC (MusePack)
Multiple audio output backends:
- aRts (Default)
- GStreamer 0.8
- aKode
- Inline search for quick filtering of the currently visible items
- MusicBrainz integration for file identification on over the internet
- File renamer that renames files based on the tag content
- A powerful tag editor that works seemlessly with all supported music formats
- CD burning support via the popular K3b tool
- Visually attractive, but unobtrusive track announcements
- A Now Playing heads-up style title bar featuring the album cover, links to show more from the playing artist or album and a brief history of previously played items
- Cover art management via Google Image Search
- Random play including Album Random Play for randomly playing complete albums
Download (6.1MB)
Added: 2007-06-08 License: GPL (GNU General Public License) Price:
881 downloads
yEd 2.3.1
yEd is a powerful graph editor that is written entirely in the Java programming language. more>>
yEd is a powerful graph editor that is written entirely in the Java programming language. It can be used to quickly generate drawings and apply automatic layouts to all kinds of diagrams and networks. yEd is available as a free download with unrestricted functionality!
yEd makes use of the yFiles library which is a Java class library for viewing, editing, optimizing, drawing, and animating diagrams, networks, and other graph-like structures.
yEd is built using 100% lightweight Swing components, i.e., it will run on any platform for which there is a suitable Runtime Environment available.
Main features:
yEd can be used to automatically layout complex graph structures. Several highly sophisticated layout algorithms have been implemented and ship with yEd. They can be used to either arrange the items fully automatically or support the user during a manual layout.
- New in version 2.3.1: Interactive Hierarchical Layout can be used to interactively layout hierarchical or pseudo-hierarchical scenarios.
- Hierarchical Layout can be used to perfectly visualize hierarchical or pseudo-hierarchical scenarios.
- Orthogonal Layout produces clear representations of complex networks.
- Organic Layout and Smart Organic Layout produce clear representations of complex diagrams like ER-diagrams, UML diagrams and many more.
- Organic Edge Router reroutes edges in existing drawings organically.
- Orthogonal Edge Router can reroute edges in existing drawings orthogonally.
- Circular Layout portrays interconnected ring and star topologies perfectly.
- Tree Layout can be used to visualize tree-like structures in many different ways.
- New in version 2.3.1: The tree layout algorithms can also be used on graphs that are almost like trees.
yEd enables users to create groups of nodes. These groups can be visualized and nested to virtually any degree. Of course the new layout algorithms support this type of visualization perfectly. Using this feature complex structures can be visualized and laid out even clearer than before.
Another one of yEds most powerful features is its ability to automatically assign label positions. This will help the user to easily build better readable diagrams.
yEd has an intuitive user interface that complies with the design guidelines for Java applications. Among its various features are:
- New in version 2.3.1: a customizable workplace lets you arrange your tool windows to your needs
- New in version 2.3.1: table-like property editors allow you to configure the graphical properties easily
- Internationalization: yEd has been localized in English, German, and partially in Japanese
- New in version 2.3.1: a sophisticated print preview allows you to preview the printing results (especially useful for poster-printing)
- Session Management: yEd remembers and manages your settings
- Undoability support
- Clipboard facility
- Keyboard shortcuts for most of the functions
- Integrated help system
yEd can be used to build, modify, and visualize graph structures. They can be loaded using several different file formats, among them are:
- Full support for the YGF file format. The native file format.
- Full support for the XML-based GraphML file format.
- Full support for the GML graph file format. GML is a popular text-based graph file format.
- New in version 2.3.1: Full support for the XML-based GML graph file format. This is a variant of the GML language that uses XML syntax.
- Import of arbitrary XML files. An XSLT stylesheet must be given that transforms the XML input into a valid GraphML. Predefined stylesheets for Ant build scripts, the OWL Web ontology language and others are included.
- Export to the SVG vector graphics file format.
- Export to the Windows Meta File (WMF) file format. A vector graphics format used in almost any Windows application.
- Export to JPG and GIF file formats. Export large images as multiple images and HTML tables also supported!
- New in version 2.3.1: Export to BMP (on Windows machines) and PNG file formats.
All of the image export formats can be fully customized.
The editor supports the complete set of graphical attributes necessary for effective graph visualization. It offers built-in support for:
- preconfigured node types for UML object diagrams and class diagrams!
- multiple labels for nodes and edges
- multi-line and icon labels
- powerful searching and selection utilities
- zooming and overview
- a set of beautiful icons to get you started with your first diagrams
<<lessyEd makes use of the yFiles library which is a Java class library for viewing, editing, optimizing, drawing, and animating diagrams, networks, and other graph-like structures.
yEd is built using 100% lightweight Swing components, i.e., it will run on any platform for which there is a suitable Runtime Environment available.
Main features:
yEd can be used to automatically layout complex graph structures. Several highly sophisticated layout algorithms have been implemented and ship with yEd. They can be used to either arrange the items fully automatically or support the user during a manual layout.
- New in version 2.3.1: Interactive Hierarchical Layout can be used to interactively layout hierarchical or pseudo-hierarchical scenarios.
- Hierarchical Layout can be used to perfectly visualize hierarchical or pseudo-hierarchical scenarios.
- Orthogonal Layout produces clear representations of complex networks.
- Organic Layout and Smart Organic Layout produce clear representations of complex diagrams like ER-diagrams, UML diagrams and many more.
- Organic Edge Router reroutes edges in existing drawings organically.
- Orthogonal Edge Router can reroute edges in existing drawings orthogonally.
- Circular Layout portrays interconnected ring and star topologies perfectly.
- Tree Layout can be used to visualize tree-like structures in many different ways.
- New in version 2.3.1: The tree layout algorithms can also be used on graphs that are almost like trees.
yEd enables users to create groups of nodes. These groups can be visualized and nested to virtually any degree. Of course the new layout algorithms support this type of visualization perfectly. Using this feature complex structures can be visualized and laid out even clearer than before.
Another one of yEds most powerful features is its ability to automatically assign label positions. This will help the user to easily build better readable diagrams.
yEd has an intuitive user interface that complies with the design guidelines for Java applications. Among its various features are:
- New in version 2.3.1: a customizable workplace lets you arrange your tool windows to your needs
- New in version 2.3.1: table-like property editors allow you to configure the graphical properties easily
- Internationalization: yEd has been localized in English, German, and partially in Japanese
- New in version 2.3.1: a sophisticated print preview allows you to preview the printing results (especially useful for poster-printing)
- Session Management: yEd remembers and manages your settings
- Undoability support
- Clipboard facility
- Keyboard shortcuts for most of the functions
- Integrated help system
yEd can be used to build, modify, and visualize graph structures. They can be loaded using several different file formats, among them are:
- Full support for the YGF file format. The native file format.
- Full support for the XML-based GraphML file format.
- Full support for the GML graph file format. GML is a popular text-based graph file format.
- New in version 2.3.1: Full support for the XML-based GML graph file format. This is a variant of the GML language that uses XML syntax.
- Import of arbitrary XML files. An XSLT stylesheet must be given that transforms the XML input into a valid GraphML. Predefined stylesheets for Ant build scripts, the OWL Web ontology language and others are included.
- Export to the SVG vector graphics file format.
- Export to the Windows Meta File (WMF) file format. A vector graphics format used in almost any Windows application.
- Export to JPG and GIF file formats. Export large images as multiple images and HTML tables also supported!
- New in version 2.3.1: Export to BMP (on Windows machines) and PNG file formats.
All of the image export formats can be fully customized.
The editor supports the complete set of graphical attributes necessary for effective graph visualization. It offers built-in support for:
- preconfigured node types for UML object diagrams and class diagrams!
- multiple labels for nodes and edges
- multi-line and icon labels
- powerful searching and selection utilities
- zooming and overview
- a set of beautiful icons to get you started with your first diagrams
Download (4.5MB)
Added: 2005-07-07 License: GPL (GNU General Public License) Price:
1574 downloads
Bison 2.3
Bison is a general-purpose parser generator. more>>
Bison project is a general-purpose parser generator that converts a grammar description for an LALR context-free grammar into a C program to parse that grammar.
Once you are proficient with Bison, you can use it to develop a wide range of language parsers, from those used in simple desk calculators to complex programming languages.
Bison is upward compatible with Yacc: all properly-written Yacc grammars ought to work with Bison with no change. Anyone familiar with Yacc should be able to use Bison with little trouble. You need to be fluent in C programming in order to use Bison.
<<lessOnce you are proficient with Bison, you can use it to develop a wide range of language parsers, from those used in simple desk calculators to complex programming languages.
Bison is upward compatible with Yacc: all properly-written Yacc grammars ought to work with Bison with no change. Anyone familiar with Yacc should be able to use Bison with little trouble. You need to be fluent in C programming in order to use Bison.
Download (1.3MB)
Added: 2006-06-05 License: GPL (GNU General Public License) Price:
722 downloads
IGSuite 3.2.3
IGSuite is an open source web-based groupware suite. more>>
IGSuite is an open source web-based groupware suite.
Main features:
- Contact CRM management
- Webmail
- full-featured and shared Calendar
- Digital documents archive
- ToDo management
- Fax system
- Wiki
- Project management
- Preferences per user
- PDA interface
- Available in different languages
- Different skins and layout
- Multiplatform (Linux & Windows)
<<lessMain features:
- Contact CRM management
- Webmail
- full-featured and shared Calendar
- Digital documents archive
- ToDo management
- Fax system
- Wiki
- Project management
- Preferences per user
- PDA interface
- Available in different languages
- Different skins and layout
- Multiplatform (Linux & Windows)
Download (1.2MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
912 downloads
base64img 2.3
base64img provides a PHP script which encodes images as text. more>>
base64img provides a PHP script which encodes images as text.
base64img.php base64-encodes images and generates PHP code that represents the image. This makes it possible to embed an image inside a PHP script.
This enables you to create an entire Web site with images, using only a PHP script contained within a single file.
The script itself is an example of how this works.
Install:
- Install this script in any directory on your webserver and point your webbrowser to it.
Enhancements:
- The code was changed so that it works on systems where PHPs globals are turned off.
<<lessbase64img.php base64-encodes images and generates PHP code that represents the image. This makes it possible to embed an image inside a PHP script.
This enables you to create an entire Web site with images, using only a PHP script contained within a single file.
The script itself is an example of how this works.
Install:
- Install this script in any directory on your webserver and point your webbrowser to it.
Enhancements:
- The code was changed so that it works on systems where PHPs globals are turned off.
Download (0.011MB)
Added: 2007-03-12 License: GPL (GNU General Public License) Price:
957 downloads
Download (0.29MB)
Added: 2005-10-25 License: BSD License Price:
1466 downloads
xd3d 8.2.3
xd3d is a simple scientific visualization tool designed to be easy to learn. more>>
xd3d is a simple scientific visualization tool designed to be easy to learn. It can plot 2d and 3d meshes, with shadowing, contour plots, vector fields, iso-contour (3d), as well as 3d surfaces z=f(x,y) defined by an algebraic expression or a cloud of points.
It generates high quality vector PostScript files for scientific publications and still or animated bitmap images. It includes the graph plotter xgraphic.
xd3d can be installed on any unix system using X windows: all the unix workstations, linux systems, Mac OS X, and Microsoft-Windows computers with an X11 emulation like the freeware Cygwin/Xfree.
To compile and install xd3d and its related programs, you must have a Fortran 77 and a C compiler (like g77 and gcc). The X11 library libX11.a and the include file X.h must be present on your computer.
To run xd3d you only need to have X11.
<<lessIt generates high quality vector PostScript files for scientific publications and still or animated bitmap images. It includes the graph plotter xgraphic.
xd3d can be installed on any unix system using X windows: all the unix workstations, linux systems, Mac OS X, and Microsoft-Windows computers with an X11 emulation like the freeware Cygwin/Xfree.
To compile and install xd3d and its related programs, you must have a Fortran 77 and a C compiler (like g77 and gcc). The X11 library libX11.a and the include file X.h must be present on your computer.
To run xd3d you only need to have X11.
Download (0.52MB)
Added: 2005-06-21 License: GPL (GNU General Public License) Price:
1587 downloads
pngcheck 2.3.0
pngcheck is the official PNG tester and debugger. more>>
pngcheck verifies the integrity of PNG, JNG and MNG files (by checking the internal 32-bit CRCs [checksums] and decompressing the image data); pngcheck can optionally dump almost all of the chunk-level information in the image in human-readable form.
For example, it can be used to print the basic statistics about an image (dimensions, bit depth, etc.); to list the color and transparency info in its palette (assuming it has one); or to extract the embedded text annotations.
All PNG and JNG chunks are supported, plus almost all MNG chunks (everything but PAST, MAGN, DISC, DROP, DBYK, ORDR, and pHYg). This is a command-line program with batch capabilities (e.g., "pngcheck *.png").
Enhancements:
- This version adds an option to colorize the output (using ANSI colors), enhances the verbose output for interlaced images, and fixes three bugs that showed up in the most recent release of the brokensuite test images.
<<lessFor example, it can be used to print the basic statistics about an image (dimensions, bit depth, etc.); to list the color and transparency info in its palette (assuming it has one); or to extract the embedded text annotations.
All PNG and JNG chunks are supported, plus almost all MNG chunks (everything but PAST, MAGN, DISC, DROP, DBYK, ORDR, and pHYg). This is a command-line program with batch capabilities (e.g., "pngcheck *.png").
Enhancements:
- This version adds an option to colorize the output (using ANSI colors), enhances the verbose output for interlaced images, and fixes three bugs that showed up in the most recent release of the brokensuite test images.
Download (0.052MB)
Added: 2007-07-09 License: GPL (GNU General Public License) Price:
841 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 nexuiz 2.3 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