razorsql 4.0.1
RockNES 4.0.1
RockNES - Nintendo emulator more>>
RockNES provides cycle exact emulation of the NES hardware
In addition, RockNES includes lots of different video modes, as well as the ability to load and save your game at any stage. You can even record movies of gameplay.
Enhancements:
- Updated to shell version 1.6.
RumLog 4.0.1
RumLog gives a professional and smart logging, QSL handling and printing tool, especially made for the short wave DXer, made by a DXer. Basic logging features are included for the higher bands up to 1.2 cm. more>> <<less
photos 4.0.1
PHP/MySQL solution for storing photos. more>>
It supports adding photos one at a time, or as a group by directory.
It is intended to be run locally but can be run on a remote Web server if youve got the space and the bandwidth.
PCTZDS 4.0.1
PCTZDS is launched to give users a listing of international and US area codes, time zones, and daylight savings more>>
PCTZDS 4.0.1 is launched to give users a listing of international and US area codes, time zones, and daylight savings
Requirements:
- Mac OS X 10.4 PPC
- Mac OS X 10.3.9
- Mac OS X 10.4 Intel
- Mac OS X 10.0
- Mac OS X 10.1
- Mac OS X 10.5 PPC
- Mac OS X 10.2
- Mac OS X 10.5 Intel
- Mac OS X 10.3
- Mac OS Classic

