kevin
Kevin on Boxing 1.0
Kevin on Boxing - An RSS feed of boxing columnist Kevin Iole?s typepad on boxing more>>
This widget is an RSS feed of his typepad website featured here. http://boxing.typepad.com
License:Freeware
Blog.kevincrafts.com Image Widget 1.5
Blog.kevincrafts.com Image Widget is a professional and smart tool which loads random images from blog.kevincrafts.com and loads a new image every five minutes or when the user decides to refresh the viewer. more>>
Blog.kevincrafts.com Image Widget 1.5 is a professional and smart tool which loads random images from blog.kevincrafts.com and loads a new image every five minutes or when the user decides to refresh the viewer.
Requirements: Mac OS X 10.4 or later
enGin 1.0
Free Dashboard search widget for your Mac more>> iSkysoft Apple TV Video Converter for Mac is a professional Mac video to Apple TV converter.iSkysoft Apple TV Video Converter for Mac is powerful Video to Apple TV converter for Mac OS X users. It can convert regular video formats to Apple TV video and Apple TV audio such as AVI to Apple TV, MPEG to Apple TV, etc. This Mac Apple TV video converter provides a series of practical settings such as batch conversion, setting video brightness, contrast and saturation, video crop, and joining multiple files into one file. Put videos on Apple TV with on Mac OS with iSkysoft Apple TV Video Converter for Mac!
Key Features:
1.It can convert video to Apple TV MP4 and extract audio from video files to Apple TV audio.
2.Support MPEG1, MPEG2, MP4, 3GP, 3G2, AVI, Mpeg TS/TP (for HD Video).
3.A professional program developed only for Mac OS X users.
4.Merge all added files and output one file.
5.Set movie video brightness, contrast, saturation, and choose to apply special video effects to your video files.
6.Crop your DVD video to remove black sides.
7.You can trim your video files to only convert a part of a video file.
8.Preview your video files before conversion to adjust the output quality.<<less
TakeMovieSnapshot 1.0
TakeMovieSnapshot - Take a snapshot of your movies at a specified time more>>
To configure the script double click it. To use the script just drop your movie files onto the script.
iLaunch 0.1
Hot key command for quick Google access. more>>
Depending upon what the user types, iLaunch will perform one of the above mentioned actions. View the readme file for instructions on how to use it.
Semulov 1.4 Beta 1
Semulov lists all mounted volumes in your menubar, categorized by type more>> Semulov lists all mounted volumes in your menubar, categorized by type
Semulov lists all mounted volumes in your menubar, categorized by type. Clicking on a volume menu will unmount/eject that volume.
Semulov is a small utility that supports Growl unmount and mount notifications.
Enhancements
- No longer uses the DVDPlayback framework which was causing conflicts with DVD Player
- Ejecting a volume is now done asynchronously
- Fixed crash when ejecting an iDisk on Leopard
- Fixed crash with Eject All
InCrease 2.2
InCrease - GUI to configure/control Folding@home more>>
With InCrease, you can easily have folding start when your machine boots, and if you have a dual processor Mac, two clients can run.
You can start, stop, pause, and continue easily from InCrease or its Dock menu. You can automatically pause while on laptop battery power, or while select applications are running.
Enhancements:
- fixed smp client download on intel macs
PeekIt 2.5.5
PeekIt - Make hex-level changes to any file more>>
Very handy for verifying the contents of files you are writing outfrom your own applications without doing extra work yourself.
Enhancements:
- Moved the pref for val panel popup to the color pane, where it should be.
- Fixed a sign extension bug in dragging in the graphic pane in the val drawer
- Below things added for Kevin A.
- Added a "turn off help tags" preference.
- If there is a selection, the size will be shown after the "Selection position:"
- Added a viewing window not associated with a file. Select "new" from the File menu for a blank window.
Oracle Berkeley DB Java Edition 3.3.82
High performance transactional storage engine. more>> High performance transactional storage engine.
Oracle Berkeley DB Java Edition is a high performance, transactional storage engine written entirely in Java. Like the highly successful Berkeley DB product, Berkeley DB Java Edition executes in the address space of the application, without the overhead of client/server communication.
It stores data in the applications native format, so no runtime data translation is required. Berkeley DB Java Edition supports full ACID transactions and recovery. It provides an easy-to-use, programmatic interface, allowing developers to store and retrieve information quickly, simply and reliably.
Main features:
- Local, in-process data storage.
- Schema-neutral, application native data storage.
- Keyed and sequential data retrieval.
- Easy-to-use Java Collections API.
- Persistence API for accessing Java objects.
- Single process, multi-threading model.
- Record level locking for high concurrency.
- Support for secondary indexes.
- In-memory, on disk or both.
- Configurable background cleaner threads re-organize data and optimize disk use.
- Full ACID compliance.
- Selectable isolation levels and durability guarantees, configurable on a per-transaction basis.
- Managed transactions using the Java Transaction API (JTA).
- J2EE application server integration using J2EE Connector Architecture(JCA).
- Provides support for monitoring, auditing and administration using the Java Management Extensions (JMX).
- Catastrophic and routine failure recovery modes.
- Timeout based deadlock detection.
- Hot and cold backups, log file compaction, and full database dumps.
- 100% pure Java for portability and ease of development.
- Single JAR file - easy to install, runs in the same JVM as the application.
- Java 1.4.2 or later Standard Edition JVM required.
- Programmatic administration and management-zero human administration.
- API for routine administrative functions.
- Small footprint 772KB.
- Scalable to terabytes of data, millions of records.
- Source code, test suite included.
System requirements:
-
Enhancements
- Fix a bug that somtimes causes two log cleaner threads (when multiple threads are configured or multiple app threads call Environment.cleanLog) to select the same file to clean. This can result in two attempts to delete the log file after cleaning. The second attempt causes an exception to be traced repeatedly, but no other side effect. The problem is transient and goes away if the Environment is closed and re-opened. An example of the exception is below. The symptom is that this exception occurs repeatedly, and the file is not present.
- Fix a bug that could cause a LogFileNotFoundException when using an XAEnvironment, if a prepared transaction is not ended prior to a crash and then the prepared transaction is aborted after recovering from a crash. [#17022] (3.3.79)
- Fix a bug that prevented deferred-write record deletions from being made durable by Database.sync, if a crash occurs after Database.sync but prior to the next checkpoint. Under rare circumstances this could also result in a LogFileNotFoundException later when accessing the deleted entry. [#16864] (3.3.78)
- Fix a bug that prevents log cleaning from functioning properly when a temporary DB (DatabaseConfig.setTemporary) is large enough to overflow the JE cache. Also fix a bug that could in rare cirumstances cause an endless loop while performing log cleaning. [#16928] (3.3.78)
- Fix a bug that caused an infinite loop under certain timing dependent circumstances when using EnvironmentConfig.setSharedCache(true). This bug was reported in two different forum posts. Thanks to Kevin Jackson and Vyacheslav Lukianov for reporting it! [#16882] (3.3.78)
- Improve output of partial information in DatabaseEntry.toString. Thanks to archie172 for reporting this on OTN. [#16929] (3.3.78)
- Fix a bug in SecondaryCursor.dup that required the cursor to be initialized. This method, like Cursor.dup, may now be called whether the cursor is initialized or not. Thanks to archie172 for reporting this on OTN. [#16930] (3.3.78)
- Fix a bug that caused NullPointerException when opening an XAEnvironment under certain circumstances, when prepared but uncommitted transactions are present in the JE log and must be replayed during recovery. This bug was reported on the OTN forum by Matthieu Bentot -- thank you Matthieu! An example of the stack trace is below.
- Fix a bug that caused LogFileNotFoundException in rare circumstances for an Environment having one or more Databases configured for duplicates (or one or more SecondaryIndexes with MANY_TO_XXX relationships). The bug only occurs when a single secondary/duplicate key value is associated with a large number of records/entities; specifically, the sub-Btree for a single duplicate key value must have at least 3 levels. [#16712] (3.3.76)
- Fix a bug that caused BufferOverflowException while writing transactional records. This could occur if multiple threads were writing to an environment while using the same Transaction. [#17204]
- Direct Persistence Layer (DPL), Collections and Bind packages - Fix a bug that causes the EvolveStats returned by EntityStore.evolve to contain zeros, even when entities are evolved and written, when no EvolveListener is configured. Thanks to jhalex on OTN for reporting this. [#17024] (3.3.78)
MovieScript 1.0
MovieScript - Choose the frame rate and code compression for a movie more>>
If no new image files arrive in the folder for five minutes the script processes the last image file and then creates the movie, and moves all the files back to the original folder.
Completly freeware.
MD2 File Loading Code 1.0
MD2 File Loading Code - Load MD2 model files and PCX textures more>>
I need code to load MD2 files to use in my game engine (under development) and when I saw that my copy of OpenGL Game Programming had a chapter on it, I was pretty stoked. I figured "hey, this ought to take only about what, 20 minutes to get working?" I was wrong. I ended up rewriting the entire file loading code, restructuring the class, renaming structures, removing functions, and organizing and abstracting the code better because the original code (sorry Kevin and Dave) just didnt work (endian issues which were a PITA to try to fix in their code) and didnt stand up to my rigorous standards of quality code.
The code in this project is really in three parts. Main.cpp is just along for the ride. It sets up the OpenGL view and handles input (using SDL). Object3D is a class designed to represent an object that animates (or doesnt). Its designed to contain more than one loaded MD2 model so that they can be treated as one object and be synchronized in state and animation. The MD2Model class (MD2.h/cpp, Texture.h/cpp) is used only to load the MD2 and texture (PCX only in this code) and to draw it. Thats it. No state handling at all, because thats managed in the Object3D class.
Anyway, if you just need to get MD2 file loading working, just take the MD2.h/cpp and Texture.h/cpp files. Thats all you need. The file loading is endian-aware so it should work on every platform, unlike all of the other code out there.
Completly freeware for non-commercial use.
MacTelnet 4.0 Beta
MacTelnet Beta has come as a handy Unix terminal (under development) which is designed with many useful features. more>>
MacTelnet 4.0 Beta has come as a handy Unix terminal (under development) which is designed with many useful features.
MacTelnet is free software; you are welcome to change it and/or distribute copies under certain conditions. There is absolutely no warranty for MacTelnet. See the GNU General Public License (as published by the Free Software Foundation) for details.
FreeRangeJack 1.0
An AppleScript Studio application that places an animated Jack OLantern on the desktop more>>
ISkysoft iMedia Converter for Mac 1.0.1.3 is considered as a useful DVD and Video software. It provides various features like converting among all popular video and audio formats including FLV, MKV, MOD, WMV, ASF, MPEG1, MPEG2, MP4, 3GP, 3G2, MOV, AVI, M2TS, MPEG TS/TP (for HD Video), M4V, MP3, MP2, MKA, M4A, AAC, AC3, APE, OGG, etc. As a Mac DVD Ripper, it can rip DVD movies to all video and audio formats with perfect output quality and high conversion speed for Mac OS X users.
Major Features:
- Convert DVD to various videos and audio files, act as a Mac DVD to AVI, DVD to MP4, DVD to MOV Converter, etc.
- Convert Video from one to another and extract audio from video.
- Support all popular portable players: iPhone, iPod, Apple TV, Zune, PSP, Xbox 360, PS3, iRiver, Creative Zen, Archos, PMP, Smart Phone, Pocket PC, PDA, Cell Phone, MP4 Player, MP3 player and many other video and audio players.
- rim any part of video, accurate to each frame.
- Crop video according to your player screen size, such as 16:9, 4:3, full screen, envelop, letterbox, etc.
- Set special efficacy on Brightness, Contrast and Saturation.
- Powerful real time review function, You can review your video anytime you editing it.
- Add watermark. You can design and add any watermark to your video.
- Merge multiple files to one.
- You can capture pictures (bmp, jpg) when reviewing video.
- Easy to use: concise guidance, simple drop-down tree, and super dragging function.
Enhancements:
- Optimized basic code.
- Upgraded conversion engine.
- Improved stability and conversion speed and optimized sync of audio and video.
- Added Customizable bit rate.
Requirements:
- MAC OS X or above operating system.
- At least 512M physical RAM.
WareSeeker Editor
<<less
TreetopLights 2.2
TreetopLights is an AppleScript Studio application that places a Christmas tree on the desktop more>>
The desktop tree can be decorated with blinking or fading lights, ornaments, a treetop star, and perhaps some snow.
The ambient lighting can be controlled for the appearance of a dimly or brightly lit room, and the transparency and size of the tree can be set to keep it out of the way, or set the perfect holiday mood.
The optional but festive menubar lights can blink or glow to decorate the menubar, or even go around the screen. A countdown timer displaying days until Christmas and the twelve days of Christmas is also included for on-tree display. Merry Christmas and Happy Holidays!
Main features:
- Set the float state of the desktop tree and animated lights
- Set the animation style of the desktop tree and animated lights
- Control the transparency of the desktop tree and animated lights
- Control the screen edges displaying animated lights (see note below)
- Set the lighting and size of the desktop tree
- Select the bulb type of the desktop tree
- Show or Hide the animated lights & tree decorations.