production
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 346
Foundation 0.2.0
Foundation project is a real-time multi-player space conquest game. more>>
Foundation project is a real-time multi-player space conquest game.
OpenGL hardware support is recommended. Goals include researching new technology, colonizing distant planets, and fighting intense 3D fleet battles for survival.
Main features:
- colonization
- production of new units, facilities and ships
- research new technology to give you an edge
- space battles
Enhancements:
- more high-level network code (can now transfer fleet info)
- can now build ships
- wont crash if youre not connected to a server but try send a msg
- texture caching system
- fixed check for if a planet is building a certain structure
- slight changes to planetview and fleetview layout
- added more components to fleetview
- moved id to platform class, fleets and planets now both have IDs
- fleet movement mostly complete, still have to deal with deleting fleets
- fixed production bug, need resources now
<<lessOpenGL hardware support is recommended. Goals include researching new technology, colonizing distant planets, and fighting intense 3D fleet battles for survival.
Main features:
- colonization
- production of new units, facilities and ships
- research new technology to give you an edge
- space battles
Enhancements:
- more high-level network code (can now transfer fleet info)
- can now build ships
- wont crash if youre not connected to a server but try send a msg
- texture caching system
- fixed check for if a planet is building a certain structure
- slight changes to planetview and fleetview layout
- added more components to fleetview
- moved id to platform class, fleets and planets now both have IDs
- fleet movement mostly complete, still have to deal with deleting fleets
- fixed production bug, need resources now
Download (MB)
Added: 2006-11-22 License: GPL (GNU General Public License) Price:
1066 downloads
PRECC eXtended 2.58
PRECC eXtended is an infinite-lookahead compiler-compiler for languages with context-dependent grammars. more>>
PRECC eXtended is an infinite-lookahead compiler-compiler for languages with context-dependent grammars. The generated code is ANSI C and ANSI C++; the code will compile and run native under either C or C++.
Specification scripts are extended BNF with inherited and synthetic attributes. Scripts can be compiled in separate modules and linked later. Metalevel production rules are allowed in the scripts. The technology is essentially LL(oo) with optimizations.
Enhancements:
- A "debian" subdirectory has been added in order to allow the building of deb packages from the source archive.
<<lessSpecification scripts are extended BNF with inherited and synthetic attributes. Scripts can be compiled in separate modules and linked later. Metalevel production rules are allowed in the scripts. The technology is essentially LL(oo) with optimizations.
Enhancements:
- A "debian" subdirectory has been added in order to allow the building of deb packages from the source archive.
Download (0.33MB)
Added: 2007-06-27 License: LGPL (GNU Lesser General Public License) Price:
849 downloads
USAGI Project 20060508
USAGI(UniverSAl playGround for Ipv6) Project works to deliver the production quality IPv6 and IPsec protocol. more>>
USAGI(UniverSAl playGround for Ipv6) Project works to deliver the production quality IPv6 and IPsec(for both IPv4 and IPv6) protocol stack for the Linux system, tightly collaborating with WIDE Project, KAME Project and TAHI Project.
USAGI Project is run by volunteers from various organizations. At this moment, the volunteers are from Japan, however, we are glad to work with volunteers in any country in the world.
We want to contribute to the Linux community and to the IPv6 community via the delivery of IPv6 protocol stack.
Enhancements:
- Unused code was removed.
- Minor bugfixes were made.
- Some of the additional utilities were reorganized.
<<lessUSAGI Project is run by volunteers from various organizations. At this moment, the volunteers are from Japan, however, we are glad to work with volunteers in any country in the world.
We want to contribute to the Linux community and to the IPv6 community via the delivery of IPv6 protocol stack.
Enhancements:
- Unused code was removed.
- Minor bugfixes were made.
- Some of the additional utilities were reorganized.
Download (3.7MB)
Added: 2006-05-10 License: Open Software License Price:
1273 downloads
mysqlrowcopy 1.0
mysqlrowcopy is a tool that generates insert statements from result sets. more>>
mysqlrowcopy is a tool that generates insert statements from result sets. It produces output similar to what might result from running mysqldump on a single SELECT query.
This project helps eliminate some of the tedium of moving data between QA and production MySQL databases.
Build:
To build mysqlrowcopy, you should run:
./configure
make
A mysqlrowcopy and mysqlrowcopy.debug file are created. They have identical functionality, the .debug version simply has debugging symbols built in (for gdb).
Since mysqlrowcopy is probably going to be I/O bound with modest CPU and RAM usage, the only reason to even build a 64-bit version is to work around potential issues in dynamic linking 32-bit binaries against 64-bit libraries.
RECIPES
1. Migrating a MySQL user account reaper from QA server to a production server.
e.g. MySQL database server qa3.example.com to prod1.example.com:
$ mysqlrowcopy -h qa3.example.com
SELECT * FROM db WHERE User = "reaper" mysql db > reaper.sql
$ mysql -h prod1.example.com mysql < reaper.sql
You could of course simply pipe the output of mysqlrowcopy into mysql and skip the intermediate file.
(Dont forget to RELOAD PRIVILEGES afterwards)
2. Keep your test environment up to date. Populate it with production data every 24 hours. You could run this sequence from cron once a day:
$ mysqlrowcopy -h finance-db.example.com
SELECT * FROM stocks WHERE modified > DATE_SUB(NOW(),INTERVAL 24 HOUR)
finance stocks > day-stocks.sql
$ cat day-stocks.sql | mysql -h finance-test.example.com finance
3. Copy data between tables on different servers that have some similar fields.
Youve got common data in table Zip on a production database:
mysql> desc Zip;
+-------------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------------+-------------+------+-----+---------+-------+
| ZIPCode | varchar(5) | | PRI | | |
| ZIPCodeType | char(1) | YES | | NULL | |
| City | varchar(32) | YES | | NULL | |
| CityType | char(1) | YES | | NULL | |
| State | varchar(32) | YES | | NULL | |
| StateCode | char(3) | YES | | NULL | |
| AreaCode | char(3) | YES | | NULL | |
| Latitude | varchar(12) | YES | | NULL | |
| Longitude | varchar(12) | YES | | NULL | |
+-------------+-------------+------+-----+---------+-------+
9 rows in set (0.00 sec)
And youve got table ZipPosition in a research database:
mysql> desc ZipPosition;
+-------------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------------+-------------+------+-----+---------+-------+
| ZIPCode | varchar(5) | | | | |
| Latitude | varchar(12) | YES | | NULL | |
| Longitude | varchar(12) | YES | | NULL | |
+-------------+-------------+------+-----+---------+-------+
3 rows in set (0.00 sec)
You want to load data from production Zip into research ZipPosition.
$ mysqlrowcopy -h production SELECT ZIPCode,Latitude,Longitude common ZipPosition > pos.sql
$ cat pos.sql | mysql -h qa research
Note how we specify ZipPosition on the first line to tell mysqlrowcopy what the destination table is going to be.
<<lessThis project helps eliminate some of the tedium of moving data between QA and production MySQL databases.
Build:
To build mysqlrowcopy, you should run:
./configure
make
A mysqlrowcopy and mysqlrowcopy.debug file are created. They have identical functionality, the .debug version simply has debugging symbols built in (for gdb).
Since mysqlrowcopy is probably going to be I/O bound with modest CPU and RAM usage, the only reason to even build a 64-bit version is to work around potential issues in dynamic linking 32-bit binaries against 64-bit libraries.
RECIPES
1. Migrating a MySQL user account reaper from QA server to a production server.
e.g. MySQL database server qa3.example.com to prod1.example.com:
$ mysqlrowcopy -h qa3.example.com
SELECT * FROM db WHERE User = "reaper" mysql db > reaper.sql
$ mysql -h prod1.example.com mysql < reaper.sql
You could of course simply pipe the output of mysqlrowcopy into mysql and skip the intermediate file.
(Dont forget to RELOAD PRIVILEGES afterwards)
2. Keep your test environment up to date. Populate it with production data every 24 hours. You could run this sequence from cron once a day:
$ mysqlrowcopy -h finance-db.example.com
SELECT * FROM stocks WHERE modified > DATE_SUB(NOW(),INTERVAL 24 HOUR)
finance stocks > day-stocks.sql
$ cat day-stocks.sql | mysql -h finance-test.example.com finance
3. Copy data between tables on different servers that have some similar fields.
Youve got common data in table Zip on a production database:
mysql> desc Zip;
+-------------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------------+-------------+------+-----+---------+-------+
| ZIPCode | varchar(5) | | PRI | | |
| ZIPCodeType | char(1) | YES | | NULL | |
| City | varchar(32) | YES | | NULL | |
| CityType | char(1) | YES | | NULL | |
| State | varchar(32) | YES | | NULL | |
| StateCode | char(3) | YES | | NULL | |
| AreaCode | char(3) | YES | | NULL | |
| Latitude | varchar(12) | YES | | NULL | |
| Longitude | varchar(12) | YES | | NULL | |
+-------------+-------------+------+-----+---------+-------+
9 rows in set (0.00 sec)
And youve got table ZipPosition in a research database:
mysql> desc ZipPosition;
+-------------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------------+-------------+------+-----+---------+-------+
| ZIPCode | varchar(5) | | | | |
| Latitude | varchar(12) | YES | | NULL | |
| Longitude | varchar(12) | YES | | NULL | |
+-------------+-------------+------+-----+---------+-------+
3 rows in set (0.00 sec)
You want to load data from production Zip into research ZipPosition.
$ mysqlrowcopy -h production SELECT ZIPCode,Latitude,Longitude common ZipPosition > pos.sql
$ cat pos.sql | mysql -h qa research
Note how we specify ZipPosition on the first line to tell mysqlrowcopy what the destination table is going to be.
Download (0.021MB)
Added: 2007-03-01 License: GPL (GNU General Public License) Price:
967 downloads
Cenon 3.82
Cenon is a vector graphics tool for GNUstep. more>>
Cenon project is a graphical tool of a special kind. Build upon a modular graphical core, Cenon offers a wide variety of possibilities and applications.
The best of all, Cenon is free software, available with full source codes, and at home on many computer platforms.
Cenon has been developed with love. The clean user interface under Apple, Linux or other systems (using GNUstep) creates a pleasant user experience.
Desktop Publishing
- The field of desktop publishing is a new speciality of Cenon. Freeing images, complex paths, text functions, color shading, printing, and a multitude of import- and export abilities - simply good.
Vector Graphics Conversion
- Cenon owns an enormous range of Import- and Export possibilities. This allows the conversion of all supported graphic formats in any other format. The editability of imported data is fully guarantied. Conversion of the formats PostScript, PDF, DXF, HPGL, Gerber, DIN formats and other formats are solid part of the Import- and Export libraries of Cenon.
Astrology (Free Module)
- Even an Astrology module is available for Cenon. It turns Cenon into an Astrology program with some unusual highlights. The Module uses the high precision NASA ephemeris data based on the Swiss Ephemeris. It allows the creation of Astrological Charts and Composite Charts in exceptional graphical precision. Furthermore, astrological Geographic Maps can be created.
CAM (commercial Module)
- With this additional module, Cenon becomes a production tool for 2 and 2.5 dimensional applications. Thats how Cenon started in 1993, and thats the field where Cenon has achieved a strong market position. The production tool Cenon is available from vhf camfacture. vhf camfacture also offers the appropriate machines from very small to very big.
PCB-Prototyping (CAM Module)
- The CAM module allows the production of PCB prototypes by engraving the isolations. Cenon supports all necessary algorithms like calculation of isolation tracks, Blow-Up, Rub-Out and more, to get high quality PCB prototypes from your machine.
Main features:
Import
- Import of DXF, HPGL, PostScript (PS and EPS), Adobe Illustrator 3, Gerber, PDF, Sieb&Meyer, Wessel, Excellon
- Import of images (TIFF, GIF, JPG etc.)
- Import of Type-1 Fonts
- option: automatic distribution of colors to layers
- option: automatic joining of paths
- Import of text lists in ASCII format for mass production
Graphic- and Editing functions
- Lines, Arcs, Rectangles, Bezier curves, etc.
- complex paths
- object manipulations like join, punch etc.
- Rich Text (vector fonts, tabulators, rotation, ...)
- Text along paths
- Graphic Inspector
- comfortable layer (page) management
- alignment of graphic objects
- multiple Undo and Redo
DTP
- Exposing of images (Clipping)
- Color shading (Graduate, Radial, Axial)
- Thumbnail images
- Color separation
Output
- Export of DXF, HPGL, PostScript (EPS + PS), Gerber, etc.
Special features
- Vectorisation of images
- creating the contour of graphic objects
- Mix function
- Batch production
- Serial numbers
<<lessThe best of all, Cenon is free software, available with full source codes, and at home on many computer platforms.
Cenon has been developed with love. The clean user interface under Apple, Linux or other systems (using GNUstep) creates a pleasant user experience.
Desktop Publishing
- The field of desktop publishing is a new speciality of Cenon. Freeing images, complex paths, text functions, color shading, printing, and a multitude of import- and export abilities - simply good.
Vector Graphics Conversion
- Cenon owns an enormous range of Import- and Export possibilities. This allows the conversion of all supported graphic formats in any other format. The editability of imported data is fully guarantied. Conversion of the formats PostScript, PDF, DXF, HPGL, Gerber, DIN formats and other formats are solid part of the Import- and Export libraries of Cenon.
Astrology (Free Module)
- Even an Astrology module is available for Cenon. It turns Cenon into an Astrology program with some unusual highlights. The Module uses the high precision NASA ephemeris data based on the Swiss Ephemeris. It allows the creation of Astrological Charts and Composite Charts in exceptional graphical precision. Furthermore, astrological Geographic Maps can be created.
CAM (commercial Module)
- With this additional module, Cenon becomes a production tool for 2 and 2.5 dimensional applications. Thats how Cenon started in 1993, and thats the field where Cenon has achieved a strong market position. The production tool Cenon is available from vhf camfacture. vhf camfacture also offers the appropriate machines from very small to very big.
PCB-Prototyping (CAM Module)
- The CAM module allows the production of PCB prototypes by engraving the isolations. Cenon supports all necessary algorithms like calculation of isolation tracks, Blow-Up, Rub-Out and more, to get high quality PCB prototypes from your machine.
Main features:
Import
- Import of DXF, HPGL, PostScript (PS and EPS), Adobe Illustrator 3, Gerber, PDF, Sieb&Meyer, Wessel, Excellon
- Import of images (TIFF, GIF, JPG etc.)
- Import of Type-1 Fonts
- option: automatic distribution of colors to layers
- option: automatic joining of paths
- Import of text lists in ASCII format for mass production
Graphic- and Editing functions
- Lines, Arcs, Rectangles, Bezier curves, etc.
- complex paths
- object manipulations like join, punch etc.
- Rich Text (vector fonts, tabulators, rotation, ...)
- Text along paths
- Graphic Inspector
- comfortable layer (page) management
- alignment of graphic objects
- multiple Undo and Redo
DTP
- Exposing of images (Clipping)
- Color shading (Graduate, Radial, Axial)
- Thumbnail images
- Color separation
Output
- Export of DXF, HPGL, PostScript (EPS + PS), Gerber, etc.
Special features
- Vectorisation of images
- creating the contour of graphic objects
- Mix function
- Batch production
- Serial numbers
Download (2.0MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
1038 downloads
jPodder 1.1
jPodder is the most complete podcasting program on the planet. more>>
jPodder is the most complete podcasting program on the planet. Yes we can claim this as, jPodder was one of the first programs to be created for podcasting and has been innovating ever since.
If you own a portable media player like the iPod or you want to listen to fresh content every day on your PC, then read on cause podcasting is what you are looking for.
With jPodder you can subscribe to websites containing audio. jPodder will download the files to your system and transfer these to your favourite media player.
Main features:
Currently supported languages:
- English
- Dutch
General/GUI
- Multi Platform program (Java based).
- Easy installer. (Creates shortcuts on Windows PCs).
- System tray (Minimize jPodder to download in background).
- GUI Menu and popup menus.
- Build-in User manual.
- Multi-Language (0.9 New!)
RSS Feed management
- Add, Remove & Edit feeds.
- Sort feeds by name.(0.9 New!)
- Move feeds up/down
- View detailed Feed information.
- Feeds stored in easy XML format.
- Extensive status bar.
- Drag & Drop Podcasts link (0.9 New!)
Enclosure previewing
- Preview enclosures incl. name, date, size..
- Show enclosure status (Downloaded, In player..)
- Show previous downloads from this feed.
- Highlights partial downloads.
- Highlights previous downloads.
Downloading
- Scheduled downloads
- Multiple simultaneous downloads
- Single enclosure download
- Smart-Download, Downloads latest only.
- Maximum downloads, Limiter to the number of downloads
- Resume partial downloads
- Manual download retry
- Feed Authentication (0.9 New!)
- Proxy Server support (Including authentication)
- build-in BitTorrent. (Including seeding).
Media Player Interface
- Natively supports transfer to iTunes and WMP.
- Player plugin facility. (0.9 New!)
- MIME-Type association to players (0.9 New!)
Podcast Production (0.9 New!)
- Manage production steps
- Auto-create RSS feed
- MP3 Tag editing
- Add enclosures to RSS feed
- Launch recorder
- FTP Transfer production.
- Auto-test RSS feed.
Logging
- Color coded logging.
- BitTorrent logging.
<<lessIf you own a portable media player like the iPod or you want to listen to fresh content every day on your PC, then read on cause podcasting is what you are looking for.
With jPodder you can subscribe to websites containing audio. jPodder will download the files to your system and transfer these to your favourite media player.
Main features:
Currently supported languages:
- English
- Dutch
General/GUI
- Multi Platform program (Java based).
- Easy installer. (Creates shortcuts on Windows PCs).
- System tray (Minimize jPodder to download in background).
- GUI Menu and popup menus.
- Build-in User manual.
- Multi-Language (0.9 New!)
RSS Feed management
- Add, Remove & Edit feeds.
- Sort feeds by name.(0.9 New!)
- Move feeds up/down
- View detailed Feed information.
- Feeds stored in easy XML format.
- Extensive status bar.
- Drag & Drop Podcasts link (0.9 New!)
Enclosure previewing
- Preview enclosures incl. name, date, size..
- Show enclosure status (Downloaded, In player..)
- Show previous downloads from this feed.
- Highlights partial downloads.
- Highlights previous downloads.
Downloading
- Scheduled downloads
- Multiple simultaneous downloads
- Single enclosure download
- Smart-Download, Downloads latest only.
- Maximum downloads, Limiter to the number of downloads
- Resume partial downloads
- Manual download retry
- Feed Authentication (0.9 New!)
- Proxy Server support (Including authentication)
- build-in BitTorrent. (Including seeding).
Media Player Interface
- Natively supports transfer to iTunes and WMP.
- Player plugin facility. (0.9 New!)
- MIME-Type association to players (0.9 New!)
Podcast Production (0.9 New!)
- Manage production steps
- Auto-create RSS feed
- MP3 Tag editing
- Add enclosures to RSS feed
- Launch recorder
- FTP Transfer production.
- Auto-test RSS feed.
Logging
- Color coded logging.
- BitTorrent logging.
Download (11MB)
Added: 2007-01-05 License: GPL (GNU General Public License) Price:
1024 downloads
Unicode Error Detector 1.0
Unicode Error Detector is a product for Plone used to pinpoint errors in your application leading to UnicodeDecodeErrors. more>>
Unicode Error Detector is a product for Plone used to pinpoint errors in your application leading to UnicodeDecodeErrors.
Do not use this product unless you are actively debugging a Unicode Error. Never use this product in production sites.
UnicodeDecodeErrors typically occur when you try to add a Unicode string to a non-ascii string. This product patches StringIO used by page templates to check if the appended string is a Unicode string, and if it is, it replaces the string with an error marker.
As there is some overhead associated with inspecting the strings instead of just appending to the output, this product is meant for debugging purposes only.
Usage
Put the product in your Products directory and restart Zope. Load the template causing the UnicodeDecodeError, and this tool will indicate the location by printing THIS IS WHERE THE ERROR IS in the rendered template.
You can then inspect the template and/or code more closely to figure out where the decode error happens.
<<lessDo not use this product unless you are actively debugging a Unicode Error. Never use this product in production sites.
UnicodeDecodeErrors typically occur when you try to add a Unicode string to a non-ascii string. This product patches StringIO used by page templates to check if the appended string is a Unicode string, and if it is, it replaces the string with an error marker.
As there is some overhead associated with inspecting the strings instead of just appending to the output, this product is meant for debugging purposes only.
Usage
Put the product in your Products directory and restart Zope. Load the template causing the UnicodeDecodeError, and this tool will indicate the location by printing THIS IS WHERE THE ERROR IS in the rendered template.
You can then inspect the template and/or code more closely to figure out where the decode error happens.
Download (0.001MB)
Added: 2007-03-28 License: GPL (GNU General Public License) Price:
942 downloads
Hpodder 1.0.0
Hpodder is a tool to scan and download podcasts. more>>
Hpodder is a tool to scan and download podcasts. Such tools are often called podcatchers.
Hpodder is a command-line tool for Linux. The project has quite a few features. A few highlights are that it is easy to learn and use, has automatic discovery of feed metadata, and can import iPodder settings.
Enhancements:
- This is the first production release.
- Feeds or episodes that repeatedly return errors are now automatically pruned.
- Cleaning of download areas was improved.
- Bugs were fixed.
<<lessHpodder is a command-line tool for Linux. The project has quite a few features. A few highlights are that it is easy to learn and use, has automatic discovery of feed metadata, and can import iPodder settings.
Enhancements:
- This is the first production release.
- Feeds or episodes that repeatedly return errors are now automatically pruned.
- Cleaning of download areas was improved.
- Bugs were fixed.
Download (0.19MB)
Added: 2007-07-30 License: GPL (GNU General Public License) Price:
501 downloads
PiTiVi 0.10.3
PiTiVi is a non-linear audio/video editor for GNU/Linux using the GStreamer multimedia framework. more>>
PiTiVi is a non-linear audio/video editor for GNU/Linux using the GStreamer multimedia framework.
The GStreamer and PiTiVi team are pleased to announce a new pre-release of PiTiVi.
This release is in beta state, may suffer from hangs and is not yet ready for production. Transcoding/Encoding works though for files.
This release is also the last version based on the 0.8.x GStreamer series. Work is now aimed at the 0.9/0.10 series.
Features of this release:
- UI updates
- Settings control
- Transcoding
Enhancements:
- Improvement of first time user experience.
- Frame-by-frame seeking
- UI improvements for usability
- New graphics
- i18n support, translated in 14 languages
- Critical bugfixes
- Unit tests
- Advanced view disabled by default
<<lessThe GStreamer and PiTiVi team are pleased to announce a new pre-release of PiTiVi.
This release is in beta state, may suffer from hangs and is not yet ready for production. Transcoding/Encoding works though for files.
This release is also the last version based on the 0.8.x GStreamer series. Work is now aimed at the 0.9/0.10 series.
Features of this release:
- UI updates
- Settings control
- Transcoding
Enhancements:
- Improvement of first time user experience.
- Frame-by-frame seeking
- UI improvements for usability
- New graphics
- i18n support, translated in 14 languages
- Critical bugfixes
- Unit tests
- Advanced view disabled by default
Download (0.48MB)
Added: 2007-06-01 License: LGPL (GNU Lesser General Public License) Price:
882 downloads
GTDInbox 1.33
GTDInbox is a thunderbird which discreetly integrates into Gmail making it even more suitable as a GTD tool. more>>
GTDInbox is a thunderbird which discreetly integrates into Gmail making it even more suitable as a GTD tool.
GTDInbox (formerly GTDGmail) discreetly integrates into Gmail making it even more suitable as a GTD tool.
GTD - Getting Things Done - is a simple and effective productivity concept: designed so that even the laziest and most scattered of people can be organised and stress free.
Main features:
- Easily Organise GTD Labels
- Quickly Review Outstanding Tasks
- Save Specialised Searches
- Send Myself Tasks and References
- Print Tasks to Cards
- Keyboard Shortcuts
Built by the authors of Bumble Search - a well-reviewed high quality extension that has featured in the national IT press - GTDInbox shares the same high production values.
<<lessGTDInbox (formerly GTDGmail) discreetly integrates into Gmail making it even more suitable as a GTD tool.
GTD - Getting Things Done - is a simple and effective productivity concept: designed so that even the laziest and most scattered of people can be organised and stress free.
Main features:
- Easily Organise GTD Labels
- Quickly Review Outstanding Tasks
- Save Specialised Searches
- Send Myself Tasks and References
- Print Tasks to Cards
- Keyboard Shortcuts
Built by the authors of Bumble Search - a well-reviewed high quality extension that has featured in the national IT press - GTDInbox shares the same high production values.
Download (0.18MB)
Added: 2007-05-01 License: MPL (Mozilla Public License) Price:
907 downloads
Cinelerra 2.1
Cinelerra is a complete audio and video production environment for Linux. more>>
Cinelerra is a complete audio and video production environment for Linux. Cinelerra replaces Broadcast 2000.
Heroine Virtual Ltd. presents an advanced content creation system for Linux. Cinelerra takes what normally is a boring server operating system - studied in computer science classrooms, hidden in back offices - and turns it into a 50,000 watt flamethrower of multimedia editing power.
Thats right kids. Unlike most of the Linux solutions out there, Cinelerra requires no emulation of proprietary operating systems, no commercial add-ons, no banner advertizements, no corporate dependancies, no terrorists, just a boring old Linux box.
Cinelerra does primarily 3 main things: capturing, compositing, and editing audio and video with sample level accuracy. Its a seemless integration of audio, video, and still photos rarely experienced on a web server.
If you want to make movies, you just want to defy the establishment, you want the same kind of compositing and editing suite that the big boys use, on the worlds most efficient UNIX operating system, its time for Cinelerra.
What youll find here is the heroinewarrior version of Cinelerra. This is the version that supports what we need to do at Heroine Virtual Ltd. and is the same tree that was started in 1997. As time passes and new students come and go from the Linux scene, new forks of Cinelerra emerge that are more suited to the community. Today youll probably find the cinelerra.org fork more useful.
They moderate what parts of our fork get into their fork while contributing anything they want while we moderate what parts of their fork get into our fork while putting in anything we want, which makes it pretty much even.
<<lessHeroine Virtual Ltd. presents an advanced content creation system for Linux. Cinelerra takes what normally is a boring server operating system - studied in computer science classrooms, hidden in back offices - and turns it into a 50,000 watt flamethrower of multimedia editing power.
Thats right kids. Unlike most of the Linux solutions out there, Cinelerra requires no emulation of proprietary operating systems, no commercial add-ons, no banner advertizements, no corporate dependancies, no terrorists, just a boring old Linux box.
Cinelerra does primarily 3 main things: capturing, compositing, and editing audio and video with sample level accuracy. Its a seemless integration of audio, video, and still photos rarely experienced on a web server.
If you want to make movies, you just want to defy the establishment, you want the same kind of compositing and editing suite that the big boys use, on the worlds most efficient UNIX operating system, its time for Cinelerra.
What youll find here is the heroinewarrior version of Cinelerra. This is the version that supports what we need to do at Heroine Virtual Ltd. and is the same tree that was started in 1997. As time passes and new students come and go from the Linux scene, new forks of Cinelerra emerge that are more suited to the community. Today youll probably find the cinelerra.org fork more useful.
They moderate what parts of our fork get into their fork while contributing anything they want while we moderate what parts of their fork get into our fork while putting in anything we want, which makes it pretty much even.
Download (30.2MB)
Added: 2006-07-02 License: GPL (GNU General Public License) Price:
1219 downloads
PlainDoc 1.55
PlainDoc document production system allows you to write documents as normal text files. more>>
PlainDoc (pd2tex) document production system allows you to write documents as normal text files. pd2tex tool converts the plain text files to:
- TeX which then gets converted to pdf (you need pdflatex tool installed)
- DocBook (dbx) which can be fed to various tool chains (not supplied) to generate pdf and html
- flat HTML (entire document in one HTML file)
- multipage HTML (each section as its own HTML file)
PlainDoc system was developed by Sampo Kellomaki from around 2002 onwards with the aim of solving document editing problems for writing:
- IT specifications documents
- software product manuals and documentation
- scientific and research papers
- legal documents
- presentation slides
Some of the goals were:
- document source is the plain text representation, no separate conversion needed
- documents are intuitive to write and understand
- getting a neophyte to a reasonable level of productivity and achievement should be easy. A college freshman should be able to use PlainDoc after 1 hour training, provided that all the tool chains have already been installed
- it must be very difficult to fatally corrupt a document; fixing corruption should be as simple as editing the file
- it must be possible to do diffs between versions of the document
- using cvs should be well supported (helps to avoid fatal loss of document, too)
- enable use of plain text productivity environments like emacs(1)
- the PlainDoc system MUST be serious enough to produce most any type of document and thus end the need to use any other system
- typeset quality output in paper and web formats
PlainDoc has now (Oct, 2004) been around for more than two years and it has been successfully used to produce:
- major IT specifications conforming to formatting rules (70 page range)
- research papers and theses conforming to formatting rules (200 page range)
- product manuals (500 page range)
- legal documents and contracts conforming to formatting rules
PlainDoc acknowledges its LaTeX legacy and does not aim at WYSIWYG (except in plain text document production, of course :-) however we are not totally against visual formatting either. Thus many hooks for accessing the underlying document formatters capabilities have been made available, such as:
- direct entry of TeX code
- direct entry of DocBook code
- direct entry of HTML code
These should allow you to get your job done without the system philosophy standing too much in the way, while for most part leveraging the automatic formatting of standard constructs.
<<less- TeX which then gets converted to pdf (you need pdflatex tool installed)
- DocBook (dbx) which can be fed to various tool chains (not supplied) to generate pdf and html
- flat HTML (entire document in one HTML file)
- multipage HTML (each section as its own HTML file)
PlainDoc system was developed by Sampo Kellomaki from around 2002 onwards with the aim of solving document editing problems for writing:
- IT specifications documents
- software product manuals and documentation
- scientific and research papers
- legal documents
- presentation slides
Some of the goals were:
- document source is the plain text representation, no separate conversion needed
- documents are intuitive to write and understand
- getting a neophyte to a reasonable level of productivity and achievement should be easy. A college freshman should be able to use PlainDoc after 1 hour training, provided that all the tool chains have already been installed
- it must be very difficult to fatally corrupt a document; fixing corruption should be as simple as editing the file
- it must be possible to do diffs between versions of the document
- using cvs should be well supported (helps to avoid fatal loss of document, too)
- enable use of plain text productivity environments like emacs(1)
- the PlainDoc system MUST be serious enough to produce most any type of document and thus end the need to use any other system
- typeset quality output in paper and web formats
PlainDoc has now (Oct, 2004) been around for more than two years and it has been successfully used to produce:
- major IT specifications conforming to formatting rules (70 page range)
- research papers and theses conforming to formatting rules (200 page range)
- product manuals (500 page range)
- legal documents and contracts conforming to formatting rules
PlainDoc acknowledges its LaTeX legacy and does not aim at WYSIWYG (except in plain text document production, of course :-) however we are not totally against visual formatting either. Thus many hooks for accessing the underlying document formatters capabilities have been made available, such as:
- direct entry of TeX code
- direct entry of DocBook code
- direct entry of HTML code
These should allow you to get your job done without the system philosophy standing too much in the way, while for most part leveraging the automatic formatting of standard constructs.
Download (0.10MB)
Added: 2006-04-13 License: GPL (GNU General Public License) Price:
1290 downloads
Compute Portal Project 0.8.11
Compute Portal Project is a portal project to produce a web based front end to a compute resource. more>>
Compute Portal Project is a portal project to produce a web based front end to a compute resource, such as a cluster, using PHP, mysql, and apache.
The intent is to allow non-programmers to use complex programs through an intuitive interface.
Enhancements:
- This is the third attempt to create a working release with an install script.
- The last two releases were plagued with copy and paste errors.
- This release is strictly a bugfix release that has been tested in a production environment.
- There may still be residual problems from the 0.8.8 to 0.8.9 transition that included the first install script and moved several directory locations.
- Please give this release a try.
<<lessThe intent is to allow non-programmers to use complex programs through an intuitive interface.
Enhancements:
- This is the third attempt to create a working release with an install script.
- The last two releases were plagued with copy and paste errors.
- This release is strictly a bugfix release that has been tested in a production environment.
- There may still be residual problems from the 0.8.8 to 0.8.9 transition that included the first install script and moved several directory locations.
- Please give this release a try.
Download (0.10MB)
Added: 2007-06-06 License: GPL (GNU General Public License) Price:
870 downloads
Blockish 0.0.2
Blockish is a server for the NBD protocol implemented in Java. more>>
Blockish is a server for the NBD protocol implemented in Java. This allows you to serve up storage as a virtual block device to Linux systems from any system that can run Java. Blockish project is designed to support multiple pluggable backends.
Available backends:
Memory (useful for providing network swap)
File
S3 (Use Amazons S3 service as a block device!)
Blockish is in an early stage of development and should not be used for production work.
<<lessAvailable backends:
Memory (useful for providing network swap)
File
S3 (Use Amazons S3 service as a block device!)
Blockish is in an early stage of development and should not be used for production work.
Download (0.026MB)
Added: 2006-03-27 License: GPL (GNU General Public License) Price:
1306 downloads
Valgrind 3.3.0
an award-winning instrumentation framework for building dynamic analysis tools more>> Valgrind is an award-winning instrumentation framework for building dynamic analysis tools. There are Valgrind tools that can automatically detect many memory management and threading bugs, and profile your programs in detail. You can also use Valgrind to build new tools.
The Valgrind distribution currently includes five production-quality tools: a memory error detector, a thread error detector, a cache and branch-prediction profiler, a call-graph generating cache profiler, and a heap profiler. It also includes two experimental tools: a data race detector, and an instant memory leak detector. It runs on the following platforms: X86/Linux, AMD64/Linux, PPC32/Linux, PPC64/Linux.
Valgrind is Open Source / Free Software, and is freely available under the GNU General Public License.<<less
Download (4.31MB)
Added: 2009-04-20 License: Freeware Price: Free
191 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 production 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