Splunk 4.0.1
Splunk is launched to be a creative and handy Silicon Valley company inventing large-scale, high-speed indexing and search technology for IT infrastructures. more>>
Splunk 4.0.1 is launched to be a creative and handy Silicon Valley company inventing large-scale, high-speed indexing and search technology for IT infrastructures. The company's freely downloadable software indexes and makes it possible to search and navigate data from any application, server or network device in real time. Logs, configurations, messages, traps and alerts, scripts and metrics. If a machine can generate it - Splunk can eat it.
It's easy to download, install and use, and is very powerful. More than 450 enterprises, government organizations, and service providers and more than 125,000 users achieve higher availability, investigate security incidents in record time, and meet compliance requirements at lower costs with Splunk.
ProPrompter 4.0.1
ProPrompter appears as a reliable and effective teleprompter program for the popular professional teleprompting applications that brings users much convenience. more>>
ProPrompter 4.0.1 appears as a reliable and effective teleprompter program for the popular professional teleprompting applications that brings users much convenience. Use the dual screen scrolling feature to reverse the secondary output of a PC or Mac laptop while leaving the operator's display non-reversed. This allows less expensive non-reversing displays to be used without sacrificing functionality. ProPrompter Software is available in Basic and Advanced versions to suit any application and budget.
SAGE 4.0.1
Creating a viable free open source alternative to Magma, Maple, Mathematica, and Matlab. more>> Creating a viable free open source alternative to Magma, Maple, Mathematica, and Matlab.
Sage is free open source math software that supports research and teaching in algebra, geometry, number theory, cryptography, and related areas. Both the Sage development model and the technology in Sage itself are distinguished by an extremely strong emphasis on openness, community, cooperation, and collaboration: we are building the car, not reinventing the wheel.
General and Advanced Pure and Applied Mathematics
Use SAGE for studying a huge range of mathematics, including algebra, calculus, elementary to very advanced number theory, cryptography, numerical computation, commutative algebra, group theory, combinatorics, graph theory, and exact linear algebra.
Use an Open Source Alternative
By using SAGE you help to support a viable open source alternative to Magma, Maple, Mathematica, and MATLAB. SAGE includes many high-quality open source math packages.
Use Most Mathematics Software from Within SAGE
SAGE makes it easy for you to use most mathematics software together. SAGE includes interfaces to Magma, Maple, Mathematica, MATLAB, and MuPAD, and the free programs Axiom, GAP, GP/PARI, Macaulay2, Maxima, Octave, and Singular.
Use a Standard Programming Language
You work with SAGE using the highly regarded scripting language Python instead of an obscure language designed for a particular mathematics program. You can write programs that combine serious mathematics with anything else.
Create Notebooks with your Web Browser
Use SAGE from your web browser, which connects either to a program running on your computer, or a program running elsewhere. With the SAGE notebook you can create embedded graphics, beautifully typeset mathematical expressions, add and delete input, and start up and interrupt multiple calculations.
Be Curious
SAGE provides you with easy access to documentation and source code. Type plot? for help on the plot command and plot?? to see the source code. If X is anything, type X.[tab key] to see all commands that apply to X.
Enhancements
Algebra:
- Division over integers (Robert Bradshaw) -- A much simpler and faster algorithm for the divisors function over integers. The new optimized code is faster than a similar integer divisor function in the version of PARI/GP thats bundled with Sage 3.2.1, as well as outperforming a similar integer divisor function found in the version of Magma that Sage 3.2.1 interfaces with.
- Finite field operations (John Palmieri) -- A few methods for finite field elements including additive order, p-th power, and p-th root where p is the characteristic of the field.
Basic arithmetic:
- Polynomials over a field (Burcin Erocal) -- Improving the user interface of polynomial classes.
- Polynomial square roots (John Palmieri, Carl Witty) -- A method to test whether a polynomial is square over the field it is defined. If the polynomial is square, then the method has the option of returning a square root.
Build:
- Improve sage -upgrade (William Stein, Michael Abshoff) -- The Sage upgrade command can now take an optional URL from which it will pull all spkgs, and this URL can be a Sage install. The upgrade command lists packages that will be upgraded before upgrading them, and autodownloads a new version of any spkg that hasnt successfully been installed before upgrading it.
- Problematic CPU flags (William Stein, Michael Abshoff) -- Binary distributions of Sage for Linux (e.g. Ubuntu) may not work properly once installed. The following CPU flags are known to prevent Sage from running properly: sse, 3d, mmx, pni, and cmov.
Calculus:
- Gamma and factorial functions (Mike Hansen, Burcin Erocal, Wilfried Huss) -- Symbolic gamma and factorial functions.
- Update to sympy-0.6.3 (Ondrej Certik) -- Update to the latest upstream of SymPy (sympy-0.6.3), which is a Python library for symbolic mathematics. For more information about SymPy, please visit http://code.google.com/p/sympy/.
- Numerical trigonometry (Robert Bradshaw) -- Optimized floating point evaluation of trigonometric functions such as sine and cosine. For example, numerical calculation of sine via _fast_float_ is now twice as fast as math.sin.
- Floating point calculation (Robert Bradshaw) -- Changing the parsing code for numerical computation to use RDF, which is a better reflection of the underlying precision. For calculus expressions involving real numbers, redundant trailing zeros are removed.
Coercion:
- Coercion API (Robert Bradshaw) -- Some simplification of the coercion interface.
Combinatorics:
- Coding theory (David Joyner) -- Several changes in linear_codes.py which should speed up (and in some cases do:-) some coding theory computations considerably. It adds interfaces to Cython and C functions of Robert Miller, CJ Tjhal, and Jeffery Leon. Speed up of minimum_distance (for codes over GF(2) and GF(3)), the spectrum (=weight_distribution), and permutation_automorphism_group are expected and in most cases achieved. (Also a new function is_permutation_equivalent was added, which interfaces with Robert Millers double coset partition refinement code.)
- Incidence structures and block designs (David Joyner) -- Beginning of an incidence structure class and an implementation of some basic block design algorithms. A few functions require GAPs Design package (which is included in gap_packages-4.4.10_6.spkg) but calling GAP or GAPs Design was only done when the corresponding Sage functionality was missing. Robert Millers recent code on computing the automorphism group of a non-linear binary code was used to implement the automorphism group of a block design.
Testing:
- Added only_optional doctest option (William Stein) -- Added a new option sage -t -only_optional=component that allows one to run only the optional doctests that depend on a given component. Thus instead of much of the optional functionality of Sage being broken, it will now be much easier to automatically test it.

