tiny
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 156
TinyWM 1.3
TinyWM is a ridiculously tiny window manager implemented in nearly as few lines of C as possible. more>>
TinyWM is a ridiculously tiny window manager implemented in nearly as few lines of C as possible, without being obfuscated or entirely useless.
TinyWM allows you to move, resize, focus (sloppy), and raise windows. A Python version is also included.
<<lessTinyWM allows you to move, resize, focus (sloppy), and raise windows. A Python version is also included.
Download (0.005MB)
Added: 2006-09-07 License: Public Domain Price:
1142 downloads
Tiny.pl 0.3.1
Tiny.pl is a Firefox extension that allows to shorten a current page URL or any Link on a webpage with a single click. more>>
Tiny.pl is a Firefox extension that allows to shorten a current page URL or any Link on a webpage by right clicking and choosing an option from pop-up menu.
<<less Download (0.005MB)
Added: 2007-05-10 License: MPL (Mozilla Public License) Price:
899 downloads
Tiny SRP 0.7.5
Tiny SRP provides a stripped-down SRP authentication library. more>>
Tiny SRP provides a stripped-down SRP authentication library.
The Tiny SRP library is a stripped-down version of srp-1.7.1 and openssl-0.9.6 that contains only what is necessary for secure remote passphrase authentication.
No other libraries are required.
If you already have libsrp installed on both server and client then you dont need this.
Tiny SRP is designed for embedded or mini distributions, and is also a quick and easy way to add secure authentication to small client/server projects.
Also included is the TSRP protocol, which reduces socket authentication to one function call on each of the client and server.
<<lessThe Tiny SRP library is a stripped-down version of srp-1.7.1 and openssl-0.9.6 that contains only what is necessary for secure remote passphrase authentication.
No other libraries are required.
If you already have libsrp installed on both server and client then you dont need this.
Tiny SRP is designed for embedded or mini distributions, and is also a quick and easy way to add secure authentication to small client/server projects.
Also included is the TSRP protocol, which reduces socket authentication to one function call on each of the client and server.
Download (0.092MB)
Added: 2007-04-06 License: BSD License Price:
934 downloads
Tiny Report 0.9
Tiny Report is a database reporting tool and report generator like Crystal Reports. more>>
Tiny Report is a free software that helps you to Design, Manage, and Deliver Reports for Extreme Business Insight.
It simply automates to production of dynamic PDFs. It allows you to design your templates in OpenOffice.
Main features:
The process
- Design your .SXW fie in OpenOffice,
- Use tiny_sxw2rml.py to convert the file in a .RML template,
- Use tiny_report.py to produce PDF file using any database.
Report Designer
- The report designer used is OpenOffice. All styles, tags and features of OpenOffice documents (.SXW) are implemented instead frames.
- No specific language to learn,
- Support style, colors, table, section, items, images, ...
- OpenOffice is not needed to render the PDF
Data Acquisition
- Support python expressions for effective computation,
- Browse through table with the object relationnal mapping,
- You do not have to code the database structure (introspection on the DB),
- You can create your own object and functions
- Lots of databases supported: MySQL, Postgres, SQLite, Firebird, SybaseConnection, MAX DB
- Support all links between tables (one2many, many2one, ...),
- Lots of special features using simple Python: group, sort.
Report Renderer
- Fast, simple and easy,
- Standalone to be included in other applications.
<<lessIt simply automates to production of dynamic PDFs. It allows you to design your templates in OpenOffice.
Main features:
The process
- Design your .SXW fie in OpenOffice,
- Use tiny_sxw2rml.py to convert the file in a .RML template,
- Use tiny_report.py to produce PDF file using any database.
Report Designer
- The report designer used is OpenOffice. All styles, tags and features of OpenOffice documents (.SXW) are implemented instead frames.
- No specific language to learn,
- Support style, colors, table, section, items, images, ...
- OpenOffice is not needed to render the PDF
Data Acquisition
- Support python expressions for effective computation,
- Browse through table with the object relationnal mapping,
- You do not have to code the database structure (introspection on the DB),
- You can create your own object and functions
- Lots of databases supported: MySQL, Postgres, SQLite, Firebird, SybaseConnection, MAX DB
- Support all links between tables (one2many, many2one, ...),
- Lots of special features using simple Python: group, sort.
Report Renderer
- Fast, simple and easy,
- Standalone to be included in other applications.
Download (0.36MB)
Added: 2005-10-12 License: GPL (GNU General Public License) Price:
888 downloads
Tiny Eclipse 3.3
Tiny Eclipse project was created to provide small and easy to install distributions of Eclipse. more>>
Tiny Eclipse project was created to provide small and easy to install distributions of Eclipse.
Main features:
- Small download size
- Cross-platform GUI installer(current only for win32 & linux-gtk)
- You can choose the features you want to install.
Enhancements:
- This is based on the Eclipse 3.3 code base.
<<lessMain features:
- Small download size
- Cross-platform GUI installer(current only for win32 & linux-gtk)
- You can choose the features you want to install.
Enhancements:
- This is based on the Eclipse 3.3 code base.
Download (50.2MB)
Added: 2007-07-13 License: Eclipse Public License Price:
836 downloads
Getopt::Tiny 1.02
Getopt::Tiny is yet another command line argument parsing module. more>>
Getopt::Tiny is yet another command line argument parsing module.
SYNOPSIS
use Getopt::Tiny;
my $arg = default value;
my @list;
my %hash;
my $flag;
my %set;
# begin usage info
my (%flags) = (
argx => $arg, # set a parameter
listx => @list, # fill in a list
hashx => %hash, # set key/value pairs
);
my (%switches) = (
flagx => $flag, # on or off
}
# end usage info
getopt(@ARGV, %flags, %switches, $what_comes_after);
Getopt::Tiny::usage(__FILE__, %flags, %switches, files);
or
use Getopt::Tiny;
%flags = ...
%switches = ...
getopt()
Getopt::Tiny::usage();
Getopt::Tiny is yet another argument parsing module. The results of the argument parsing are stored by using references that were provided to getopt(). Usage information is automatically generated. Getopt::Tiny expects all arguments to be switches -- no trailing list of files.
Getopt::Tiny can either call an existing usage() function or it can use its own builtin one. It trys to use the existing one by default. If that fails, it will use its own. It figures out how to describe things by reading the file where call to getopt() originated. In the file where getopt is called, the following two lines must appear exactly as written here:
# begin usage info
# end usage info
Between these two lines, lines that match the pattern of:
someflag => ... # a description
will be noticed and used to document each flag individually.
The usage() function of Getopt::Tiny can be called on its own. It can either have its arguments given to it explicitly or it can default them like getopt().
If a usage function is provided, it will be called with one parameter: the argument that didnt parse.
Getopt::Tiny can be used in situation where it is expected to parse the entire command line and in situations where there will be command line args left over. When Getopt::Tiny is expected to parse the whole command line, do not include a forth argument to getopt(). When it is expected that there will be stuff left over, pass a description of what should be left over as the forth argument to getopt().
<<lessSYNOPSIS
use Getopt::Tiny;
my $arg = default value;
my @list;
my %hash;
my $flag;
my %set;
# begin usage info
my (%flags) = (
argx => $arg, # set a parameter
listx => @list, # fill in a list
hashx => %hash, # set key/value pairs
);
my (%switches) = (
flagx => $flag, # on or off
}
# end usage info
getopt(@ARGV, %flags, %switches, $what_comes_after);
Getopt::Tiny::usage(__FILE__, %flags, %switches, files);
or
use Getopt::Tiny;
%flags = ...
%switches = ...
getopt()
Getopt::Tiny::usage();
Getopt::Tiny is yet another argument parsing module. The results of the argument parsing are stored by using references that were provided to getopt(). Usage information is automatically generated. Getopt::Tiny expects all arguments to be switches -- no trailing list of files.
Getopt::Tiny can either call an existing usage() function or it can use its own builtin one. It trys to use the existing one by default. If that fails, it will use its own. It figures out how to describe things by reading the file where call to getopt() originated. In the file where getopt is called, the following two lines must appear exactly as written here:
# begin usage info
# end usage info
Between these two lines, lines that match the pattern of:
someflag => ... # a description
will be noticed and used to document each flag individually.
The usage() function of Getopt::Tiny can be called on its own. It can either have its arguments given to it explicitly or it can default them like getopt().
If a usage function is provided, it will be called with one parameter: the argument that didnt parse.
Getopt::Tiny can be used in situation where it is expected to parse the entire command line and in situations where there will be command line args left over. When Getopt::Tiny is expected to parse the whole command line, do not include a forth argument to getopt(). When it is expected that there will be stuff left over, pass a description of what should be left over as the forth argument to getopt().
Download (0.005MB)
Added: 2007-04-11 License: Perl Artistic License Price:
926 downloads
HTML::Tiny 0.10
HTML::Tiny is a lightweight, dependency free HTML/XML generator. more>>
HTML::Tiny is a lightweight, dependency free HTML/XML generator.
SYNOPSIS
use HTML::Tiny;
my $h = HTML::Tiny->new;
# Generate a simple page
print $h->html(
[
$h->head( $h->title( Sample page ) ),
$h->body(
[
$h->h1( { class => main }, Sample page ),
$h->p( Hello, World, { class => detail }, Second para )
]
)
]
);
# Outputs
< html>
< head>
< title>Sample page< /title>
< /head>
< body>
< h1 class="main">Sample page< /h1>
< p>Hello, World< /p>
< p class="detail">Second para< /p>
< /body>
< /html>
<<lessSYNOPSIS
use HTML::Tiny;
my $h = HTML::Tiny->new;
# Generate a simple page
print $h->html(
[
$h->head( $h->title( Sample page ) ),
$h->body(
[
$h->h1( { class => main }, Sample page ),
$h->p( Hello, World, { class => detail }, Second para )
]
)
]
);
# Outputs
< html>
< head>
< title>Sample page< /title>
< /head>
< body>
< h1 class="main">Sample page< /h1>
< p>Hello, World< /p>
< p class="detail">Second para< /p>
< /body>
< /html>
Download (0.011MB)
Added: 2007-07-04 License: Perl Artistic License Price:
842 downloads
Tiny Translator 0.6
Tiny Translator is a very simple class for easily organizing dialogue outputs and creating language tables. more>>
Tiny Translator is a very simple class for easily organizing dialogue outputs and creating language tables for multilingual projects.
Tiny Translator uses flat files and does not require a database engine.
Enhancements:
- This release supports MySQL databases for storing phrases.
- It still supports flat files (comma separated).
- The translate() method was split into various methods.
- Deprecated elements were deleted.
<<lessTiny Translator uses flat files and does not require a database engine.
Enhancements:
- This release supports MySQL databases for storing phrases.
- It still supports flat files (comma separated).
- The translate() method was split into various methods.
- Deprecated elements were deleted.
Download (0.016MB)
Added: 2005-11-22 License: LGPL (GNU Lesser General Public License) Price:
1435 downloads
Tiny Tiny RSS 1.2.13
Tiny Tiny RSS is a server-side RSS feed aggregator written in PHP and heavily based on XmlHttpRequest and related technologies. more>>
Tiny Tiny RSS is a server-side RSS feed aggregator written in PHP and heavily based on XmlHttpRequest and related technologies for user interface and operation.
For years Ive been searching for a perfect RSS aggregator. I tried desktop ones (Straw, Blam!, Liferea) - while nice programs they usually lacked something or were overencumbered with features. Also, desktop aggregators cant solve the problem of keeping read feeds in sync between different machines.
I tried server-side aggregators, several ones. Unfortunately, I didnt find anything that felt usable, they had all the problems of classical web applications - clunky interface, no realtime updates, just not designed the way I like it, etc.
Well, then the obvious solution was to write an aggregator myself. I also felt the need to exercise in simple XmlHttpRequest web application programming, so TT-RSS was born. While obviously being on early stages on development and pretty much unfinished it offers a lot of functionality of desktop application while staying on server-side with all the benefits it provides.
<<lessFor years Ive been searching for a perfect RSS aggregator. I tried desktop ones (Straw, Blam!, Liferea) - while nice programs they usually lacked something or were overencumbered with features. Also, desktop aggregators cant solve the problem of keeping read feeds in sync between different machines.
I tried server-side aggregators, several ones. Unfortunately, I didnt find anything that felt usable, they had all the problems of classical web applications - clunky interface, no realtime updates, just not designed the way I like it, etc.
Well, then the obvious solution was to write an aggregator myself. I also felt the need to exercise in simple XmlHttpRequest web application programming, so TT-RSS was born. While obviously being on early stages on development and pretty much unfinished it offers a lot of functionality of desktop application while staying on server-side with all the benefits it provides.
Download (0.35MB)
Added: 2007-07-20 License: GPL (GNU General Public License) Price:
827 downloads
Tiny Tiny RSS Notifier 1.0.1
Tiny Tiny RSS Notifier is a notifier for your custom install of Tiny Tiny RSS. more>>
Tiny Tiny RSS Notifier is a notifier for your custom install of Tiny Tiny RSS.
<<less Download (0.020MB)
Added: 2007-05-09 License: MPL (Mozilla Public License) Price:
905 downloads
Tiny Marbles 1.0 Final
Tiny Marbles provides persistence for dynamic objects, through a data model that you can create, modify and extend at runtime. more>>
Tiny Marbles provides persistence for dynamic objects, through a data model that you can create, modify and extend at runtime.
It is useful for developers who need to create rapid prototypes with an unknown model and developers of applications that have inherently dynamic data models. Tiny Marbles project runs under Java 1.5, supports any database that Hibernate supports.
<<lessIt is useful for developers who need to create rapid prototypes with an unknown model and developers of applications that have inherently dynamic data models. Tiny Marbles project runs under Java 1.5, supports any database that Hibernate supports.
Download (8.5MB)
Added: 2007-08-16 License: The Apache License 2.0 Price:
801 downloads
TinyMe 2007 Test 5
TinyMe project exists to create a remaster of PCLinuxOS 2007 that will be quite slimmed down. more>>
TinyMe project exists to create a remaster of PCLinuxOS 2007 that will be quite slimmed down. The target is to get a functioning ~150MB ISO image that can provide a base installation for other MyPCLinuxOS projects, development, playing around, installation to old computers, where a minimal installation is all thats needed, and any other situations where a tiny Linux installation is required or desirable.
We want to create something that can compete with distros like Puppy, DSL, Feather, NimbleX, and PUD for speed and size while maintaining a similar level of functionality through the GUI.
Username/Password:
tiny/tiny
root/root
Enhancements:
- Fixed most open bugs. Only remaining major open bug (in my opinion) is that TinyMe still doesnt auto mount removable media.
- I switched to GDM. This allows us greater flexibility with our login manager. Also, it enables Shutdown and Reboot options on logout.
- AbiWord was installed, with all the plugins your heart desires. Create and edit ODT, DOC, WPD, and many other formats.
- Idesk now handles the desktop instead of PCManFM.
- Enabeled LXPanel transparency.
- Added Grafburn for burning CDs and DVDs. Thanks to Nathan Fisher of Grafpup for Grafburn.
- Created Welcome page. Fire up Opera to see it. (Did I mention Opera handles web browsing, mail, Bittorrent, and IRC chat?)
- Conky is a SuperKaramba-like desktop monitoring applet which has been added. GKrellm was fired. :-)
- Do you like music? Audacious was added. Audacious is a lot like WinAmp and you can use WinAmp themes on it.
- MEdit proved to be somewhat buggy. Although I rather liked it, I opted to use SciTE instead. Enjoy.
- Changed Mrxvt to the default terminal. Mrxvt is a tabbed terminal, plus it has some pretty cool transparency.
- Galculator is a quite small calculator added to test 5.
- Xarchiver has been added for its wonderous abilities to open just about any compressed archive, including RPMs and ISOs.
- MtPaint was added. MtPaint is a very basic picture editor. You can also use MtPaint to take a screenshot.
- XKill has been added and a menu entry created for those balky programs which hang on you.
- Tweaked overall look n feel some more. Added 2 wallpapers (okay, its 1 wallpaper; 1 is 4:3, the other 16:10)
<<lessWe want to create something that can compete with distros like Puppy, DSL, Feather, NimbleX, and PUD for speed and size while maintaining a similar level of functionality through the GUI.
Username/Password:
tiny/tiny
root/root
Enhancements:
- Fixed most open bugs. Only remaining major open bug (in my opinion) is that TinyMe still doesnt auto mount removable media.
- I switched to GDM. This allows us greater flexibility with our login manager. Also, it enables Shutdown and Reboot options on logout.
- AbiWord was installed, with all the plugins your heart desires. Create and edit ODT, DOC, WPD, and many other formats.
- Idesk now handles the desktop instead of PCManFM.
- Enabeled LXPanel transparency.
- Added Grafburn for burning CDs and DVDs. Thanks to Nathan Fisher of Grafpup for Grafburn.
- Created Welcome page. Fire up Opera to see it. (Did I mention Opera handles web browsing, mail, Bittorrent, and IRC chat?)
- Conky is a SuperKaramba-like desktop monitoring applet which has been added. GKrellm was fired. :-)
- Do you like music? Audacious was added. Audacious is a lot like WinAmp and you can use WinAmp themes on it.
- MEdit proved to be somewhat buggy. Although I rather liked it, I opted to use SciTE instead. Enjoy.
- Changed Mrxvt to the default terminal. Mrxvt is a tabbed terminal, plus it has some pretty cool transparency.
- Galculator is a quite small calculator added to test 5.
- Xarchiver has been added for its wonderous abilities to open just about any compressed archive, including RPMs and ISOs.
- MtPaint was added. MtPaint is a very basic picture editor. You can also use MtPaint to take a screenshot.
- XKill has been added and a menu entry created for those balky programs which hang on you.
- Tweaked overall look n feel some more. Added 2 wallpapers (okay, its 1 wallpaper; 1 is 4:3, the other 16:10)
Download (195.1MB)
Added: 2007-08-09 License: GPL (GNU General Public License) Price:
808 downloads
Tiny C Compiler 0.9.23
Tiny C compiles so fast that even for big projects Makefiles may not be necessary. more>>
Tiny C compiles so fast that even for big projects Makefiles may not be necessary.
TinyCC (aka TCC) is a small but hyper fast C compiler. Unlike other C compilers, it is meant to be self-relying: you do not need an external assembler or linker because TCC does that for you.
TCC not only supports ANSI C, but also most of the new ISO C99 standard and many GNUC extensions including inline assembly.
TCC can also be used to make C scripts, i.e. pieces of C source that you run as a Perl or Python script. Compilation is so fast that your script will be as fast as if it was an executable. TCC can also automatically generate memory and bound checks while allowing all C pointers operations. TCC can do these checks even if non patched libraries are used.
With libtcc, you can use TCC as a backend for dynamic code generation
TCC mainly supports the i386 target on Linux and Windows. There are alpha ports for the ARM (arm-tcc) and the TMS320C67xx targets (c67-tcc).
Main features:
- SMALL! You can compile and execute C code everywhere, for example on rescue disks (about 100KB for x86 TCC executable, including C preprocessor, C compiler, assembler and linker).
- FAST! tcc generates optimized x86 code. No byte code overhead. Compile, assemble and link several times faster than GCC.
- UNLIMITED! Any C dynamic library can be used directly. TCC is heading torward full ISOC99 compliance. TCC can of course compile itself.
- SAFE! tcc includes an optional memory and bound checker. Bound checked code can be mixed freely with standard code.
- Compile and execute C source directly. No linking or assembly necessary. Full C preprocessor and GNU-like assembler included.
- C script supported : just add #!/usr/local/bin/tcc -run at the first line of your C source, and execute it directly from the command line.
- With libtcc, you can use TCC as a backend for dynamic code generation.
Enhancements:
- initial PE executable format for windows version (grischka)
- #pragma pack support (grischka)
- #include_next support (Bernhard Fischer)
- ignore -pipe option
- added -f[no-]leading-underscore
- preprocessor function macro parsing fix (grischka)
<<lessTinyCC (aka TCC) is a small but hyper fast C compiler. Unlike other C compilers, it is meant to be self-relying: you do not need an external assembler or linker because TCC does that for you.
TCC not only supports ANSI C, but also most of the new ISO C99 standard and many GNUC extensions including inline assembly.
TCC can also be used to make C scripts, i.e. pieces of C source that you run as a Perl or Python script. Compilation is so fast that your script will be as fast as if it was an executable. TCC can also automatically generate memory and bound checks while allowing all C pointers operations. TCC can do these checks even if non patched libraries are used.
With libtcc, you can use TCC as a backend for dynamic code generation
TCC mainly supports the i386 target on Linux and Windows. There are alpha ports for the ARM (arm-tcc) and the TMS320C67xx targets (c67-tcc).
Main features:
- SMALL! You can compile and execute C code everywhere, for example on rescue disks (about 100KB for x86 TCC executable, including C preprocessor, C compiler, assembler and linker).
- FAST! tcc generates optimized x86 code. No byte code overhead. Compile, assemble and link several times faster than GCC.
- UNLIMITED! Any C dynamic library can be used directly. TCC is heading torward full ISOC99 compliance. TCC can of course compile itself.
- SAFE! tcc includes an optional memory and bound checker. Bound checked code can be mixed freely with standard code.
- Compile and execute C source directly. No linking or assembly necessary. Full C preprocessor and GNU-like assembler included.
- C script supported : just add #!/usr/local/bin/tcc -run at the first line of your C source, and execute it directly from the command line.
- With libtcc, you can use TCC as a backend for dynamic code generation.
Enhancements:
- initial PE executable format for windows version (grischka)
- #pragma pack support (grischka)
- #include_next support (Bernhard Fischer)
- ignore -pipe option
- added -f[no-]leading-underscore
- preprocessor function macro parsing fix (grischka)
Download (0.41MB)
Added: 2005-11-21 License: LGPL (GNU Lesser General Public License) Price:
1449 downloads
Tiny ERP Web client 0.0.1
Tiny ERP Web client is a Turbogears/AJAX interface for the enterprise management software Tiny ERP. more>>
Tiny ERP Web client is a Turbogears/AJAX interface for the enterprise management software Tiny ERP.
The project supports all features of the GTK client and connects to the Tiny ERP server using XML-RPC.
<<lessThe project supports all features of the GTK client and connects to the Tiny ERP server using XML-RPC.
Download (0.38MB)
Added: 2007-06-15 License: GPL (GNU General Public License) Price:
865 downloads
Download (0.20MB)
Added: 2007-01-09 License: GPL (GNU General Public License) Price:
1025 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 tiny 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