pocomy 0.9.1
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 113
PoCoMy 0.9.1
PoCoMy is a Web frontend for administration of a Postfix/Courier/MySQL email system. more>>
PoCoMy is a Web frontend for administration of a Postfix/Courier/MySQL email system. The project is multi-user and includes a multi-language privileges system, delegation of rights per domain. The virtual mail system features virtual domains, forwarding, aliases, sender-aliases, and more.
Enhancements:
- FIXED: change user password
- UPDATED: HowTo
<<lessEnhancements:
- FIXED: change user password
- UPDATED: HowTo
Download (0.12MB)
Added: 2007-07-20 License: GPL (GNU General Public License) Price:
826 downloads
S3cmd 0.9.1
S3cmd is a command line tool to upload, retrieve and manage data in Amazon S3. more>>
S3cmd is a command line tool to upload, retrieve and manage data in Amazon S3. It is best suited for power users who dont fear command line. The project is also ideal for scripts, automated backups triggered from cron, etc.
Amazon S3 is a reasonably priced data storage service. Ideal for off-site backups, archiving and other data storage needs. Check out our pages about Amazon S3 to find out more.
Simple S3cmd HowTo
Register for Amazon AWS / S3
Go to Amazon S3 homepage, click on the "Sign up for web service" button in the right column and work through the registration. You will have to supply your Credit Card details in order to allow Amazon charge you for S3 usage. At the end you should posses your Access and Secret Keys
Run s3cmd --configure
You will be asked for the two keys - copy and paste them from your confirmation email or from your Amazon account page. Be careful when copying them! They are case sensitive and must be entered accurately or youll keep getting errors about invalid signatures or similar.
Run s3cmd ls to list all your buckets.
As you just started using S3 there are no buckets owned by you as of now. So the output will be empty.
Make a bucket with s3cmd mb s3://my-new-bucket-name
As mentioned above bucket names must be unique amongst _all_ users of S3. That means the simple names like "test" or "asdf" are already taken and you must make up something more original. I sometimes prefix my bucket names with my e-mail domain name (logix.cz) leading to a bucket name, for instance, logix.cz-test:
~$ s3cmd mb s3://logix.cz-test
Bucket logix.cz-test created
List your buckets again with s3cmd ls
Now you should see your freshly created bucket
~$ s3cmd ls
2007-01-19 01:41 s3://logix.cz-test
List the contents of the bucket
~$ s3cmd ls s3://logix.cz-test
Bucket logix.cz-test:
~$
Its empty, indeed.
Upload a file into the bucket
~$ s3cmd put addressbook.xml s3://logix.cz-test/addrbook.xml
File addressbook.xml stored as s3://logix.cz-test/addrbook.xml (123456 bytes)
Now we can list the bucket contents again
~$ s3cmd ls s3://logix.cz-test
Bucket logix.cz-test:
2007-01-19 01:46 120k s3://logix.cz-test/addrbook.xml
Retrieve the file back and verify that its hasnt been corrupted
~$ s3cmd get s3://logix.cz-test/addrbook.xml addressbook-2.xml
Object s3://logix.cz-test/addrbook.xml saved as addressbook-2.xml (123456 bytes)
~$ md5sum addressbook.xml addressbook-2.xml
39bcb6992e461b269b95b3bda303addf addressbook.xml
39bcb6992e461b269b95b3bda303addf addressbook-2.xml
Checksums of the original file matches the one of the retrieved one. Looks like it worked :-)
Clean up: delete the object and remove the bucket
~$ s3cmd rb s3://logix.cz-test
ERROR: S3 error: 409 (Conflict): BucketNotEmpty
Ouch, we can only remove empty buckets!
~$ s3cmd del s3://logix.cz-test/addrbook.xml
Object s3://logix.cz-test/addrbook.xml deleted
~$ s3cmd rb s3://logix.cz-test
Bucket logix.cz-test removed
Enhancements:
- Python 2.5 is not required anymore.
- Python 2.4 is now fully supported as well.
<<lessAmazon S3 is a reasonably priced data storage service. Ideal for off-site backups, archiving and other data storage needs. Check out our pages about Amazon S3 to find out more.
Simple S3cmd HowTo
Register for Amazon AWS / S3
Go to Amazon S3 homepage, click on the "Sign up for web service" button in the right column and work through the registration. You will have to supply your Credit Card details in order to allow Amazon charge you for S3 usage. At the end you should posses your Access and Secret Keys
Run s3cmd --configure
You will be asked for the two keys - copy and paste them from your confirmation email or from your Amazon account page. Be careful when copying them! They are case sensitive and must be entered accurately or youll keep getting errors about invalid signatures or similar.
Run s3cmd ls to list all your buckets.
As you just started using S3 there are no buckets owned by you as of now. So the output will be empty.
Make a bucket with s3cmd mb s3://my-new-bucket-name
As mentioned above bucket names must be unique amongst _all_ users of S3. That means the simple names like "test" or "asdf" are already taken and you must make up something more original. I sometimes prefix my bucket names with my e-mail domain name (logix.cz) leading to a bucket name, for instance, logix.cz-test:
~$ s3cmd mb s3://logix.cz-test
Bucket logix.cz-test created
List your buckets again with s3cmd ls
Now you should see your freshly created bucket
~$ s3cmd ls
2007-01-19 01:41 s3://logix.cz-test
List the contents of the bucket
~$ s3cmd ls s3://logix.cz-test
Bucket logix.cz-test:
~$
Its empty, indeed.
Upload a file into the bucket
~$ s3cmd put addressbook.xml s3://logix.cz-test/addrbook.xml
File addressbook.xml stored as s3://logix.cz-test/addrbook.xml (123456 bytes)
Now we can list the bucket contents again
~$ s3cmd ls s3://logix.cz-test
Bucket logix.cz-test:
2007-01-19 01:46 120k s3://logix.cz-test/addrbook.xml
Retrieve the file back and verify that its hasnt been corrupted
~$ s3cmd get s3://logix.cz-test/addrbook.xml addressbook-2.xml
Object s3://logix.cz-test/addrbook.xml saved as addressbook-2.xml (123456 bytes)
~$ md5sum addressbook.xml addressbook-2.xml
39bcb6992e461b269b95b3bda303addf addressbook.xml
39bcb6992e461b269b95b3bda303addf addressbook-2.xml
Checksums of the original file matches the one of the retrieved one. Looks like it worked :-)
Clean up: delete the object and remove the bucket
~$ s3cmd rb s3://logix.cz-test
ERROR: S3 error: 409 (Conflict): BucketNotEmpty
Ouch, we can only remove empty buckets!
~$ s3cmd del s3://logix.cz-test/addrbook.xml
Object s3://logix.cz-test/addrbook.xml deleted
~$ s3cmd rb s3://logix.cz-test
Bucket logix.cz-test removed
Enhancements:
- Python 2.5 is not required anymore.
- Python 2.4 is now fully supported as well.
Download (MB)
Added: 2007-03-14 License: GPL (GNU General Public License) Price:
954 downloads
ClamFS 0.9.1
ClamFS is a FUSE-based user-space file system for Linux with on-access anti-virus file scanning through clamd daemon. more>>
ClamFS is a FUSE-based user-space file system for Linux with on-access anti-virus file scanning through clamd daemon.
Main features:
- User-space file system (no kernel patches, recompilation, etc.)
- Configuration stored in XML files
- FUSE (and libfuse) used as file system back-end
- Scan files using ClamAV
- ScanCache (LRU with time-based and out-of-memory expiration) speeds up file access
- Sends mail to administrator when detect virus
<<lessMain features:
- User-space file system (no kernel patches, recompilation, etc.)
- Configuration stored in XML files
- FUSE (and libfuse) used as file system back-end
- Scan files using ClamAV
- ScanCache (LRU with time-based and out-of-memory expiration) speeds up file access
- Sends mail to administrator when detect virus
Download (0.13MB)
Added: 2007-03-17 License: GPL (GNU General Public License) Price:
951 downloads
KBoincSpy 0.9.1
KBoincSpy is a KDE monitor and control utility for the BOINC distributed client. more>>
KBoincSpy is a KDE monitor and control utility for the BOINC client. KBoincSpy displays a lot of useful information about the computation of work units, such as the percent of work done, and estimates of the completion time and credits granted.
For some projects like SETI@home and ClimatePrediction.net, it also reports some interesting data about the content and significance of each work unit being analyzed.
It can be also used to control the behavior of the BOINC client, allowing the user to attach to (as well as detach from) projects, start/stop the computation, or suspend all network communications.
Its interface design was inspired by SETI Spy, a Windows monitoring utility for SETI@home Classic written by Roelof Engelbrecht.
The Berkeley Open Infrastructure for Network Computing is a software platform for distributed computing. It enables organizations who oversee scientific projects requiring extensive computing resources to easily set up and maintain a distributed computing infrastructure.
By downloading the BOINC distributed computing client, each of the hundreds of thousands of participants worldwide can select the scientific projects more to his/her liking and assign some computing resources to them.
Enhancements:
- This release focuses on reaching almost feature parity with the latest BOINC client from Berkeley (the 5.x series).
- Among the new features were an attach-to-project wizard, host and user statistics graphs, and Web links.
- This version also features new translations to eight languages. Precompiled packages are available for the x86 and x86-64 architecture versions of the Fedora, Gentoo, Mandriva, Slackware, and SuSE Linux distributions.
<<lessFor some projects like SETI@home and ClimatePrediction.net, it also reports some interesting data about the content and significance of each work unit being analyzed.
It can be also used to control the behavior of the BOINC client, allowing the user to attach to (as well as detach from) projects, start/stop the computation, or suspend all network communications.
Its interface design was inspired by SETI Spy, a Windows monitoring utility for SETI@home Classic written by Roelof Engelbrecht.
The Berkeley Open Infrastructure for Network Computing is a software platform for distributed computing. It enables organizations who oversee scientific projects requiring extensive computing resources to easily set up and maintain a distributed computing infrastructure.
By downloading the BOINC distributed computing client, each of the hundreds of thousands of participants worldwide can select the scientific projects more to his/her liking and assign some computing resources to them.
Enhancements:
- This release focuses on reaching almost feature parity with the latest BOINC client from Berkeley (the 5.x series).
- Among the new features were an attach-to-project wizard, host and user statistics graphs, and Web links.
- This version also features new translations to eight languages. Precompiled packages are available for the x86 and x86-64 architecture versions of the Fedora, Gentoo, Mandriva, Slackware, and SuSE Linux distributions.
Download (2.0MB)
Added: 2006-02-07 License: GPL (GNU General Public License) Price:
1355 downloads
kpictorial 0.9.1
kpictorial is a logic game for KDE. more>>
kpictorial project is a logic game for KDE.
Goal of the game is to reconstruct a black & white picture by the number of contiguous black blocks given for each row and column. Sounds easy but isnt.
You can also use 1bit indexed color palete xmp and xbm files created by the gimp.
<<lessGoal of the game is to reconstruct a black & white picture by the number of contiguous black blocks given for each row and column. Sounds easy but isnt.
You can also use 1bit indexed color palete xmp and xbm files created by the gimp.
Download (0.70MB)
Added: 2006-12-21 License: GPL (GNU General Public License) Price:
1037 downloads
uoamhub 0.9.1
uoamhub project is a dedicated server for UOAutoMap. more>>
uoamhub project is a dedicated server for UOAutoMap.
UOAutoMap is a non-free map tracking tool for Ultima Online, which has networking features with a proprietary, undocumented protocol.
Enhancements:
- use getopt() if getopt_long() is not available
- fixed long pid_t warnings
- use random() if /dev/random does not exist
- include netinet/in.h for FreeBSD compatibility
- enable SO_REUSEADDR to get rid of the "Address already in use" errors
- enable SO_KEEPALIVE
- ignore SIGPIPE and SIGALRM
- check password on every data packet
- made CC auto detection more portable
<<lessUOAutoMap is a non-free map tracking tool for Ultima Online, which has networking features with a proprietary, undocumented protocol.
Enhancements:
- use getopt() if getopt_long() is not available
- fixed long pid_t warnings
- use random() if /dev/random does not exist
- include netinet/in.h for FreeBSD compatibility
- enable SO_REUSEADDR to get rid of the "Address already in use" errors
- enable SO_KEEPALIVE
- ignore SIGPIPE and SIGALRM
- check password on every data packet
- made CC auto detection more portable
Download (0.020MB)
Added: 2006-12-04 License: GPL (GNU General Public License) Price:
1056 downloads
geotool 0.9.1
geotool is a small tool that is a collection of some GeoIP.dat quirks. more>>
geotool is a small tool that is a collection of some GeoIP.dat quirks.
Inserts countries into output of numerous cmdline network tools reverses GeoIP.dat into a guarding.p2p.
Usage:
geotool [OPTION]... GeoIP.dat
--trace=IP show geological position of IP or domain --trace=- will read (for example) traceroute output from stdin and insert geographic information behind IPs or domains
--reverse[=SKIP] reverse GeoIP.dat into a list of countries with their IP ranges (guarding.p2p); SKIP sets how many IPs should be skipped before the next check
0 will result in the most correct list
256 for slow computers (default)
65536 fastest
--version output version information and exit
--help display this help and exit
<<lessInserts countries into output of numerous cmdline network tools reverses GeoIP.dat into a guarding.p2p.
Usage:
geotool [OPTION]... GeoIP.dat
--trace=IP show geological position of IP or domain --trace=- will read (for example) traceroute output from stdin and insert geographic information behind IPs or domains
--reverse[=SKIP] reverse GeoIP.dat into a list of countries with their IP ranges (guarding.p2p); SKIP sets how many IPs should be skipped before the next check
0 will result in the most correct list
256 for slow computers (default)
65536 fastest
--version output version information and exit
--help display this help and exit
Download (0.011MB)
Added: 2006-08-14 License: GPL (GNU General Public License) Price:
1188 downloads
YAMM 0.9.1
Yet Another Mail Manager (YAMM) is a Java email client. more>>
Yet Another Mail Manager (YAMM) is a Java email client. This application has support for MIME, POP3, SMTP, HTML, filters, multiple mail accounts on different servers, and file attachments.
Main features:
- POP3 support
- Smtp support
- html support
- file attachment support
- Internationalization
- Multiple mail accounts
<<lessMain features:
- POP3 support
- Smtp support
- html support
- file attachment support
- Internationalization
- Multiple mail accounts
Download (0.544MB)
Added: 2006-06-12 License: GPL (GNU General Public License) Price:
1231 downloads
mach 0.9.1
mach allows you to set up clean build roots from scratch for any distribution or distribution variation supported. more>>
mach allows you to set up clean build roots from scratch for any distribution or distribution variation supported. In this clean build root you can then easily generate pristine packages. mach is written in python.
Currently, mach supports rpm-based distributions that can work with apt for rpm - hopefully this will be extended to other types of package manager as well.
mach is used for generating GStreamer packages (about 60 of them for each distribution) and Fedora packages. I also use it personally for the Dave/Dina project.
<<lessCurrently, mach supports rpm-based distributions that can work with apt for rpm - hopefully this will be extended to other types of package manager as well.
mach is used for generating GStreamer packages (about 60 of them for each distribution) and Fedora packages. I also use it personally for the Dave/Dina project.
Download (0.070MB)
Added: 2007-01-08 License: GPL (GNU General Public License) Price:
1019 downloads
jMOS 0.9.1
jMOS is an open Java implementation for the Media Object Server (MOS) communications protocol. more>>
jMOS is an open Java implementation for the Media Object Server (MOS) communications protocol.
MOS is a six year old, evolving protocol for communications between Newsroom Computer Systems (NCS) and Media Object Servers (MOS) such as Video Servers, Audio Servers, Still Stores, and Character Generators. The MOS Protocol development is supported through cooperative collaboration among equipment vendors, software vendors and end users.
Main features:
- 100% Java
- Specification v.2.8.2
- Support for MOS profiles 0 and 1
Enhancements:
- Profile 2, multiple listeners and repliers, and the ability to add filters in listeners and repliers were implemented.
<<lessMOS is a six year old, evolving protocol for communications between Newsroom Computer Systems (NCS) and Media Object Servers (MOS) such as Video Servers, Audio Servers, Still Stores, and Character Generators. The MOS Protocol development is supported through cooperative collaboration among equipment vendors, software vendors and end users.
Main features:
- 100% Java
- Specification v.2.8.2
- Support for MOS profiles 0 and 1
Enhancements:
- Profile 2, multiple listeners and repliers, and the ability to add filters in listeners and repliers were implemented.
Download (0.35MB)
Added: 2006-01-25 License: Open Software License Price:
1394 downloads
Anca 0.9.1
Anca is a grand new H.323 client for Qt 3.x. more>>
Anca is a H.323 client for Qt 3.x. It means that it allows communicating (voice/video) with other similar clients over internet, eg. with Gnomemeeting, OhPhone, NetMeeting etc.
Its design is minimalist and clean; has a support for embedded devices. It is very modular.
Main features:
Core:
- Audio/video communication via H.323 v. X
- Embedded devices support (framebuffer support, efficient design etc.)
- Call diversions - server-side forwarding
- Plugin system
Plugins:
- Addressbook with LDAP support
- DTML tones
- OSS sound
- V4L video
- Video preview
Enhancements:
- Sound and VideoIn plugins were changed to be compiled with the latest PWLib and OpenH323 FIXED: Video grabber failure resulted in crash
<<lessIts design is minimalist and clean; has a support for embedded devices. It is very modular.
Main features:
Core:
- Audio/video communication via H.323 v. X
- Embedded devices support (framebuffer support, efficient design etc.)
- Call diversions - server-side forwarding
- Plugin system
Plugins:
- Addressbook with LDAP support
- DTML tones
- OSS sound
- V4L video
- Video preview
Enhancements:
- Sound and VideoIn plugins were changed to be compiled with the latest PWLib and OpenH323 FIXED: Video grabber failure resulted in crash
Download (1.1MB)
Added: 2005-06-03 License: GPL (GNU General Public License) Price:
1603 downloads
Stoq 0.9.1
Stoq is a software project aimed at creating a complete suite of applications for retail business management. more>>
Stoq is a software project aimed at creating a complete suite of applications for retail business management.
Stoq currently includes:
- a store front application to register sales;
- a backend data manager with product, customers, system users, and suppliers catalogs, and reports of sales and stock;
- a CORBA-based server that provides an interface for client applications to print sales coupons.
In the future, it will include all the tools needed for a complete retail business management suite, such as accounting and financial programs.
Enhancements:
- Single/Separate payment registration
- Plugin support
- Support for GtkUnixPrintDialog
- Move Brazilian specific ECF to a plugin only
- activated during installation
- Make it possible to confirm sales in the till application
- Improved Sintegra support, generate registers 50, 54 and 75 (purchase orders)
- Automatic configuration of ECf payment methods
- Purchases received in the warehouse application should have their status set to paid
- Fix bug when switching applications
- Better currency support, display the currency in labels close to the entries instead of the entries themselves
- Allow sales to be done with credit/debit cards
- Define keyboard shortcuts for most common operations
- Fix bugs which prevented sales with products that has fractional units.
- Remove salesperson from product searches
- Show dates on reports
<<lessStoq currently includes:
- a store front application to register sales;
- a backend data manager with product, customers, system users, and suppliers catalogs, and reports of sales and stock;
- a CORBA-based server that provides an interface for client applications to print sales coupons.
In the future, it will include all the tools needed for a complete retail business management suite, such as accounting and financial programs.
Enhancements:
- Single/Separate payment registration
- Plugin support
- Support for GtkUnixPrintDialog
- Move Brazilian specific ECF to a plugin only
- activated during installation
- Make it possible to confirm sales in the till application
- Improved Sintegra support, generate registers 50, 54 and 75 (purchase orders)
- Automatic configuration of ECf payment methods
- Purchases received in the warehouse application should have their status set to paid
- Fix bug when switching applications
- Better currency support, display the currency in labels close to the entries instead of the entries themselves
- Allow sales to be done with credit/debit cards
- Define keyboard shortcuts for most common operations
- Fix bugs which prevented sales with products that has fractional units.
- Remove salesperson from product searches
- Show dates on reports
Download (0.12MB)
Added: 2007-07-17 License: GPL (GNU General Public License) Price:
832 downloads
CPAR 0.9.1
CPAR is a C library that allows complex parameter passing such as found in interpreted languages. more>>
CPAR is a C library that allows complex parameter passing such as found in interpreted languages.
This allows passing named parameters, passing a variable number of parameters in any order, passing void pointers with runtime type checking, selectively merging or inheriting parameters, and more.
Installation:
The `configure shell script attempts to guess correct values for various system-dependent variables used during compilation.
It uses those values to create a `Makefile in each directory of the package. It may also create one or more `.h files containing system-dependent definitions.
Finally, it creates a shell script `config.status that you can run in the future to recreate the current configuration, a file `config.cache that saves the results of its tests to speed up
reconfiguring, and a file `config.log containing compiler output (useful mainly for debugging `configure).
If you need to do unusual things to compile the package, please try to figure out how `configure could check whether to do them, and mail diffs or instructions to the address given in the `README so they can be considered for the next release.
If at some point `config.cache contains results you dont want to keep, you may remove or edit it.
The file `configure.in is used to create `configure by a program called `autoconf. You only need `configure.in if you want to change it or regenerate `configure using a newer version of `autoconf.
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system.
If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute
`configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean.
There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
Enhancements:
- Added code to detect double-free of vp tables.
- Added CPAR_KEEP_MATCH() and CPAR_REMOVE_MATCH() macros.
- Added *_MATCH versions of set, clear and test flags functions.
- Added a level of indirection to cpar_table structure. This allows the cpar library to make changes to tables without changing the users pointer.
- Documentation cleanup.
<<lessThis allows passing named parameters, passing a variable number of parameters in any order, passing void pointers with runtime type checking, selectively merging or inheriting parameters, and more.
Installation:
The `configure shell script attempts to guess correct values for various system-dependent variables used during compilation.
It uses those values to create a `Makefile in each directory of the package. It may also create one or more `.h files containing system-dependent definitions.
Finally, it creates a shell script `config.status that you can run in the future to recreate the current configuration, a file `config.cache that saves the results of its tests to speed up
reconfiguring, and a file `config.log containing compiler output (useful mainly for debugging `configure).
If you need to do unusual things to compile the package, please try to figure out how `configure could check whether to do them, and mail diffs or instructions to the address given in the `README so they can be considered for the next release.
If at some point `config.cache contains results you dont want to keep, you may remove or edit it.
The file `configure.in is used to create `configure by a program called `autoconf. You only need `configure.in if you want to change it or regenerate `configure using a newer version of `autoconf.
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system.
If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute
`configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean.
There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
Enhancements:
- Added code to detect double-free of vp tables.
- Added CPAR_KEEP_MATCH() and CPAR_REMOVE_MATCH() macros.
- Added *_MATCH versions of set, clear and test flags functions.
- Added a level of indirection to cpar_table structure. This allows the cpar library to make changes to tables without changing the users pointer.
- Documentation cleanup.
Download (0.31MB)
Added: 2005-10-11 License: GPL (GNU General Public License) Price:
1474 downloads
Aero AIO 0.9.1
Aero AIO is a SuperKaramba theme that monitors memory, CPU, harddisk, network and more. more>>
Aero AIO is a SuperKaramba theme that monitors memory, CPU, harddisk, network and more.
I wanted to make a theme that wouldnt take all my desktop and would allow me to see every information I could have with my previous Aero-G theme. Moreover I wanted it to be fully and easily configurable|customisable.
Thats why I did Aero All In One!
You access to the piece of information you want in one click! Note that every page is unloaded when you load another one: cpu load is saved!
The configuration GUI allows you to install and load new plugins and to configure their options.
You can make new plugins, themes, and icon sets and put it in themes directory or in "~/.aero_aio", they will be automatically detected!
Any comment/idea is welcome! Any piece of advice for my configuration utility (vocabulary or grammatical mistakes...) too.
<<lessI wanted to make a theme that wouldnt take all my desktop and would allow me to see every information I could have with my previous Aero-G theme. Moreover I wanted it to be fully and easily configurable|customisable.
Thats why I did Aero All In One!
You access to the piece of information you want in one click! Note that every page is unloaded when you load another one: cpu load is saved!
The configuration GUI allows you to install and load new plugins and to configure their options.
You can make new plugins, themes, and icon sets and put it in themes directory or in "~/.aero_aio", they will be automatically detected!
Any comment/idea is welcome! Any piece of advice for my configuration utility (vocabulary or grammatical mistakes...) too.
Download (0.58MB)
Added: 2006-06-13 License: GPL (GNU General Public License) Price:
1228 downloads
DEMOS 0.9.1
DEMOS is a modeling tool for the EP model. more>>
DEMOS is a modeling tool for the EP model. The EP model proposes a declarative executable model for engineering object-based systems which achieves executability through a hybrid approach that annotates model elements with Java code snippets.
DEMOS project is implemented as an Eclipse plugin and provides graphical editing of applications using the EP model, background code generation, and immediate feedback on syntactical validity of models and user-supplied code.
Enhancements:
- Changes in this release are the addition of a visual inspector for running EP systems, significant performance improvements, improved consistency between models and generated code, and minor feature enhancements and bugfixes.
<<lessDEMOS project is implemented as an Eclipse plugin and provides graphical editing of applications using the EP model, background code generation, and immediate feedback on syntactical validity of models and user-supplied code.
Enhancements:
- Changes in this release are the addition of a visual inspector for running EP systems, significant performance improvements, improved consistency between models and generated code, and minor feature enhancements and bugfixes.
Download (2.4MB)
Added: 2006-11-05 License: GPL (GNU General Public License) Price:
1084 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 pocomy 0.9.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