icebreaker 1.2.1
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 139
IceBreaker 1.2.1
IceBreaker project is an addictive action-puzzle game involving bouncing penguins. more>>
IceBreaker project is an addictive action-puzzle game involving bouncing penguins.
IceBreaker is an action-puzzle game in which you must capture penguins from an Antarctic iceberg so they can be shipped to Finland, where they are essential to a secret plot for world domination.
To earn the highest Geek Cred, trap them in the smallest space in the shortest time while losing the fewest lives. IceBreaker was inspired by (but isnt an exact clone of) Jezzball by Dima Pavlovsky.
Enhancements:
- little bits of code cleanup
- slightly increase bonus for clearing more than 80 on higher levels to help counteract the fact that having more penguins make that more and more impossible
<<lessIceBreaker is an action-puzzle game in which you must capture penguins from an Antarctic iceberg so they can be shipped to Finland, where they are essential to a secret plot for world domination.
To earn the highest Geek Cred, trap them in the smallest space in the shortest time while losing the fewest lives. IceBreaker was inspired by (but isnt an exact clone of) Jezzball by Dima Pavlovsky.
Enhancements:
- little bits of code cleanup
- slightly increase bonus for clearing more than 80 on higher levels to help counteract the fact that having more penguins make that more and more impossible
Download (0.055MB)
Added: 2006-11-06 License: GPL (GNU General Public License) Price:
659 downloads
evilbar 1.2.1
evilbar is small ncurses-based bar. more>>
This is small ncurses based bar designed to match the coolness of evilWM. evilbar sports a right-aligned clock, APM status and XMMS control
evilbar has successfully been built and tested on the following systems:
- FreeBSD 4.3, 4.6, 4.7, 5.0, -CURRENT
- Debian 3.0 (kernel 2.4.18-bf2.4)
- RedHat 7.3 (kernel 2.4.18-3)
Installation:
Basic:
This will get you the vanilla evilbar with XMMS control and the clock.
./configure
make
make install
Advanced:
./configure has a few special evilbar options:
--enable-apm Enables the APM module that shows battery-status
--disable-xmms Disable XMMS control
<<lessevilbar has successfully been built and tested on the following systems:
- FreeBSD 4.3, 4.6, 4.7, 5.0, -CURRENT
- Debian 3.0 (kernel 2.4.18-bf2.4)
- RedHat 7.3 (kernel 2.4.18-3)
Installation:
Basic:
This will get you the vanilla evilbar with XMMS control and the clock.
./configure
make
make install
Advanced:
./configure has a few special evilbar options:
--enable-apm Enables the APM module that shows battery-status
--disable-xmms Disable XMMS control
Download (0.13MB)
Added: 2005-10-07 License: GPL (GNU General Public License) Price:
1477 downloads
Libgenerics 1.2.1
Libgenerics is a c++ library that provides object services to analyze class type. more>>
Libgenerics is a c++ library that provides object services to analyze class type at runtime sharing the definitions between dynamic modules.
It provides serialization services abstraction too. The project is an absolute generic library.
Enhancements:
- autotool layer added
<<lessIt provides serialization services abstraction too. The project is an absolute generic library.
Enhancements:
- autotool layer added
Download (0.057MB)
Added: 2007-06-18 License: GPL (GNU General Public License) Price:
858 downloads
libStreamedXML 1.2.1
libStreamedXML is a parser for Streamed XML, a simplified subset of XML initially developed for networked embedded applications. more>>
libStreamedXML is a parser for Streamed XML, a simplified subset of XML initially developed for networked embedded applications.
Streamed XML was designed to be simpler and more robust than XML while still keeping the overall structure of such a document.
libStreamedXML library is a C++ parser providing an event-based interface (much like sax).
Enhancements:
- libCStreamedXML and a test program were added.
- libCStreamedXML is a smaller and simpler implementation of a Streamed XML parser written in C.
<<lessStreamed XML was designed to be simpler and more robust than XML while still keeping the overall structure of such a document.
libStreamedXML library is a C++ parser providing an event-based interface (much like sax).
Enhancements:
- libCStreamedXML and a test program were added.
- libCStreamedXML is a smaller and simpler implementation of a Streamed XML parser written in C.
Download (0.031MB)
Added: 2006-08-25 License: GPL (GNU General Public License) Price:
1155 downloads
Localizer 1.2.1
Localizer is a tool for building mutilingual Web sites. more>>
Localizer is the de-facto standard to build multilingual applications with Zope. It helps to internationalize and localize Zope products and to build multilingual web sites through the Management Interface. The project deals with both user interfaces and content.
<<less Download (0.20MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
1004 downloads
tictactoe 1.2.1
tictactoe project is an implementation of the childrens game. more>>
tictactoe project is an implementation of the childrens game.
This implementation of tictactoe can have an NxN sized board, where N is an odd number >= 3.
What makes this implementation different from others is that it does not use lookahead, and still never loses. It is more of an experiment than anything else.
There are two pieces - X and O. O always plays first. There are no real rules to this game, except that the first person to complete a line (row, column or diagonal) from one end to the other is the winner. Diagonals MUST pass through the centre.
The size of the board is configured at compile time by setting the SIZE macro. Only odd sized boards (3, 5, 7) will work. Dont even bother with even sized boards, I dont know what will happen.
Whats so different about this implementation? Well, it doesnt use lookahead like most other implementations would. It basically places its piece on all available positions, and checks if the board arrangement `looks good or not. It picks the best looking option.
This implementation should never lose, on any board >= 3X3, although it has been known to win on occassion.
The system is based on six rules that I will document later, but can be found in the source. The first two - win if possible, and block if opponent can win may be removed in a future version if the other rules seem to cover them.
Enhancements:
- Fixed one more losing case. Thanks to Philipp Niemann.
<<lessThis implementation of tictactoe can have an NxN sized board, where N is an odd number >= 3.
What makes this implementation different from others is that it does not use lookahead, and still never loses. It is more of an experiment than anything else.
There are two pieces - X and O. O always plays first. There are no real rules to this game, except that the first person to complete a line (row, column or diagonal) from one end to the other is the winner. Diagonals MUST pass through the centre.
The size of the board is configured at compile time by setting the SIZE macro. Only odd sized boards (3, 5, 7) will work. Dont even bother with even sized boards, I dont know what will happen.
Whats so different about this implementation? Well, it doesnt use lookahead like most other implementations would. It basically places its piece on all available positions, and checks if the board arrangement `looks good or not. It picks the best looking option.
This implementation should never lose, on any board >= 3X3, although it has been known to win on occassion.
The system is based on six rules that I will document later, but can be found in the source. The first two - win if possible, and block if opponent can win may be removed in a future version if the other rules seem to cover them.
Enhancements:
- Fixed one more losing case. Thanks to Philipp Niemann.
Download (0.011MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1037 downloads
QUIViewer 1.2.1
QUIViewer is a Qt only version of the KDE application KUIViewer. more>>
This application is a Qt only version of the KDE application KUIViewer that ships with the KDE SDK. It is able to allow people to view Qt Designer UI files without having any of the Qt development tools installed.
The advantage of this tool is that developers can show customers what the user interface will not only look like, but how it will behave. Unlike screenshots that dont give a good feel for tab layout and key accelerators the UI viewer will let the user see it in action.
The utility also has the ability to print screen captures of the current user interface, save image snapshots of the user interface, and also to copy an image of the current user interface to the clipboard.
Main features:
- Print screen captures of the user interface.
- Save screen captures in various image formats.
- Capture directly to the clipboard.
- Support for modal dialogs.
- Support for preview in other Qt styles.
Enhancements:
- Fixed bug where QMainWindow based ui files would not close properly when closed via the window manager.
- Fixed bug where slots would connect to the main UI Viewer.
<<lessThe advantage of this tool is that developers can show customers what the user interface will not only look like, but how it will behave. Unlike screenshots that dont give a good feel for tab layout and key accelerators the UI viewer will let the user see it in action.
The utility also has the ability to print screen captures of the current user interface, save image snapshots of the user interface, and also to copy an image of the current user interface to the clipboard.
Main features:
- Print screen captures of the user interface.
- Save screen captures in various image formats.
- Capture directly to the clipboard.
- Support for modal dialogs.
- Support for preview in other Qt styles.
Enhancements:
- Fixed bug where QMainWindow based ui files would not close properly when closed via the window manager.
- Fixed bug where slots would connect to the main UI Viewer.
Download (0.058MB)
Added: 2005-06-13 License: GPL (GNU General Public License) Price:
1593 downloads
OilWar 1.2.1
OilWar is a game where an evil army is attacking your country and tries to steal your oil. more>>
OilWar is a game where an evil army is attacking your country and tries to steal your oil.
Your mission is to waste the invaders, protect the oil and save your property.
Story
Evil army is attacking your land and tries to steal your oil.
Mission
Waste the invaders, protect the oil, protect the mother land...
Controls
Left mouse button: Shoot rifle
Right mouse button: Shoot grenade
F10: Screenshot
F11: Toggle fullscreen
Sounds
Sounds can be disabled with --disable-sound configure flag.
Notes
The highscore file is saved (if the game is "make install":ed) to /var/games/oilwar.scores and its world writable.
Enhancements:
- Better Highscore loading & saving
<<lessYour mission is to waste the invaders, protect the oil and save your property.
Story
Evil army is attacking your land and tries to steal your oil.
Mission
Waste the invaders, protect the oil, protect the mother land...
Controls
Left mouse button: Shoot rifle
Right mouse button: Shoot grenade
F10: Screenshot
F11: Toggle fullscreen
Sounds
Sounds can be disabled with --disable-sound configure flag.
Notes
The highscore file is saved (if the game is "make install":ed) to /var/games/oilwar.scores and its world writable.
Enhancements:
- Better Highscore loading & saving
Download (0.50MB)
Added: 2006-07-21 License: GPL (GNU General Public License) Price:
1194 downloads
flexbackup 1.2.1
flexbackup is a flexible backup tool. more>>
flexbackup is for you if you have a single or small number of machines, amanda is "too much", and tarring things up by hand isnt nearly enough...
Main features:
- Easy to configure
- Uses dump, afio, GNU tar, cpio, star, pax, or zip archivers
- Full and numbered levels of incremental backup (acts like "dump")
- Compression and buffering options for all backup types
- Does remote filesystems (over rsh/ssh; no special service)
- Package delta mode can backup files not owned by rpm, or owned+changed files.
- Writes to tapes, on-disk archive files, or on-disk directory trees
- Keeps a table of contents so you know what archives are on each tape
- Nice log files
<<lessMain features:
- Easy to configure
- Uses dump, afio, GNU tar, cpio, star, pax, or zip archivers
- Full and numbered levels of incremental backup (acts like "dump")
- Compression and buffering options for all backup types
- Does remote filesystems (over rsh/ssh; no special service)
- Package delta mode can backup files not owned by rpm, or owned+changed files.
- Writes to tapes, on-disk archive files, or on-disk directory trees
- Keeps a table of contents so you know what archives are on each tape
- Nice log files
Download (0.083MB)
Added: 2005-04-12 License: GPL (GNU General Public License) Price:
1655 downloads
ghasher 1.2.1
ghasher can easily show the MD5 sum(or md2,md4,sha1,sha,ripemd160,dss1) of a file. more>>
ghasher can easily show the MD5 sum(or md2,md4,sha1,sha,ripemd160,dss1) of a file.
Motivation for this utility was that users shouldnt need to open a command line for checking the MD5 sum of files they download.
Its written using GTK2 and OpenSSL.
<<lessMotivation for this utility was that users shouldnt need to open a command line for checking the MD5 sum of files they download.
Its written using GTK2 and OpenSSL.
Download (0.011MB)
Added: 2005-11-22 License: GPL (GNU General Public License) Price:
1437 downloads
Cayenne 1.2.1
Cayenne is a free object-relational persistence framework written in Java. more>>
Cayenne is a powerful, full-featured Java Object Relational Mapping framework. Cayenne project is open source and completely free. One of the main Cayenne distinctions is that it comes with cross-platform modeling GUI tools.
This places Cayenne in the league of its own, making it a very attractive choice over both closed source commercial products and traditional "edit your own XML" open source solutions.
Enhancements:
- This release fixes a number of bugs in 1.2.
<<lessThis places Cayenne in the league of its own, making it a very attractive choice over both closed source commercial products and traditional "edit your own XML" open source solutions.
Enhancements:
- This release fixes a number of bugs in 1.2.
Download (9.8MB)
Added: 2006-08-30 License: The Apache License 2.0 Price:
1150 downloads
Beepage 1.2.1
Beepage is a Unix-based text paging package. more>>
Beepage is a Unix-based text paging package. Text pages sent by the client over TCP/IP are received by the provided server, which queues and transmits the data to any paging service providers that support the Telocator Alpha-numeric Protocol.
The beepage package includes two programs, a cleint and a server: beepaged, the Text Page Protocol daemon which accepts pages on a well-known TCP port and transmits them over one or more modems to a TAP (aka PET, IXA) paging-service provider; and beep, a command-line TPP client.
Two beepage clients are currently available:
"beep" a Unix command-line interface
"winbeepage" a Windows graphical interface
A Mac OS X version is nearing release.
The server is supported on the following platforms:
Solaris
Linux
OpenBSD
It probably works on other Unix-like operating systems.
Enhancements:
- Improved TAP banner detection
- First of several fixes related to the addition of MIME support
- Cleaned up exit codes
<<lessThe beepage package includes two programs, a cleint and a server: beepaged, the Text Page Protocol daemon which accepts pages on a well-known TCP port and transmits them over one or more modems to a TAP (aka PET, IXA) paging-service provider; and beep, a command-line TPP client.
Two beepage clients are currently available:
"beep" a Unix command-line interface
"winbeepage" a Windows graphical interface
A Mac OS X version is nearing release.
The server is supported on the following platforms:
Solaris
Linux
OpenBSD
It probably works on other Unix-like operating systems.
Enhancements:
- Improved TAP banner detection
- First of several fixes related to the addition of MIME support
- Cleaned up exit codes
Download (0.29MB)
Added: 2006-09-08 License: BSD License Price:
1143 downloads
XStream 1.2.1
XStream is a simple library to serialize objects to XML and back again. more>>
XStream is a simple library to serialize objects to XML and back again. It is easy to use, is not requiring the definition of mappings, is fast, and integrates with other XML APIs.
Main features:
- Ease of use. A high level facade is supplied that simplifies common use cases.
- No mappings required. Most objects can be serialized without need for specifying mappings.
- Performance. Speed and low memory footprint are a crucial part of the design, making it suitable for large object graphs or systems with high message throughput.
- Clean XML. No information is duplicated that can be obtained via reflection. This results in XML that is easier to read for humans and more compact than native Java serialization.
- Requires no modifications to objects. Serializes internal fields, including private and final. Supports non-public and inner classes. Classes are not required to have default constructor.
- Full object graph support. Duplicate references encountered in the object-model will be maintained. Supports circular references.
- Integrates with other XML APIs. By implementing an interface, XStream can serialize directly to/from any tree structure (not just XML).
- Customizable conversion stategies. Strategies can be registered allowing customization of how particular types are represented as XML.
- Error messages. When an exception occurs due to malformed XML, detailed diagnostics are provided to help isolate and fix the problem
Enhancements:
- A lot has changed since 1.1.2, especially for writing DOM structures or JSON.
- A lot of new converters have been added.
- There is more support for JDK 5-specific elements.
- JRockit and certain CGLIB proxies are supported.
- Many more abilities are available to tweak the processed XML.
<<lessMain features:
- Ease of use. A high level facade is supplied that simplifies common use cases.
- No mappings required. Most objects can be serialized without need for specifying mappings.
- Performance. Speed and low memory footprint are a crucial part of the design, making it suitable for large object graphs or systems with high message throughput.
- Clean XML. No information is duplicated that can be obtained via reflection. This results in XML that is easier to read for humans and more compact than native Java serialization.
- Requires no modifications to objects. Serializes internal fields, including private and final. Supports non-public and inner classes. Classes are not required to have default constructor.
- Full object graph support. Duplicate references encountered in the object-model will be maintained. Supports circular references.
- Integrates with other XML APIs. By implementing an interface, XStream can serialize directly to/from any tree structure (not just XML).
- Customizable conversion stategies. Strategies can be registered allowing customization of how particular types are represented as XML.
- Error messages. When an exception occurs due to malformed XML, detailed diagnostics are provided to help isolate and fix the problem
Enhancements:
- A lot has changed since 1.1.2, especially for writing DOM structures or JSON.
- A lot of new converters have been added.
- There is more support for JDK 5-specific elements.
- JRockit and certain CGLIB proxies are supported.
- Many more abilities are available to tweak the processed XML.
Download (5.9MB)
Added: 2006-11-18 License: BSD License Price:
1076 downloads
Aethera 1.2.1
Aethera is a pim application that handles all kinds of personal information. more>>
Aethera is a pim application, i.e. it handles all kinds of personal information: email, contacts, notes, tasks, todos, journals. It has various communication features regarding: send/receive email, send/receive task requests and appointment requests via email. It can help you to know quickly the worlds news and weather.
Aethera is a new cutting edge communications and personal data management software written with Qt and deployed for Linux, Windows and Macintosh. By PIM we mean Personal Information Manager, by PDR we mean Personal Data Repository, the rest should be obvious.
Aethera supports all the standard messaging protocols such as POP and IMAP with full synchronization capability as well as support for multiple identities. All the features you would expect to find in an industrial strength email system are part of Aethera. In addition there is a personal calendar and schedule, as well as "sticky" notes, "To Do" lists, an address book, groupware compatibility via Kolab, and optional plug ins the extend the idea of collaboration beyond the bounds of typical groupware with instant messaging, whiteboarding and voice over IP (VoIP). The combination of Aethera with Kolab provides you with a very powerful combination that can realistically replace Outlook/Exchange and in some cases Lotus Notes, for only the price of the hardware to install it on. There are no per server costs or per user costs unless you want the optional plug ins, which are all priced at trivial amounts. Since Aethera runs on virtually any operating system you are likely to use, it doesnt require that you make any changes on the desktop.
The Groupware portion of Aethera can be as simple as sharing your personal schedule to arrange meetings and discover scheduling conflicts, sharing your contacts or even your ideas using notes and images. There is support for Kolab Groupware server, a good solution for people who need synchronization and instant access to information. Aethera is also a GPL, this means you get the source code with the application to do whatever you want. We dont charge for Aethera, however we do have the optional plug ins that we charge for, but you are free to create your own plug ins for your own use or to give away to other people and companies.
We are available to build plug ins or add functionality on a time and materials basis if you wish to have specific customizations in a timely fashion, just contact us at . Aethera uses advanced functionality that we developed that allows you to add new plug ins with relative ease across operating systems, making Aethera truly unique and extensible. Our use of Qt from Trolltech gives us the ability to easily make the user interface multi-platform, and we take care of the rest.
Aethera is well suited, and designed, around the idea of collaboration and information management. So lets talk about whats there now, what wed like to do in the future and what is possible to do.
Through our creative use of Jabber weve been able to integrate not only an instant messaging client, but also the worlds only collaborative whiteboarding application built on top of Jabber. This allows you to rapidly communicate with friends and co-workers anywhere in the world and be able to easily share visual ideas. Our Jabber client is also the only one currently available that supports file transfers between clients with no problems with firewalls. Now an extension of this idea would be to allow you to share any object within Aethera to people you are Jabbering with, for example: Say you are in a one on one chat, or better yet, a MUC (Multi User Chat in Jabber terms) and you drop a Contact from Aethera in to the chat, everyone can have that automatically load in to their contact list, or maybe it is a file, a picture, etc. This is all theoretically possible today with the technology that exists in the framework, it just hasnt been written yet.
Weve added what we call the aethera-command extension. This allows you to essentially script Aethera externally. So for example on Windows, you could have a VBA script that was part of MS Excel that could populate your Address Book with the data out of Excel. Some of the things were talking about here can be solved with aethera-command, the possibilities are only limited by your imagination.
Another useful tool that could be done in a relatively short amount of time would be a CRM module, this is "Customer Resource Management" and is invaluable for sales people. If youve ever seen ACT! or Goldmine, this is what we are talking about, but far more flexible and better integration between all the modules. The design is done, but resources are thin to do everything we want.
Aethera could also be enabled to create discussion forums and knowledge bases within the enterprise or across the Internet. Aethera will also supports sophisticated work flow management through a graphical interface that allows you describe the flow of work through a process. Perhaps a document needs to be reviewed by, and signed off by several different people in a particular sequence. When that is done, then a copy is faxed or printed or emailed to another recipient at another location, and the task is then flagged as completed and notification is sent to the task manager. A web interface is also available so that you are never out of touch with your information. Eventually Aethera will integrate with our Project Management software as a fully integrated solution.
The PDR portion of Aethera will allow for new, and to our knowledge, completely unique features for managing your personal information. How many places do you have to organize information? You have your disk drive where you create directory structures and save information. You have web pages that you save in the bookmarks of your web browser, and you have your email. How often have you saved a bookmark only to have the link go away later, or you cant remember why you saved it? How often have you saved an email, and then cant remember why? Two very exciting pieces of Aethera address these issues for you.
Weve been designing a component on Linux that will allow any enabled application to save its information into the Aethera virtual file system. This one step allows you, but does not require you, to save any and all files into a single hierarchy that is easily organized, indexed and searchable. You will even be able to use Aethera to save your bookmarks through Konqueror and have multiple sorting criteria so that you can easily find and use them. A plug in for Konqueror will also allow you to save whole, or in part, web pages into the Aethera VFS instead of just saving the URL. This becomes even more useful with the next piece. It is conceivable to provide the same level of functionality through Internet Explorer on Windows and Safari on OS X.
The companion piece is the Annotation Tool. This component allows the user to add any personal notes to any piece of information being saved. So now you can save off that web page and make some notes on it when you save it as well as maintain the original URL information if needed. You can now file away your emails into folders and put your own notes and thoughts with them, ensuring that you will always know what your various correspondence were about in case the thread is lost. Anything that is saved into the VFS will have the ability to be annotated, giving you ultimate control over your personal information.
The VFS can easily be swapped to a SQL compliant database backend, which provides for better data security and more robust searching capability, not to mention better speed as your data repositories grow. You could then use any type of database tool to browse and report from those data structures (provided you have security clearance).
We hope you are starting to see and understand the vision of Aethera, what it can do today, and what it can do tomorrow.
Enhancements:
Whats new:
Groupware (Kolab1, Citadel)
- Aethera can use even empty Shared Folders (Kolab1 compatibility).
- The jabber chat logs can be saved in Notes Shared Folders (Kolab1 compatibility)
General
- Sound support for notifications, you can use the autodetect mode or just choose your player.
- Sound support can be disabled if you want to hear only your music :).
- More translations available (Greek support in progress). The current supported languages are French, German, Russian and Portuguese (BR).
tkJabberPro
- The notification system has been improved and you will get notifications as popup messages, as sounds or as status bar messages depending on the situation.
- Now its more comfortable to know about your new instant messages from your contacts or file transfer status.
- Now it comes with a system tray support (Linux only) which works very well with the new notification system.
- Better support for unicode, so that you can communicate with friends all over the world.
- The management of chat logs has been improved with a search mechanism and with groupware support.
- There is a new search line which let you see only the needed chat logs.
- The groupware support (Kolab1 compatible) helps you to store your chat logs on the server for sharing it with other people or just to have your important data available from different location.
- The chat list view has alternative background color for a better visibility.
- You can send/request authorization when you need. Adding a new contact will manage the authorizations automaticaly. The layout for authorization dialog has been fixed.
Improvements and fixes:
Datebook
- ICAL format support has some fixes.
- The automaticaly saving options works now.
- The sound option for events alarm works now. It is using the new sound support.
- Removing a calendar with Delete key isnt possible anymore.
Addressbook
- VCARD support is reading/importing both VCARD2 and VCARD3 data format and it exports data only in VCARD3 format. In this way more people will be able to import their old contacts in Aethera.
- The support for phone field is fixed (even as a SIP type).
- The Kolab support is better too.
- The contacts view list is using alternative background for a better visibility.
<<lessAethera is a new cutting edge communications and personal data management software written with Qt and deployed for Linux, Windows and Macintosh. By PIM we mean Personal Information Manager, by PDR we mean Personal Data Repository, the rest should be obvious.
Aethera supports all the standard messaging protocols such as POP and IMAP with full synchronization capability as well as support for multiple identities. All the features you would expect to find in an industrial strength email system are part of Aethera. In addition there is a personal calendar and schedule, as well as "sticky" notes, "To Do" lists, an address book, groupware compatibility via Kolab, and optional plug ins the extend the idea of collaboration beyond the bounds of typical groupware with instant messaging, whiteboarding and voice over IP (VoIP). The combination of Aethera with Kolab provides you with a very powerful combination that can realistically replace Outlook/Exchange and in some cases Lotus Notes, for only the price of the hardware to install it on. There are no per server costs or per user costs unless you want the optional plug ins, which are all priced at trivial amounts. Since Aethera runs on virtually any operating system you are likely to use, it doesnt require that you make any changes on the desktop.
The Groupware portion of Aethera can be as simple as sharing your personal schedule to arrange meetings and discover scheduling conflicts, sharing your contacts or even your ideas using notes and images. There is support for Kolab Groupware server, a good solution for people who need synchronization and instant access to information. Aethera is also a GPL, this means you get the source code with the application to do whatever you want. We dont charge for Aethera, however we do have the optional plug ins that we charge for, but you are free to create your own plug ins for your own use or to give away to other people and companies.
We are available to build plug ins or add functionality on a time and materials basis if you wish to have specific customizations in a timely fashion, just contact us at . Aethera uses advanced functionality that we developed that allows you to add new plug ins with relative ease across operating systems, making Aethera truly unique and extensible. Our use of Qt from Trolltech gives us the ability to easily make the user interface multi-platform, and we take care of the rest.
Aethera is well suited, and designed, around the idea of collaboration and information management. So lets talk about whats there now, what wed like to do in the future and what is possible to do.
Through our creative use of Jabber weve been able to integrate not only an instant messaging client, but also the worlds only collaborative whiteboarding application built on top of Jabber. This allows you to rapidly communicate with friends and co-workers anywhere in the world and be able to easily share visual ideas. Our Jabber client is also the only one currently available that supports file transfers between clients with no problems with firewalls. Now an extension of this idea would be to allow you to share any object within Aethera to people you are Jabbering with, for example: Say you are in a one on one chat, or better yet, a MUC (Multi User Chat in Jabber terms) and you drop a Contact from Aethera in to the chat, everyone can have that automatically load in to their contact list, or maybe it is a file, a picture, etc. This is all theoretically possible today with the technology that exists in the framework, it just hasnt been written yet.
Weve added what we call the aethera-command extension. This allows you to essentially script Aethera externally. So for example on Windows, you could have a VBA script that was part of MS Excel that could populate your Address Book with the data out of Excel. Some of the things were talking about here can be solved with aethera-command, the possibilities are only limited by your imagination.
Another useful tool that could be done in a relatively short amount of time would be a CRM module, this is "Customer Resource Management" and is invaluable for sales people. If youve ever seen ACT! or Goldmine, this is what we are talking about, but far more flexible and better integration between all the modules. The design is done, but resources are thin to do everything we want.
Aethera could also be enabled to create discussion forums and knowledge bases within the enterprise or across the Internet. Aethera will also supports sophisticated work flow management through a graphical interface that allows you describe the flow of work through a process. Perhaps a document needs to be reviewed by, and signed off by several different people in a particular sequence. When that is done, then a copy is faxed or printed or emailed to another recipient at another location, and the task is then flagged as completed and notification is sent to the task manager. A web interface is also available so that you are never out of touch with your information. Eventually Aethera will integrate with our Project Management software as a fully integrated solution.
The PDR portion of Aethera will allow for new, and to our knowledge, completely unique features for managing your personal information. How many places do you have to organize information? You have your disk drive where you create directory structures and save information. You have web pages that you save in the bookmarks of your web browser, and you have your email. How often have you saved a bookmark only to have the link go away later, or you cant remember why you saved it? How often have you saved an email, and then cant remember why? Two very exciting pieces of Aethera address these issues for you.
Weve been designing a component on Linux that will allow any enabled application to save its information into the Aethera virtual file system. This one step allows you, but does not require you, to save any and all files into a single hierarchy that is easily organized, indexed and searchable. You will even be able to use Aethera to save your bookmarks through Konqueror and have multiple sorting criteria so that you can easily find and use them. A plug in for Konqueror will also allow you to save whole, or in part, web pages into the Aethera VFS instead of just saving the URL. This becomes even more useful with the next piece. It is conceivable to provide the same level of functionality through Internet Explorer on Windows and Safari on OS X.
The companion piece is the Annotation Tool. This component allows the user to add any personal notes to any piece of information being saved. So now you can save off that web page and make some notes on it when you save it as well as maintain the original URL information if needed. You can now file away your emails into folders and put your own notes and thoughts with them, ensuring that you will always know what your various correspondence were about in case the thread is lost. Anything that is saved into the VFS will have the ability to be annotated, giving you ultimate control over your personal information.
The VFS can easily be swapped to a SQL compliant database backend, which provides for better data security and more robust searching capability, not to mention better speed as your data repositories grow. You could then use any type of database tool to browse and report from those data structures (provided you have security clearance).
We hope you are starting to see and understand the vision of Aethera, what it can do today, and what it can do tomorrow.
Enhancements:
Whats new:
Groupware (Kolab1, Citadel)
- Aethera can use even empty Shared Folders (Kolab1 compatibility).
- The jabber chat logs can be saved in Notes Shared Folders (Kolab1 compatibility)
General
- Sound support for notifications, you can use the autodetect mode or just choose your player.
- Sound support can be disabled if you want to hear only your music :).
- More translations available (Greek support in progress). The current supported languages are French, German, Russian and Portuguese (BR).
tkJabberPro
- The notification system has been improved and you will get notifications as popup messages, as sounds or as status bar messages depending on the situation.
- Now its more comfortable to know about your new instant messages from your contacts or file transfer status.
- Now it comes with a system tray support (Linux only) which works very well with the new notification system.
- Better support for unicode, so that you can communicate with friends all over the world.
- The management of chat logs has been improved with a search mechanism and with groupware support.
- There is a new search line which let you see only the needed chat logs.
- The groupware support (Kolab1 compatible) helps you to store your chat logs on the server for sharing it with other people or just to have your important data available from different location.
- The chat list view has alternative background color for a better visibility.
- You can send/request authorization when you need. Adding a new contact will manage the authorizations automaticaly. The layout for authorization dialog has been fixed.
Improvements and fixes:
Datebook
- ICAL format support has some fixes.
- The automaticaly saving options works now.
- The sound option for events alarm works now. It is using the new sound support.
- Removing a calendar with Delete key isnt possible anymore.
Addressbook
- VCARD support is reading/importing both VCARD2 and VCARD3 data format and it exports data only in VCARD3 format. In this way more people will be able to import their old contacts in Aethera.
- The support for phone field is fixed (even as a SIP type).
- The Kolab support is better too.
- The contacts view list is using alternative background for a better visibility.
Download (7.4MB)
Added: 2005-05-25 License: GPL (GNU General Public License) Price:
1613 downloads
Cryptcat 1.2.1
Cryptcat is the standard netcat enhanced with twofish encryption with ports for WIndows NT, BSD and Linux. more>>
Cryptcat is the standard netcat enhanced with twofish encryption with ports for WIndows NT, BSD and Linux. Twofish is courtesy of counterpane, and cryptix.
TCP/IP swiss army knife extended with twofish encryption - Cryptcat is a simple Unix utility which reads and writes data across network connections, using TCP or UDP protocol while encrypting the data being transmitted. It is designed to be a reliable "back-end" tool that can be used directly or easily driven by other programs and scripts. Also, it is a feature-rich network debugging and exploration tool, since it can create almost any kind of connection you would need and has several interesting built-in capabilities.
Enhancements:
- Thanks for the contributions: linux 7.0 build fixes, tricky bug fixes, -k option, OpenBSD/FreeBSD compiles, directory friendly zips & tars, including MSVC++ makes.
- Since release alot of people have been submitting changes (many times for the same thing). Ive been doing my best to keep up, we are trying to get this up on sourceforge, but there seems to be some sort of "approval" process that makes it unclear if that will actually happen.
- So, if you have submitted something, and its not here, let me know. If youve submitted a change, and its here with someone elses name, that just means someone else got the same change in before you.
<<lessTCP/IP swiss army knife extended with twofish encryption - Cryptcat is a simple Unix utility which reads and writes data across network connections, using TCP or UDP protocol while encrypting the data being transmitted. It is designed to be a reliable "back-end" tool that can be used directly or easily driven by other programs and scripts. Also, it is a feature-rich network debugging and exploration tool, since it can create almost any kind of connection you would need and has several interesting built-in capabilities.
Enhancements:
- Thanks for the contributions: linux 7.0 build fixes, tricky bug fixes, -k option, OpenBSD/FreeBSD compiles, directory friendly zips & tars, including MSVC++ makes.
- Since release alot of people have been submitting changes (many times for the same thing). Ive been doing my best to keep up, we are trying to get this up on sourceforge, but there seems to be some sort of "approval" process that makes it unclear if that will actually happen.
- So, if you have submitted something, and its not here, let me know. If youve submitted a change, and its here with someone elses name, that just means someone else got the same change in before you.
Download (0.18MB)
Added: 2006-08-01 License: GPL (GNU General Public License) Price:
724 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 icebreaker 1.2.1 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