soldat 1.2.1
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 137
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
gshowtv 1.2.1
GShow TV is a TV program schedule viewer and a Personal Video Recorder GUI. more>>
GShow TV is a TV program schedule viewer and a Personal Video Recorder GUI. The basic purpose of GShow TV is to provide a nice GUI for viewing tv program schedule information and for recording the programs.
GShow TV doesnt itself do the recording of the selected programs, rather it uses any PVR solution that exists. GShow TV is globally usable as it uses XMLTV to access the program schedules, and xmltv has support for multitude of countries. (mid 2004 support for Canada, the USA, the UK, Germany, Austria, Finland, Spain, Italy, the Netherlands, Hungary, Denmark, Japan, Sweden, France, Norway, Portugal and Romania)
The interface between the recording software and the GUI is two trivial shell scripts, which are of course modifiable by the user as they see fit. The reason why this separation is simple: On linux almost everybody who has a TV card on their computer uses a different recording solution.
The multitude of home made recording systems is countless. However, most home made systems dont include a nice GUI and hence GShow TV. GShow TV uses XMLTV for its tv listing. GShow TV can be used as a TV Guide without its recording functionality.
<<lessGShow TV doesnt itself do the recording of the selected programs, rather it uses any PVR solution that exists. GShow TV is globally usable as it uses XMLTV to access the program schedules, and xmltv has support for multitude of countries. (mid 2004 support for Canada, the USA, the UK, Germany, Austria, Finland, Spain, Italy, the Netherlands, Hungary, Denmark, Japan, Sweden, France, Norway, Portugal and Romania)
The interface between the recording software and the GUI is two trivial shell scripts, which are of course modifiable by the user as they see fit. The reason why this separation is simple: On linux almost everybody who has a TV card on their computer uses a different recording solution.
The multitude of home made recording systems is countless. However, most home made systems dont include a nice GUI and hence GShow TV. GShow TV uses XMLTV for its tv listing. GShow TV can be used as a TV Guide without its recording functionality.
Download (0.20MB)
Added: 2007-05-29 License: GPL (GNU General Public License) Price:
880 downloads
Kwotes 1.2.1
Kwotes is a chat quote database system with a twist. more>>
Kwotes is a chat quote database system with a twist.
The quotes are publicly moderated, so its up to you to maintain the quality. All quotes are accepted and if their ranking falls too low for too long, they are deleted.
<<lessThe quotes are publicly moderated, so its up to you to maintain the quality. All quotes are accepted and if their ranking falls too low for too long, they are deleted.
Download (0.014MB)
Added: 2005-12-22 License: GPL (GNU General Public License) Price:
1401 downloads
OBLISK 1.2.1
OBLISK is a packaging system that is distribution independent. more>>
OBLISK, the Open Binary Linux Install System Kit, aims to make any package install on any modern GNU/Linux system.
OBLISK packages are sent in an appdir-like package, so they can be ran entirely in place, but also have an installer, so they can be installed to /usr, or any other path.
<<lessOBLISK packages are sent in an appdir-like package, so they can be ran entirely in place, but also have an installer, so they can be installed to /usr, or any other path.
Download (0.084MB)
Added: 2005-11-10 License: MIT/X Consortium License Price:
1443 downloads
Atheme 1.2.1
Atheme is a portable, secure set of IRC services that are designed to run on many IRCds. more>>
Atheme project is a portable, secure set of open source IRC services released under the BSD license, designed to run on many IRCds.
Unlike alternative packages, Athemes core is minimalistic, providing only required functionality. Extra modules providing functionality you want as a network administrator can be acquired through our (upcoming) module repository.
That said, Atheme provides a fairly complete services set, excluding features designed for oper abuse. It also adds a twist on many of the classic features of Services, such as NOOP.
<<lessUnlike alternative packages, Athemes core is minimalistic, providing only required functionality. Extra modules providing functionality you want as a network administrator can be acquired through our (upcoming) module repository.
That said, Atheme provides a fairly complete services set, excluding features designed for oper abuse. It also adds a twist on many of the classic features of Services, such as NOOP.
Download (0.70MB)
Added: 2006-10-18 License: GPL (GNU General Public License) Price:
1101 downloads
SmartTemplate 1.2.1
SmartTemplate is a Template Engine that was designed to support large scale, web based applications. more>>
SmartTemplate is a Template Engine that was designed to support large scale, web based applications.
Whats so special about it?
Common template engines work like the following: Your PHP script specifies an HTML template and assigns some dynamic content to display. The template parser replaces all placeholders within the template with the assigned content and displays it to the user. This means a lot of string processing and regular expression work each time you want to display some content.
SmartTemplate works like a template compiler that converts templates into executable PHP code and stores it for later reuse. The first time a new template is processed, all placeholders in the template are replaced by small PHP code elements that print the assigned content. The HTML template fragment < H3 >{TITLE}< /H3 >, for example, is converted into something like < H3 >< ?php echo $TITLE; ? >< /H3 >. If you have assigned your content to the right variables, there is no need for any template parsing anymore. The only thing that has to be done is to include and execute the compiled template. This usually increases the execution time of the template engine dramatically.
SmartTemplate supports:
- Simple Scalar Substitution (Strings, etc.)
- Block Iterations (nested Arrays / BEGIN..END)
- Basic Control Structures (IF..ELSEIF..ELSE)
- Custom Extension (Output filters, uppercase, sprintf, etc.)
- Template Compilation (HTML templates are converted to executable PHP Code)
- SubTemplate System (HTML templates can be included on other templates)
- Output Caching (Accelerates your applications by reusing page output)
<<lessWhats so special about it?
Common template engines work like the following: Your PHP script specifies an HTML template and assigns some dynamic content to display. The template parser replaces all placeholders within the template with the assigned content and displays it to the user. This means a lot of string processing and regular expression work each time you want to display some content.
SmartTemplate works like a template compiler that converts templates into executable PHP code and stores it for later reuse. The first time a new template is processed, all placeholders in the template are replaced by small PHP code elements that print the assigned content. The HTML template fragment < H3 >{TITLE}< /H3 >, for example, is converted into something like < H3 >< ?php echo $TITLE; ? >< /H3 >. If you have assigned your content to the right variables, there is no need for any template parsing anymore. The only thing that has to be done is to include and execute the compiled template. This usually increases the execution time of the template engine dramatically.
SmartTemplate supports:
- Simple Scalar Substitution (Strings, etc.)
- Block Iterations (nested Arrays / BEGIN..END)
- Basic Control Structures (IF..ELSEIF..ELSE)
- Custom Extension (Output filters, uppercase, sprintf, etc.)
- Template Compilation (HTML templates are converted to executable PHP Code)
- SubTemplate System (HTML templates can be included on other templates)
- Output Caching (Accelerates your applications by reusing page output)
Download (0.008MB)
Added: 2006-07-04 License: GPL (GNU General Public License) Price:
1216 downloads
Autostatus 1.2.1
Autostatus is a network and server monitoring program. more>>
Autostatus is a network and server monitoring program. The project is designed to support large, arbitrarily complex networks of computers, and still provide feedback in a very timely fashion. To that extent, it has the following goals:
- Speed - Autostatus attempts to probe for network status as quickly as possible.
- Efficiency - Autostatus will not attempt to check for status on portions of the network it already knows are down, eliminating redundant checks.
- Accuracy - Autostatus presents as accurate a picture of the network status as it can from its perspective.
Autostatus has some features which make it fairly unique among network monitoring programs:
Dependency Resolution
Autostatus can be given information about the path it takes to reach network segments, or other dependencies in network or server topology. Given this dependency information, autostatus will then query for status in the proper order in order to guarantee that:
- Nothing is queried before all of the items upon which it depends have already been queried.
- Nothing is queried if an item upon which it depends is down.
- Items are not incorrectly marked as down when they are simply unreachable due to a dependency failure.
This dependency resolution is, of course, fully recursive. The software will also warn about abnormal conditions in the configuration file such as cyclical dependencies.
Parallel status gathering
Autostatus uses the excellent fping program written by Roland J. Schemers III at Stanford University. (see the fping copyright below). By intelligently grouping services together for parallel testing, Autostatus minimizes the amount of time necessary to scan large numbers of networks or servers.
For testing TCP services, Autostatus uses a component called tcpcheck to perform parallel checks of TCP connections. tcpcheck was developed specifically for Autostatus, but has considerable utility outside of Autostatus.
Status Web Page
Autostatus automatically generates a status web page which reflects the current-known network and server status on a per-item basis.
Email notification
Autostatus sends email when the state of a monitored item changes (based upon configurable thresholds). Using an email to pager program (such as hellpage, by the author, or various other paging programs), it is very easy to route notifications for each service to the correct party.
Multiple service monitoring
Autostatus can monitor both routers/hosts via ICMP messages, and specific services on machines via TCP connections. In keeping with the themes of autostatus, TCP connections may be avoided if the machine is not reachable via ICMP, or may be tried at all times.
Usage: tcpcheck < timeout > < host:port > [host:port]
<<less- Speed - Autostatus attempts to probe for network status as quickly as possible.
- Efficiency - Autostatus will not attempt to check for status on portions of the network it already knows are down, eliminating redundant checks.
- Accuracy - Autostatus presents as accurate a picture of the network status as it can from its perspective.
Autostatus has some features which make it fairly unique among network monitoring programs:
Dependency Resolution
Autostatus can be given information about the path it takes to reach network segments, or other dependencies in network or server topology. Given this dependency information, autostatus will then query for status in the proper order in order to guarantee that:
- Nothing is queried before all of the items upon which it depends have already been queried.
- Nothing is queried if an item upon which it depends is down.
- Items are not incorrectly marked as down when they are simply unreachable due to a dependency failure.
This dependency resolution is, of course, fully recursive. The software will also warn about abnormal conditions in the configuration file such as cyclical dependencies.
Parallel status gathering
Autostatus uses the excellent fping program written by Roland J. Schemers III at Stanford University. (see the fping copyright below). By intelligently grouping services together for parallel testing, Autostatus minimizes the amount of time necessary to scan large numbers of networks or servers.
For testing TCP services, Autostatus uses a component called tcpcheck to perform parallel checks of TCP connections. tcpcheck was developed specifically for Autostatus, but has considerable utility outside of Autostatus.
Status Web Page
Autostatus automatically generates a status web page which reflects the current-known network and server status on a per-item basis.
Email notification
Autostatus sends email when the state of a monitored item changes (based upon configurable thresholds). Using an email to pager program (such as hellpage, by the author, or various other paging programs), it is very easy to route notifications for each service to the correct party.
Multiple service monitoring
Autostatus can monitor both routers/hosts via ICMP messages, and specific services on machines via TCP connections. In keeping with the themes of autostatus, TCP connections may be avoided if the machine is not reachable via ICMP, or may be tried at all times.
Usage: tcpcheck < timeout > < host:port > [host:port]
Download (0.033MB)
Added: 2007-06-26 License: BSD License Price:
850 downloads
Openchart2 1.2.1
Openchart2 provides a simple, yet powerful, interface for Java programmers to create two-dimensional charts and plots. more>> <<less
Download (0.18MB)
Added: 2007-06-20 License: LGPL (GNU Lesser General Public License) Price:
856 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
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
JUDO 1.2.1
JUDO project is a Java IDE for Children and Beginning Programmers. more>>
JUDO project is a Java IDE for Children and Beginning Programmers.
It is very easy to use and has a very simple interface.
It was designed to be used as a teaching aid for teaching programming classes to children.
The programs you create with JUDO can be graphical, text input/output, or both.
All you need to do to write a JUDO program is write a simple void main() function.
<<lessIt is very easy to use and has a very simple interface.
It was designed to be used as a teaching aid for teaching programming classes to children.
The programs you create with JUDO can be graphical, text input/output, or both.
All you need to do to write a JUDO program is write a simple void main() function.
Download (0.15MB)
Added: 2006-10-10 License: GPL (GNU General Public License) Price:
1113 downloads
Gorm 1.2.1
Gorm stands is a Graphical Object Relationship Modeller and is GNUsteps easy-to-use interface designer. Before NeXT Computer Inc more>>
Gorm stands is a Graphical Object Relationship Modeller and is GNUsteps easy-to-use interface designer.
Before NeXT Computer Inc. revolutionized software developement with its OpenStep API, a new way of designing graphical user interfaces was already introduced by NeXT at the beginning of the 90s. Its operating system NeXTstep featured Interface Builder, an application that for the first time allowed developers to quickly create nice user interfaces without having to code everything manually.
Using drag & drop elements of windows such as buttons, sliders, textfields etc were created abd edited, then linked to functions and variables. Thus, Interface Builder helped developers to focus on the code for the actual functions without having to care about stuff not related to their project goal.
As part of the GNUstep project, Gorm is meant to be the counter part to NeXTs Interface Builder. With Gorm designing tough and complex graphical interfaces for your applications can easy and quickly be done using drag & drop, powerful inspectors and teamwork with ProjectCenter.
Gorm allows developers to quickly create and edit graphical application interfaces using a whole lot of GUI elements: windows, menus, buttons, labels, sliders, tables, textfields, browsers, images, altert panels and more. Custom palettes can be dynamically loded to add additional elements or functionality.
<<lessBefore NeXT Computer Inc. revolutionized software developement with its OpenStep API, a new way of designing graphical user interfaces was already introduced by NeXT at the beginning of the 90s. Its operating system NeXTstep featured Interface Builder, an application that for the first time allowed developers to quickly create nice user interfaces without having to code everything manually.
Using drag & drop elements of windows such as buttons, sliders, textfields etc were created abd edited, then linked to functions and variables. Thus, Interface Builder helped developers to focus on the code for the actual functions without having to care about stuff not related to their project goal.
As part of the GNUstep project, Gorm is meant to be the counter part to NeXTs Interface Builder. With Gorm designing tough and complex graphical interfaces for your applications can easy and quickly be done using drag & drop, powerful inspectors and teamwork with ProjectCenter.
Gorm allows developers to quickly create and edit graphical application interfaces using a whole lot of GUI elements: windows, menus, buttons, labels, sliders, tables, textfields, browsers, images, altert panels and more. Custom palettes can be dynamically loded to add additional elements or functionality.
Download (0.56MB)
Added: 2007-05-08 License: GPL (GNU General Public License) Price:
901 downloads
QtSmbstatus 1.2.1
QtSmbstatus is a GUI (graphical user interface) for smbstatus. more>>
QtSmbstatus is a GUI (graphical user interface) for smbstatus. QtSmbstatus is meant to provide the possibility of administering remote machines.
QtSmbstatus was designed as a client/server system secured with SSL. A login and password is required to log on to server (PAM). Qtsmbstatusd ought to be installed on host where SAMBA executes.
client: qtsmbstatus
server: qtsmbstatusd (default port : 4443)
<<lessQtSmbstatus was designed as a client/server system secured with SSL. A login and password is required to log on to server (PAM). Qtsmbstatusd ought to be installed on host where SAMBA executes.
client: qtsmbstatus
server: qtsmbstatusd (default port : 4443)
Download (MB)
Added: 2007-05-19 License: GPL (GNU General Public License) Price:
888 downloads
Libnet 1.1.2.1
Libnet is a high-level API (toolkit) allowing the application programmer to construct and inject network packets. more>>
Libnet is a high-level API (toolkit) allowing the application programmer to construct and inject network packets. It provides a portable and simplified interface for low-level network packet shaping, handling and injection.
Libnet hides much of the tedium of packet creation from the application programmer such as multiplexing, buffer management, arcane packet header information, byte-ordering, OS-dependent issues, and much more.
Libnet features portable packet creation interfaces at both the IP-layer and link-layer, as well as a host of supplementary and complementary functionality. Using libnet, quick and simple packet assembly applications can be whipped up with little effort.
With a bit more time, more complex programs can be written (Traceroute and Ping were easily rewritten using libnet and libpcap).
Libnet was designed and is primarily maintained by Mike D. Schiffman (mike at infonexus dot com) and a host of other people (please see the libnet documentation for the complete list of contributers).
This is an open-source project. Donations are welcomed.
<<lessLibnet hides much of the tedium of packet creation from the application programmer such as multiplexing, buffer management, arcane packet header information, byte-ordering, OS-dependent issues, and much more.
Libnet features portable packet creation interfaces at both the IP-layer and link-layer, as well as a host of supplementary and complementary functionality. Using libnet, quick and simple packet assembly applications can be whipped up with little effort.
With a bit more time, more complex programs can be written (Traceroute and Ping were easily rewritten using libnet and libpcap).
Libnet was designed and is primarily maintained by Mike D. Schiffman (mike at infonexus dot com) and a host of other people (please see the libnet documentation for the complete list of contributers).
This is an open-source project. Donations are welcomed.
Download (1.0MB)
Added: 2006-03-03 License: BSD License Price:
1330 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 soldat 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