thing thing
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4
Bulk Image Resizing Thing 1.2.1
BIRT is a simple application that allows a large number of images to be resized in one go. more>>
BIRT, the Batch Image Resizing Thing, is a simple application that allows a large number of images to be resized in one go. Obviously this is possible by scripting ImageMagick but its usually somewhat easier with a GUI.
Bulk Image Resizing Thing was created in order to learn how to develop using the Qt library, and to facilitaty the maintenance of an online photo album where each hi-res photo needs a low-res copy and a thumbnail.
Usage
BIRT has a hypertext based online help system (visible in some of the screenshots below), to access this simply start the application and click on the Help button at the bottom of the BIRT window.
If you cant wait to read the help then here is a basic guide to using BIRT: simply select the image files to be resized, enter the new size, select the output directory and press Go. A more detailed instruction set, include explanations of the ratio options and output suffix/prefix fields can be found in the How To Use BIRT section of the help.
Enhancements:
- A problem with the Help dialog that would prevent it being re-opened if it was closed using the systems close window widget rather than the "Quit" button was fixed.
<<lessBulk Image Resizing Thing was created in order to learn how to develop using the Qt library, and to facilitaty the maintenance of an online photo album where each hi-res photo needs a low-res copy and a thumbnail.
Usage
BIRT has a hypertext based online help system (visible in some of the screenshots below), to access this simply start the application and click on the Help button at the bottom of the BIRT window.
If you cant wait to read the help then here is a basic guide to using BIRT: simply select the image files to be resized, enter the new size, select the output directory and press Go. A more detailed instruction set, include explanations of the ratio options and output suffix/prefix fields can be found in the How To Use BIRT section of the help.
Enhancements:
- A problem with the Help dialog that would prevent it being re-opened if it was closed using the systems close window widget rather than the "Quit" button was fixed.
Download (0.052MB)
Added: 2005-12-06 License: GPL (GNU General Public License) Price:
1422 downloads
Bubble Thing May9/06
Bubble Thing - Inflate things. Pop them to create chain reactions. Meet the boss at the end. more>>
Bubble Thing - Inflate things. Pop them to create chain reactions. Meet the boss at the end.
Inflate things. Fast to make them pop. Slow to make them grow. Make chains. Meet the boss. Enjoy the music.
Arrow keys move.
WASD to inflate in four directions.
Popping bigger bubbles will spawn more chain-bullets which will pop other bubbles creating chain reactions. They will also release more collectables which net you a greater score.
This game was programmed during the three-day Toronto Game Jam, 2006. I started with my framework, a song, and an idea.
<<lessInflate things. Fast to make them pop. Slow to make them grow. Make chains. Meet the boss. Enjoy the music.
Arrow keys move.
WASD to inflate in four directions.
Popping bigger bubbles will spawn more chain-bullets which will pop other bubbles creating chain reactions. They will also release more collectables which net you a greater score.
This game was programmed during the three-day Toronto Game Jam, 2006. I started with my framework, a song, and an idea.
Download (5.4MB)
Added: 2006-05-29 License: GPL (GNU General Public License) Price:
1243 downloads
The Library of Assorted Spiffy Things 0.7
The Library of Assorted Spiffy Things was originally designed as a companion library to Eterm. more>>
The Library of Assorted Spiffy Things was originally designed as a companion library to Eterm.
However, it contains many features that other projects may find useful, so it has been broken out into its own library.
Features include thorough debugging and memory tracking engines, various string manipulation functions, and a flexible config file parsing engine.
Enhancements:
- The string class is now both an interface and an implementation, so parallel implementations (e.g., a glib string wrapper) can be created.
- Detection of Imlib2 support and a pixmap leak when it was disabled have been fixed.
- Fixes have been made for gcc4/newer autotools.
- This release also contains a fix for CVE-2006-0224, a buffer overflow which could lead to privilege escalation in setuid/setgid apps using LibASTs configuration engine.
<<lessHowever, it contains many features that other projects may find useful, so it has been broken out into its own library.
Features include thorough debugging and memory tracking engines, various string manipulation functions, and a flexible config file parsing engine.
Enhancements:
- The string class is now both an interface and an implementation, so parallel implementations (e.g., a glib string wrapper) can be created.
- Detection of Imlib2 support and a pixmap leak when it was disabled have been fixed.
- Fixes have been made for gcc4/newer autotools.
- This release also contains a fix for CVE-2006-0224, a buffer overflow which could lead to privilege escalation in setuid/setgid apps using LibASTs configuration engine.
Download (2.0MB)
Added: 2006-01-24 License: BSD License Price:
1368 downloads
dtRdr::Logger 0.0.11
dtRdr::Logger is a Perl module for global logging. more>>
dtRdr::Logger is a Perl module for global logging.
SYNOPSIS
use dtRdr::Logger;
L->debug($message, ...);
L->info($message, ...);
L->warn($message, ...);
L->error($message, ...);
L->fatal($message, ...);
For a stacktrace:
sub bar {
L()->logcluck("foo");
}
See Log::Log4perl for more info.
ABOUT
This (currently) installs a $SIG{__WARN__}, though well probably try to move away from that.
import
dtRdr::Logger->import(@args);
Get Logger
L
A shortcut to return a logger object FOR YOUR NAMESPACE with an optional list of subtags.
L($subtag);
Example:
package My::Package;
my $logger = L;
my $logger = L(#foo);
Now $logger will log into the class log4perl.logger.My.Package.#foo.
$subtag MUST start with a #. If this is omitted, it will be changed.
RL
A shortcut to a root-level logger.
RL($tag);
my $logger = RL(#foo);
Now $logger which will log into the class log4perl.logger.#foo.
$tag MUST start with a #. If this is omitted, it will be changed.
editor
Launches $ENV{THOUT_EDITOR} with a tempfile containing $string.
Just a handy way to get some debugging data into an editor.
dtRdr::Logger->editor($string);
Or, to do lazy evaluation only when needed, pass a sub that returns a string.
dtRdr::Logger->editor(sub {do_stuff_that_takes_time()});
DBG_DUMP
Similar to editor, but writes to a tempfile in "/tmp/$filename".
DBG_DUMP($ENV_NAME, $filename, sub {$content});
Only acts if $ENV{"DBG_$ENV_NAME"} is set.
DBG_FOO=1 ./Build test
...will cause this
DBG_DUMP(foo, thisfile.txt, sub {$blah});
...to write the content of $blah to /tmp/thisfile.txt.
The sub {$thing} thing is a speed hack, but that variable is big enough to make you want to open it in an editor, so...
init
dtRdr::Logger->init(filename => "foo");
<<lessSYNOPSIS
use dtRdr::Logger;
L->debug($message, ...);
L->info($message, ...);
L->warn($message, ...);
L->error($message, ...);
L->fatal($message, ...);
For a stacktrace:
sub bar {
L()->logcluck("foo");
}
See Log::Log4perl for more info.
ABOUT
This (currently) installs a $SIG{__WARN__}, though well probably try to move away from that.
import
dtRdr::Logger->import(@args);
Get Logger
L
A shortcut to return a logger object FOR YOUR NAMESPACE with an optional list of subtags.
L($subtag);
Example:
package My::Package;
my $logger = L;
my $logger = L(#foo);
Now $logger will log into the class log4perl.logger.My.Package.#foo.
$subtag MUST start with a #. If this is omitted, it will be changed.
RL
A shortcut to a root-level logger.
RL($tag);
my $logger = RL(#foo);
Now $logger which will log into the class log4perl.logger.#foo.
$tag MUST start with a #. If this is omitted, it will be changed.
editor
Launches $ENV{THOUT_EDITOR} with a tempfile containing $string.
Just a handy way to get some debugging data into an editor.
dtRdr::Logger->editor($string);
Or, to do lazy evaluation only when needed, pass a sub that returns a string.
dtRdr::Logger->editor(sub {do_stuff_that_takes_time()});
DBG_DUMP
Similar to editor, but writes to a tempfile in "/tmp/$filename".
DBG_DUMP($ENV_NAME, $filename, sub {$content});
Only acts if $ENV{"DBG_$ENV_NAME"} is set.
DBG_FOO=1 ./Build test
...will cause this
DBG_DUMP(foo, thisfile.txt, sub {$blah});
...to write the content of $blah to /tmp/thisfile.txt.
The sub {$thing} thing is a speed hack, but that variable is big enough to make you want to open it in an editor, so...
init
dtRdr::Logger->init(filename => "foo");
Download (2.8MB)
Added: 2007-03-16 License: GPL (GNU General Public License) Price:
952 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above thing thing 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