jackass 2.5
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1769
FractMus 2.5
A program that generates algorithmic/fractal music. Its features include:Three note-generating algorithms ( Morse-Thue sequence, Logistic Map and 1/f noise simulation), eight independent voices, a Com more>>
A program that generates algorithmic/fractal music. Its features include:Three note-generating algorithms ( Morse-Thue sequence, Logistic Map and 1/f noise simulation), eight independent voices, a Composition Maker, which helps you create complex compositions easily, midi file support, dynamic control of the voices, full range of instruments, midi channel control, 14 predefined scales, with the possibility of creating user-defined ones, 10 predefined note values, with the possibility of creating user-defined ones, full range for the melodies (from 1 to 4 octaves), melody Inversion option, great to create complex counterpoint, two modes of playing: All notes and same notes tied, full Help support.
<<less Download (460K)
Added: 1998-04-11 License: Freeware Price:
4231 downloads
Playa 2.5
Fourth version of Playa. This version has some bugs worked out. Playa Version 2.5 has 160 icons. 80 icons are individual Windows98 icons. Playa has a lot of old icons that are made to look a lot bette more>>
Fourth version of Playa. This version has some bugs worked out. Playa Version 2.5 has 160 icons. 80 icons are individual Windows98 icons. Playa has a lot of old icons that are made to look a lot better with 256color support. Playa might just look like you have most of its icons if you only have 16color support for icons. Playa works great under all conditions. Playa Version 2.5 also has new install and uninstall support.
<<less Download (1440K)
Added: 1998-10-07 License: Freeware Price:
4034 downloads
Zodiac 2.5
That the program already knows how: 1. This day in a history2. Genealogy, toponomic, antroponomic of your surname 5000 surnames 3. Your sign of the zodiac 4. Your rock (each person approaches the cert more>>
That the program already knows how: 1. This day in a history2. Genealogy, toponomic, antroponomic of your surname 5000 surnames 3. Your sign of the zodiac 4. Your rock (each person approaches the certain natural rock capable to render influencing on it physiological state) 5. Per what day of week you were born (program defines day of week of your birth, for example, Monday) 6. Animal of a year of birth 7. Color of a year of your birth (ex., 2000 - White dragon).
<<less Download (1074K)
Added: 2000-08-15 License: Freeware Price:
3371 downloads
c-frame 2.5
GCC compiler for Windows with specialized IDE and online context-help for C-language, Win32 API and GTK+ development (toolkit for creating graphical user interface). Effective complement and go-to-def more>>
GCC compiler for Windows with specialized IDE and online context-help for C-language, Win32 API and GTK+ development (toolkit for creating graphical user interface).
Effective complement and go-to-definition action. Interactive macro-resolution.
Source formation (2D look).
Installation contains (additional) seven self-running-demos.
<<lessEffective complement and go-to-definition action. Interactive macro-resolution.
Source formation (2D look).
Installation contains (additional) seven self-running-demos.
Download (1300K)
Added: 2005-08-03 License: Freeware Price: $0.00
911 downloads
Jack*ss Saver 1.0.1
Jack*ss Saver is a simple screensaver that will display some amazing bullet on your desktop more>>
Jack*ss Saver is a simple screensaver that will display some amazing bullet on your desktop.
If you want to have some cool effects on your screen, then you should try this tiny tool.
<<lessIf you want to have some cool effects on your screen, then you should try this tiny tool.
Download (214KB)
Added: 2006-07-02 License: Freeware Price:
1211 downloads
Aear Qsaver 2.5
Aear Qsaver is a free and very useful application that gives you the possibility to create and distribute screensavers for Windo more>>
Aear Qsaver is a free and very useful application that gives you the possibility to create and distribute screensavers for Windows.
<<less Download (2.87MB)
Added: 2006-03-16 License: Freeware Price:
1321 downloads

FlyCap 2.5.2
FlyCap is a video and audio capturing utility. more>>
FlyCap is a video and audio capturing utility. You can capture live video and audio into AVI format using any installed compression codec, such as MPEG4 video and MPEG3 audio. FlyCap also includes a recording scheduler, an audio level oscilloscope, as well as the ability to customize several settings and play your recordings.
<<less Download (404K)
Added: 2002-02-12 License: Freeware Price: $0.00
1502 downloads
Janino 2.5.7
Janino is an embedded Java compiler that compiles expressions or scripts on-the-fly more>>
Janino is a useful compiler which reads a Java expression, block, or source file, and generates Java bytecode that is loaded and executed directly.
Janino is not intended to be a development tool, but an embedded compiler for run-time compilation purposes, such as expression evaluators or "server pages" engines like JSP.
The major design goal was to keep the compiler small and simple, while partially sacrificing completeness. I dont like the idea of carrying around huge libraries for simple applications. See Parser for the list of implemented and missing language features.
When do you need an efficient expression evaluator?
Say you build an e-commerce system, which computes the shipping cost for the items that the user put into his/her shopping cart. Because you dont know the merchants shipping cost model at implementation time, you could implement a set of shipping cost models that come to mind (flat charge, by weight, by number of items, ...) and select one of those at run-time.
In practice, you will most certainly find that the shipping cost models you implemented will rarely match what the merchant wants, so you must add custom models, which are merchant-specific. If the merchants model changes later, you must change your code, re-compile and re-distribute your software.
Because this is so unflexible, the shipping cost expression should be specified at run-time, not at compile-time. This implies that the expression must be scanned, parsed and evaluated at run-time, which is why you need an expression evaluator.
A simple expression evaluator would parse an expression and create a "syntax tree". The expression "a + b * c", for example, would compile into a "Sum" object whos first operand is parameter "a" and whos second operand is a "Product" object whos operands are parameters "b" and "c".
Such a syntax tree can evaluated relatively quickly. However, the run-time performance is about a factor of 100 worse than that of native Java code.
Main features:
- package declaration, import declaration
- class declaration, interface declaration
- Inheritance (extends and implements)
- Static member type declaration
- Inner classes (member classes, local classes, anonymous classes)
- Class initializer, Instance initializer
- Field declaration, Method declaration
- Local variable declaration
- Class variable initializer, Instance variable initializer
- Block statement ({ ... })
- if ... else statement
- for statement
- while statement
- do ... while statement
- try ... catch ... finally statement
- throw statement
- return statement
- break statement
- continue statement
- switch statement
- synchronized statement
- All primitive types (boolean, char, byte, short, int, long, float, double)
- Assignment operator =
- Assignment operators +=, -=, *=, /=, &=, |=, ^=, %=, =, >>>=
- Conditional operators ?...:, &&, ||
- Boolean logical operators &, ^, |
- Integer bitwise operators &, ^, |
- Numeric operators *, /, %, +, -, , >>>
- String concatenation operator +
- Operators ++ and --
- Type comparison operator instanceof
- Unary operators +, -, ~, !
- Parenthesized expression
- Field access (like System.out)
- Superclass member access (super.meth();, super.field = x;
- this (reference to current instance)
- Alternate constructor invocation (like this(a, b, c))
- Superclass constructor invocation (like super(a, b, c))
- Method invocation (like System.out.println("Hello")) (partially)
- Class instance creation (like new Foo())
- Primitive array creation(like new int[10][5][])
- Class or interface array creation(like new Foo[10][5][])
- Array access (like args[0]) (currently read-only)
- Local variable access
- Integer, floating-point, boolean, character, string literal
- null literal
- Unary numeric conversion, binary numeric conversion, widening numeric conversion, narrowing numeric conversion
- Widening reference conversion, narrowing reference conversion
- Cast
- Assignment conversion
- String conversion (for string concatenation)
- Constant expression
- Block scope, method scope, class scope, global scope
- throws clause
- Array initializer (like String[] a = { "x", "y", "z" })
- Primitive class literals, e.g. "int.class"
- Non-primitive class literals, e.g. "String.class"
- References between uncompiled compilation units
- Line number tables a la "-g:lines"
- Source file information a la "-g:source"
- Handling of @deprecated doc comment tag
- Accessibility checking (PUBLIC, PROTECTED, PRIVATE)
- Static imports for fields (single an on-demand; fields, types and methods
<<lessJanino is not intended to be a development tool, but an embedded compiler for run-time compilation purposes, such as expression evaluators or "server pages" engines like JSP.
The major design goal was to keep the compiler small and simple, while partially sacrificing completeness. I dont like the idea of carrying around huge libraries for simple applications. See Parser for the list of implemented and missing language features.
When do you need an efficient expression evaluator?
Say you build an e-commerce system, which computes the shipping cost for the items that the user put into his/her shopping cart. Because you dont know the merchants shipping cost model at implementation time, you could implement a set of shipping cost models that come to mind (flat charge, by weight, by number of items, ...) and select one of those at run-time.
In practice, you will most certainly find that the shipping cost models you implemented will rarely match what the merchant wants, so you must add custom models, which are merchant-specific. If the merchants model changes later, you must change your code, re-compile and re-distribute your software.
Because this is so unflexible, the shipping cost expression should be specified at run-time, not at compile-time. This implies that the expression must be scanned, parsed and evaluated at run-time, which is why you need an expression evaluator.
A simple expression evaluator would parse an expression and create a "syntax tree". The expression "a + b * c", for example, would compile into a "Sum" object whos first operand is parameter "a" and whos second operand is a "Product" object whos operands are parameters "b" and "c".
Such a syntax tree can evaluated relatively quickly. However, the run-time performance is about a factor of 100 worse than that of native Java code.
Main features:
- package declaration, import declaration
- class declaration, interface declaration
- Inheritance (extends and implements)
- Static member type declaration
- Inner classes (member classes, local classes, anonymous classes)
- Class initializer, Instance initializer
- Field declaration, Method declaration
- Local variable declaration
- Class variable initializer, Instance variable initializer
- Block statement ({ ... })
- if ... else statement
- for statement
- while statement
- do ... while statement
- try ... catch ... finally statement
- throw statement
- return statement
- break statement
- continue statement
- switch statement
- synchronized statement
- All primitive types (boolean, char, byte, short, int, long, float, double)
- Assignment operator =
- Assignment operators +=, -=, *=, /=, &=, |=, ^=, %=, =, >>>=
- Conditional operators ?...:, &&, ||
- Boolean logical operators &, ^, |
- Integer bitwise operators &, ^, |
- Numeric operators *, /, %, +, -, , >>>
- String concatenation operator +
- Operators ++ and --
- Type comparison operator instanceof
- Unary operators +, -, ~, !
- Parenthesized expression
- Field access (like System.out)
- Superclass member access (super.meth();, super.field = x;
- this (reference to current instance)
- Alternate constructor invocation (like this(a, b, c))
- Superclass constructor invocation (like super(a, b, c))
- Method invocation (like System.out.println("Hello")) (partially)
- Class instance creation (like new Foo())
- Primitive array creation(like new int[10][5][])
- Class or interface array creation(like new Foo[10][5][])
- Array access (like args[0]) (currently read-only)
- Local variable access
- Integer, floating-point, boolean, character, string literal
- null literal
- Unary numeric conversion, binary numeric conversion, widening numeric conversion, narrowing numeric conversion
- Widening reference conversion, narrowing reference conversion
- Cast
- Assignment conversion
- String conversion (for string concatenation)
- Constant expression
- Block scope, method scope, class scope, global scope
- throws clause
- Array initializer (like String[] a = { "x", "y", "z" })
- Primitive class literals, e.g. "int.class"
- Non-primitive class literals, e.g. "String.class"
- References between uncompiled compilation units
- Line number tables a la "-g:lines"
- Source file information a la "-g:source"
- Handling of @deprecated doc comment tag
- Accessibility checking (PUBLIC, PROTECTED, PRIVATE)
- Static imports for fields (single an on-demand; fields, types and methods
Download (1.51MB)
Added: 2007-05-21 License: Freeware Price:
894 downloads
DigiClock 2.5
DigiClock features backgrounds that change at different times. more>>
DigiClock is an advanced digital clock program that features background that reflect the time of day. Other features include a fullscreen mode, full customisation options, always on top toggle, ablility to load with Windows startup, snap to edge of screen and many more. Perfect to leave running all day!
<<less Download (268k)
Added: 2000-02-01 License: Freeware Price: $0.00
3555 downloads
Whois 2.5
Whois - client utility that communicates with WHOIS servers located around the world to obtain domain registration information more>>
Whois Tool is a client utility that communicates with WHOIS servers located around the world to obtain domain registration information.
Whois supports IP address queries and automatically selects the appropriate whois server for IP addresses.whois is a software that communicates with WHOIS servers and optains registration information.
This tool will lookup information on a domain, IP address, or a domain registration information.
<<lessWhois supports IP address queries and automatically selects the appropriate whois server for IP addresses.whois is a software that communicates with WHOIS servers and optains registration information.
This tool will lookup information on a domain, IP address, or a domain registration information.
Download (474KB)
Added: 2006-11-14 License: Freeware Price:
1074 downloads
MLBScores 2.5
MLBScores widget allows you to check and view the latest gaming results from MBL more>>
Major League Baseball box game previews, scores, team stats, player stats, and live game stats.
Check out all of the games, or see just the stats from your favorite team.
New links with MLBStandings Widget allow you to view team info and league standings across Widgets! Download both Widgets to try.
BROADBAND USERS ONLY.
<<lessCheck out all of the games, or see just the stats from your favorite team.
New links with MLBStandings Widget allow you to view team info and league standings across Widgets! Download both Widgets to try.
BROADBAND USERS ONLY.
Download (306KB)
Added: 2007-03-19 License: Freeware Price:
954 downloads

ColorMania 2.5
ColorMania - Color Picker for easy selection and modification of Colors more>>
With ColorMania you can easily create, compare or adjust any colors or color combinations you want It includes a colorpicker and a magnifier.
ColorMania is the ideal tool for developers and designers of software or webpages. The color output can be displayed in various formats, including HTML and Delphi.
<<lessColorMania is the ideal tool for developers and designers of software or webpages. The color output can be displayed in various formats, including HTML and Delphi.
Download (690KB)
Added: 2007-04-25 License: Freeware Price:
1007 downloads
TeamStream 2.5
TeamStream, robust voice communications for extremegame players. TeamStreams exhaustive list offeatures includes crystal-clear voice, lag-free gameplay, channels, muting, kicking, transmit indicators, more>>
TeamStream, robust voice communications for extremegame players. TeamStreams exhaustive list offeatures includes crystal-clear voice, lag-free gameplay, channels, muting, kicking, transmit indicators,computer generated speech for battlefield sequencing,a powerful commander mode for multiple channelsupport, DirectX 5-7 compatibility and perfect voiceoperation for professional teams.
<<less Download (1800K)
Added: 2000-02-22 License: Freeware Price:
1870 downloads
YeahReader 2.5
YeahReader is a free program for reading news feeds in RSS, RDF and Atom formats, and podcasts. Although quite functional, YeahReader is one of the easiest news readers to use. Stop wasting time, down more>>
YeahReader is a free program for reading news feeds in RSS, RDF and Atom formats, and podcasts.
The program provides all basic RSS reader functionality such as a convenient feed update system, proxy support and pop-up update notification. Besides this, YeahReader has such features as built-in blog client that will allow you to quickly write messages to your LiveJournal, Blogger, WordPress or Delicious blog, OPML support, ability to export data into HTML, CSV or JS format, multilanguage support and others.
Although quite functional, YeahReader is one of the easiest news readers to use. The program contains a collection of links to popular RSS feeds on various subjects so you will not waste time searching for interesting links.
Stop wasting time, download YeahReader right now!
<<lessThe program provides all basic RSS reader functionality such as a convenient feed update system, proxy support and pop-up update notification. Besides this, YeahReader has such features as built-in blog client that will allow you to quickly write messages to your LiveJournal, Blogger, WordPress or Delicious blog, OPML support, ability to export data into HTML, CSV or JS format, multilanguage support and others.
Although quite functional, YeahReader is one of the easiest news readers to use. The program contains a collection of links to popular RSS feeds on various subjects so you will not waste time searching for interesting links.
Stop wasting time, download YeahReader right now!
Download (2235K)
Added: 2008-08-09 License: Freeware Price:
846 downloads
Hackahoo_Password_Generator 2.5
Hackahoo_Password_Generator is a free and simple password generator that can make customize passlist more>>
Hackahoo_Password_Generator is a free and simple password generator that can make customize passlist.
<<less Download (578KB)
Added: 2006-09-12 License: Freeware Price:
659 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 jackass 2.5 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
