most important aspects
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1028
AspectES 0.1
AspectES is an implementation of Aspect-Oriented Programming in JavaScript 1.5, as standardized by EcmaScript Specification 262. more>>
AspectES is an implementation of Aspect-Oriented Programming in JavaScript 1.5, as standardized by EcmaScript Specification 262.
AspectES project contains core classes that enable software engineers to gracefully develop JavaScript applications that have clear, well-documented designs that incorporate Aspect Oriented Programming.
This project only uses standardized Web technologies: JavaScript 1.5, with no proprietary extensions. The framework is documented with JavaScriptdoc.
Mission:
Produce a superior implementation of Aspect-Oriented Programming in JavaScript v1.5, as standardized by EcmaScript Specification 262.
Scope: A package framework that contains core classes that enable software engineers to gracefully develop JavaScript applications that have clear, well-documented designs incorporating Aspect Oriented Programming.
Agenda:
Current:
- This framework powers the drag-and-drop capability in the (open-source) Gigapan Explorer Application, delivered to the United States NASA in late 2005.
- This project only uses standardized web technologies: JavaScript 1.5, with no proprietary extensions.
- Enjoy complete JavaScriptdoc as you develop this codebase.
- See the Coding Standard.
- See the tips on Debugging JavaScript.
Immediate Future:
- Develop a test suite that completely exercises the existing functionality.
- Log and fix bugs on said functionality.
- Identify additional desired functionality.
- Build a pluggable module for generating JavaScriptdoc from AspectES aspects and their associated yarn.
Enhancements:
- This version is now contained in its own tigris.org project, separate from the Gigapan Explorer application for which it was originally developed.
<<lessAspectES project contains core classes that enable software engineers to gracefully develop JavaScript applications that have clear, well-documented designs that incorporate Aspect Oriented Programming.
This project only uses standardized Web technologies: JavaScript 1.5, with no proprietary extensions. The framework is documented with JavaScriptdoc.
Mission:
Produce a superior implementation of Aspect-Oriented Programming in JavaScript v1.5, as standardized by EcmaScript Specification 262.
Scope: A package framework that contains core classes that enable software engineers to gracefully develop JavaScript applications that have clear, well-documented designs incorporating Aspect Oriented Programming.
Agenda:
Current:
- This framework powers the drag-and-drop capability in the (open-source) Gigapan Explorer Application, delivered to the United States NASA in late 2005.
- This project only uses standardized web technologies: JavaScript 1.5, with no proprietary extensions.
- Enjoy complete JavaScriptdoc as you develop this codebase.
- See the Coding Standard.
- See the tips on Debugging JavaScript.
Immediate Future:
- Develop a test suite that completely exercises the existing functionality.
- Log and fix bugs on said functionality.
- Identify additional desired functionality.
- Build a pluggable module for generating JavaScriptdoc from AspectES aspects and their associated yarn.
Enhancements:
- This version is now contained in its own tigris.org project, separate from the Gigapan Explorer application for which it was originally developed.
Download (1.1MB)
Added: 2006-03-06 License: MIT/X Consortium License Price:
1328 downloads
AspectJS 1.0.0
AspectJS is a Javascript AOP framework. more>>
AspectJS is a Javascript AOP framework.
Using:
Import
You MUST include the following aspect.js Javascript file :
< script src="aspectjs.js" >< /script >
Weaving
In order to weave the aspects, you SHOULD use this method :
Weaver.addAdvice ( aspect_name, aspect_method, joinpoint_type, pointcut_name, pointcut_method);
Todo
improve compatibility with more browser
complete documentation
<<lessUsing:
Import
You MUST include the following aspect.js Javascript file :
< script src="aspectjs.js" >< /script >
Weaving
In order to weave the aspects, you SHOULD use this method :
Weaver.addAdvice ( aspect_name, aspect_method, joinpoint_type, pointcut_name, pointcut_method);
Todo
improve compatibility with more browser
complete documentation
Download (0.004MB)
Added: 2006-02-22 License: LGPL (GNU Lesser General Public License) Price:
1339 downloads
Aspect# 2.1.1.0
Aspect# is an AOP (Aspect Oriented Programming) framework for the CLI (.Net and Mono). more>>
Aspect# is an AOP (Aspect Oriented Programming) framework for the CLI (.Net and Mono). It relies on DynamicProxy and offers a built-in language to declare and configure aspects, and is compliant with AopAlliance.
Aspect# became part of the Castle Project in June 2005.
Main features:
- Easy to use: If you dont believe us, check the tutorial
- Easy configuration: Aspect# offers a mini language (Ruby like syntax) to declare and configure aspects.
- Mixins: Mix classes to achieve different behaviors
- Interceptors: Associate interceptors with pointcuts
Enhancements:
- Castle.DynamicProxy updated to 1.1.0.0 version.
<<lessAspect# became part of the Castle Project in June 2005.
Main features:
- Easy to use: If you dont believe us, check the tutorial
- Easy configuration: Aspect# offers a mini language (Ruby like syntax) to declare and configure aspects.
- Mixins: Mix classes to achieve different behaviors
- Interceptors: Associate interceptors with pointcuts
Enhancements:
- Castle.DynamicProxy updated to 1.1.0.0 version.
Download (0.11MB)
Added: 2006-02-17 License: The Apache License 2.0 Price:
1346 downloads
Migma 0.1.0
Migma project is a multiple-choice exam generator. more>>
Migma project is a multiple-choice exam generator.
Migma is a command-line tool that helps teachers create several different multiple-choice exams based on an original along with their respective answer sheets.
Enhancements:
- some important bugs fixed
<<lessMigma is a command-line tool that helps teachers create several different multiple-choice exams based on an original along with their respective answer sheets.
Enhancements:
- some important bugs fixed
Download (0.028MB)
Added: 2006-10-24 License: GPL (GNU General Public License) Price:
1098 downloads
Phone Manager 0.10
Phone Manager is a program created to allow you to control aspects of your mobile phone. more>>
Phone Manager project is a program created to allow you to control aspects of your mobile phone.
Main features:
- Runs in the background; indicates status on the panel notification area.
- Display on-screen alert when text message (SMS) arrives
- Text message (SMS) sending facility
<<lessMain features:
- Runs in the background; indicates status on the panel notification area.
- Display on-screen alert when text message (SMS) arrives
- Text message (SMS) sending facility
Download (0.88MB)
Added: 2007-08-20 License: GPL (GNU General Public License) Price:
512 downloads
Libdatastruct 0.0.1
Libdatastruct is an ANSI C library for abstract data types (ADT) and common algorithms. more>>
Libdatastruct is an ANSI C library for abstract data types (ADT) and common algorithms. Since it uses some compiler specific optimization methods, it is compatible for any GCC (or compatible) compiler.
This helps the programmer focus on other, usually more important, aspects of the program, and not have to reinvent the wheel.
Memory has been considered a vital factor, so problems in its management have been (or tried to) avoided, therefore memory leaks, use of uninitialized memory, reading/writing invalid blocks, etc. are a constant preoccupation.
These are not original algorithms, they have been used for years, and are a fundamental part of computer science.
Installation:
make
make install
Usage:
compilation: cc program.c -ldatastruct -Wall -o program
<<lessThis helps the programmer focus on other, usually more important, aspects of the program, and not have to reinvent the wheel.
Memory has been considered a vital factor, so problems in its management have been (or tried to) avoided, therefore memory leaks, use of uninitialized memory, reading/writing invalid blocks, etc. are a constant preoccupation.
These are not original algorithms, they have been used for years, and are a fundamental part of computer science.
Installation:
make
make install
Usage:
compilation: cc program.c -ldatastruct -Wall -o program
Download (0.017MB)
Added: 2005-10-11 License: GPL (GNU General Public License) Price:
1473 downloads
aB Backup Tools 0.3
aB Backup Tools is a toolset for creating and maintaining backups and recoveries of important data on your system. more>>
aB Backup Tools is a toolset for creating and maintaining backups and recoveries of important data on your system.
Enhancements:
- memory leaks fixed,
- options optimized,
- some look changes.
<<lessEnhancements:
- memory leaks fixed,
- options optimized,
- some look changes.
Download (0.28MB)
Added: 2005-05-27 License: GPL (GNU General Public License) Price:
1613 downloads
schwanz3 RC11
schwanz3 is a personal system measurement utility. more>>
schwanz3 is a personal system measurement utility. schwanz3 is in no way objective nor does it want to be. Its simple aim is to compare systems and egos based on your personal "penis size".
schwanz3 was inspired by a script called schwanz.sh, which took only very less aspects of the system. schwanz3 is currently not yet finished, but beeing written.
Still, there are the release candidates available, which are working, but which partly may misfunction.
schwanz3 is currently Linux-specific. If someone cares and wants it on another Unix-alike OS, I am happy to accept `diff -u`s.
Enhancements:
- A large bug where Ogg was interchanged with MP3 has been fixed.
- A workaround for ck_uptime on Solaris has been added. Ogg, FLAC, and MP3 only count +1 now (music is not so important).
<<lessschwanz3 was inspired by a script called schwanz.sh, which took only very less aspects of the system. schwanz3 is currently not yet finished, but beeing written.
Still, there are the release candidates available, which are working, but which partly may misfunction.
schwanz3 is currently Linux-specific. If someone cares and wants it on another Unix-alike OS, I am happy to accept `diff -u`s.
Enhancements:
- A large bug where Ogg was interchanged with MP3 has been fixed.
- A workaround for ck_uptime on Solaris has been added. Ogg, FLAC, and MP3 only count +1 now (music is not so important).
Download (0.010MB)
Added: 2006-04-13 License: GPL (GNU General Public License) Price:
1289 downloads
XML::Simple::DTDReader 0.04
XML::Simple::DTDReader is a simple XML file reading based on their DTDs. more>>
XML::Simple::DTDReader is a simple XML file reading based on their DTDs.
SYNOPSIS
use XML::Simple::DTDReader;
my $ref = XMLin("data.xml");
Or the object oriented way:
require XML::Simple::DTDReader;
my $xsd = XML::Simple::DTDReader->new;
my $ref = $xsd->XMLin("data.xml");
XML::Simple::DTDReader aims to be a XML::Simple drop-in replacement, but with several aspects of the module controlled by the XMLs DTD. Specifically, array folding and array forcing are inferred from the DTD.
Currently, only XMLin is supported; support for XMLout is planned for later releases.
<<lessSYNOPSIS
use XML::Simple::DTDReader;
my $ref = XMLin("data.xml");
Or the object oriented way:
require XML::Simple::DTDReader;
my $xsd = XML::Simple::DTDReader->new;
my $ref = $xsd->XMLin("data.xml");
XML::Simple::DTDReader aims to be a XML::Simple drop-in replacement, but with several aspects of the module controlled by the XMLs DTD. Specifically, array folding and array forcing are inferred from the DTD.
Currently, only XMLin is supported; support for XMLout is planned for later releases.
Download (0.010MB)
Added: 2006-09-06 License: Perl Artistic License Price:
1146 downloads
Stylish-Custom 0.4.5
Restores the important button, Color/Site Rules menu items, enable/update checks more>>
Stylish-Custom 0.4.5 brings users a convenient Thunderbird extension, with full features and easy installation.
Major Features:
- Restores the important button, Color/Site Rules menu items, enable/update checks
- Style info listing with quick enable toggle (dbl-click to edit style, can also search within styles)
- Import/export styles
- Disable all styles then enable them afterwards
- Or take a snapshot and restore that
- Adds search/replace to edit dialog (ctrl+F, ctrl+R, and F3)
- Hides tags area by default (use checkbox to toggle it)
- Press ! to type !important (can be changed in edit dialog)
- Select and un/comment/merge text
- Page button (left click for style page, right for edit page, it also posts the code)
- Save & Close
- Discard preview
Requirements:
- Mozilla Thunderbird
- Stylish
Added: 2009-07-22 License: GPL v3 Price: FREE
12 downloads
Molins 0.10.7
Molins is a framework for the development of applications with PHP 5. more>>
Molins is a framework for the development of applications with PHP 5. Its more important features are database persistence, logging, unit testing, dynamic content generation (PDF, Flash, graphics, XML), security roles, GTK+ wrapper classes, and a complete Web MVC model (using XSLT). It is fully object-oriented, with class packaging similar to Java.
Enhancements:
- This version is focused only on bugfixes.
- The most important bugfix is related to the exception handler.
<<lessEnhancements:
- This version is focused only on bugfixes.
- The most important bugfix is related to the exception handler.
Download (1.0MB)
Added: 2005-11-07 License: LGPL (GNU Lesser General Public License) Price:
1446 downloads
Roma Framework 10 RC1
Roma Framework is a Meta-Framework designed to build cross frameworks applications in very short time. more>>
ROMA wants to change the way to do Java Applications. Its a Meta-Framework designed to build cross frameworks applications in very short time.
ROMA wants to glue the best of Java tools and frameworks together. ROMA doesnt want to reinvent the wheel or another brand new Web Framework, but just use the existent products with very low effort for the developer.
Main features:
- Roma its totally based on POJO (Plain Old Java Objects)
- True Object Oriented vision in all aspects: from the model to the view and to the repository/database
- Encourage the use of the Domain Driven Model (DDD) approach: lets think to the Domain: the other things are secondary Aspects
- It works with Conventions? ala Ruby On Rails: much less code to write and maintain and more uniformity in projects
- Applications are fully portable across frameworks since the application is developed using POJOs. For example you can switch between JDO and EJB3 PersistenceAspect without changing code unless you use directly the aspect implementation (see below)
- Allow to makes things dirty: you can use directly the target framework taking the full advantage of the implementation power
- You can use the already developed Modules (CRUD, User&Profiles, etc.) and extend their if you need
- The skill requested to build application can be lower than required for modern Java Web Applications: minor cost of development
- Roma is based on Spring Framework as IoC container, but you can use another one if you want.
<<lessROMA wants to glue the best of Java tools and frameworks together. ROMA doesnt want to reinvent the wheel or another brand new Web Framework, but just use the existent products with very low effort for the developer.
Main features:
- Roma its totally based on POJO (Plain Old Java Objects)
- True Object Oriented vision in all aspects: from the model to the view and to the repository/database
- Encourage the use of the Domain Driven Model (DDD) approach: lets think to the Domain: the other things are secondary Aspects
- It works with Conventions? ala Ruby On Rails: much less code to write and maintain and more uniformity in projects
- Applications are fully portable across frameworks since the application is developed using POJOs. For example you can switch between JDO and EJB3 PersistenceAspect without changing code unless you use directly the aspect implementation (see below)
- Allow to makes things dirty: you can use directly the target framework taking the full advantage of the implementation power
- You can use the already developed Modules (CRUD, User&Profiles, etc.) and extend their if you need
- The skill requested to build application can be lower than required for modern Java Web Applications: minor cost of development
- Roma is based on Spring Framework as IoC container, but you can use another one if you want.
Download (MB)
Added: 2007-04-03 License: The Apache License 2.0 Price:
935 downloads
mp3cleanup 0.9
mp3cleanup is used to tidy up various aspects of MP3 files, including filenames, ID3 tags, path, m3u playlists, and bitrate. more>>
mp3cleanup is used to tidy up various aspects of MP3 files, including filenames, ID3 tags, path, m3u playlists, and bitrate.
This is particularly useful for hardware MP3 players that sometimes have arbitrary limitations on the files they work (well) with.
It can operate on single files or on all the files contained in a directory.
Enhancements:
- The -k option was added to check MP3s for bad frames before processing.
- The -D option was added to increase search depth.
- The -b option was added to create DOS format .m3u playlists.
- The -C option was added to copy rather than move.
- The (experimental) -g option was added to set the genre.
- Type "list" or "l" to get a list of genre numbers.
- Support for Ogg Vorbis files was added.
- The default maximum filename length was reduced to 52 chars (for iRiver).
- eyeD3 is used as well as id3tag to set tags, since sometimes tags were left inconsistent.
<<lessThis is particularly useful for hardware MP3 players that sometimes have arbitrary limitations on the files they work (well) with.
It can operate on single files or on all the files contained in a directory.
Enhancements:
- The -k option was added to check MP3s for bad frames before processing.
- The -D option was added to increase search depth.
- The -b option was added to create DOS format .m3u playlists.
- The -C option was added to copy rather than move.
- The (experimental) -g option was added to set the genre.
- Type "list" or "l" to get a list of genre numbers.
- Support for Ogg Vorbis files was added.
- The default maximum filename length was reduced to 52 chars (for iRiver).
- eyeD3 is used as well as id3tag to set tags, since sometimes tags were left inconsistent.
Download (0.015MB)
Added: 2005-08-14 License: GPL (GNU General Public License) Price:
1531 downloads
StatsDawg 0.97
StatsDawg is a suite that has been designed to be easily usable as well as configurable. more>>
StatsDawg is a suite that has been designed to be easily usable as well as configurable.
StatsDawg monitors various aspects of a Linux system such as CPU usage, load average, memory usage, etc. using RRDTool and PHP.
<<lessStatsDawg monitors various aspects of a Linux system such as CPU usage, load average, memory usage, etc. using RRDTool and PHP.
Download (0.12MB)
Added: 2007-08-16 License: GPL (GNU General Public License) Price:
800 downloads
SiteForge 1.0.5
SiteForge provides a project management application for distributed collaborative development. more>>
SiteForge provides a project management application for distributed collaborative development.
SiteForge brings together the various aspects of a software project into one place, including source code access (CVS), bug/issue tracking, project members, discussion forums, documentation, product release downloads, and news announcements.
SiteForge is similar to the the software that runs SourceForge.net, GForge, Savane, GBorg, and Trac. It attempts to be easier to install, reliable, secure, and well-supported.
Enhancements:
- Many issues with the project bug tracker were fixed, including RSS feeds, linking to documentation, and missing parameters in the bug previous/next links.
- The security of downloads and the accuracy of download stats were improved.
- Double-joining projects is now prevented.
<<lessSiteForge brings together the various aspects of a software project into one place, including source code access (CVS), bug/issue tracking, project members, discussion forums, documentation, product release downloads, and news announcements.
SiteForge is similar to the the software that runs SourceForge.net, GForge, Savane, GBorg, and Trac. It attempts to be easier to install, reliable, secure, and well-supported.
Enhancements:
- Many issues with the project bug tracker were fixed, including RSS feeds, linking to documentation, and missing parameters in the bug previous/next links.
- The security of downloads and the accuracy of download stats were improved.
- Double-joining projects is now prevented.
Download (0.092MB)
Added: 2007-03-09 License: GPL (GNU General Public License) Price:
960 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 most important aspects 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