EasyFind 4.0.1
Finds files, folders and contents (without indexing) and provides services more>> <<less
Adobe Encore CS4 4.0.1
Adobe Encore CS4 is an excellent and very useful program which provides important bug fixes for encoding and decoding H.264-encoded content and creating Blu-ray discs. more>>
Enhancements:
- Integration with Adobe Resource Central, the online store from which you can download functional content.
- Enhanced HD preview
- Support for enabling third-party card playback
- Ability to play back SWF output in Adobe Media Player when you export your projects to Adobe Flash
- Important bug fixes for Encore
Requirements:
- Multicore Intel processor (Adobe OnLocation CS3 is a Windows application that may be used on Macintosh using Boot Camp and Windows, sold separately)
- 1GB of RAM for DV; 2GB of RAM for HDV and HD
- 10GB of available hard-disk space (additional free space required during installation)
- Dedicated 7,200 RPM hard drive for DV and HDV editing; striped disk array storage (RAID 0) for HD; SCSI disk subsystem preferred
- 1,280x960 monitor resolution with 32-bit video card; Adobe recommended graphics card for GPU-accelerated playback
- Core Audio compatible sound card
- DVD-ROM drive
- Blu-ray burner required for Blu-ray Disc creation
- SuperDrive for DVD burning
- QuickTime 7 required to use QuickTime features
- Internet or phone connection required for product activation
- Broadband Internet connection required for Adobe Stock Photos* and other services
- 1,280x1,024 monitor resolution with 32-bit video card; Adobe recommended graphics card for GPU-accelerated playback (see the full compatible hardware listing)
HoudahGPS 4.0.1
A front end to the open source command line tool GPSBabel. more>> A front end to the open source command line tool GPSBabel.
HoudahGPS is a front end to the open source command line tool GPSBabel.
HoudahGPS allows you to transfer track log and waypoint data from your Garmin, Magellan or Wintec GPS devices. It connects via USB to the Garmin and Magellan devices. It interfaces with the Wintec WBT-100, WBT-101 and WBT-201 devices using Bluetooth.
HoudahGPS can also be used to convert between the GPX, NMEA and KML log file formats. The Sony GPS-CS1 track logger uses a special variant of the NMEA format which may also be read.
Main features:
- Creation of backup copies of track log files for later use with HoudahGeo
- Conversion of track logs to KML for visualization in Google Earth.
Houdah Software sarl - Transfer track log & waypoint data from many different GPSBinary Square One 4.0.1
Binary Square One is considered as a very flexible and effective tool that puts all your favorite files at your fingertips. more>>
Binary Square One 4.0.1 is considered as a very flexible and effective tool that puts all your favorite files at your fingertips. It keeps your desktop clean, tracks recently used documents, stores URLs, hides background applications, manages folders, and more. Just click to launch, switch to, or quit any program.

iMovie 4.0.1
This brings a much more improved performance and reliability for iMovie 4, which is highly recommended for all uses of iMovie 4. more>> <<less
Beamwright 4.0.1
Beamwright is an easy to use utility that helps you choose the right light for every situation more>>
Beamwright actually recommends lights for you, taking into account how closely the beam size matches the area you want to cover, the brightness of the light, and how even the coverage is. You can have it choose from one or more kinds of lights (such as Ellipsoidals and PARs), and if a zoom unit is suitable itll zoom it to the correct beam size and show you how it performs.
Unlike other similar programs on the market, Beamwright is fast, easy to use, and goal-oriented. It doesnt include unnecessary frills such as pictures of the lights or gel transmission data; it just gives you the quickest and best way to compare and choose between the hundreds of lights in its inventory.
And of course, its easy to add more lights to Beamwrights inventory and make categories such as "Favorite" or "Stock" and browse among them or have Beamwright consider only lights in certain ones when it makes its recommendations.
Beamwright is bundled with Lightwright and is not sold separately.