Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.130.816 Times

D Sub Plastic Custom Enclosure software
Filter: All | Freeware | Demo
 

D Sub Plastic Custom Enclosure

< 1 2 3 4 5 > 
Added: January 18, 2010 | Visits: 823

Sub::PatMat Sub::PatMat can call a version of subroutine depending on its arguments. SYNOPSIS use Sub::PatMat; # basics: sub fact : when($_[0] <= 1) { 1 } sub fact { my ($n) = @_; $n*fact($n-1) } print fact(6); # referring to things other than @_: sub mysort : when($a < $b) { -1 } sub mysort :...



Platforms: *nix

License: Freeware Size: 14.34 KB Download (92): Sub::PatMat Download

Added: February 16, 2010 | Visits: 1.451

Custom Eclipse Builder Custom Eclipse Builder is a lightweight Ant-based project to build a company and personal customized Eclipse distribution including company and personal relevant plugins, preferences and settings. The modern software development process becomes more and more distributed characted. Now, a usual...





Platforms: *nix

License: Freeware Size: 1.2 MB Download (95): Custom Eclipse Builder Download

Added: November 03, 2010 | Visits: 1.465

Custom Geometry 1.2.0 for Custom Geometry is an extension which resizes and positions the window according to your settings. Custom Geometry adds a button to the Firefox status bar that will resize the Firefox window to your specifications. Many other extensions will resize the window, but only to preset dimensions,...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (102): Custom Geometry 1.2.0 for Download

Added: August 27, 2010 | Visits: 1.403

d command The d command runs a command in the background and redirects its output to a file. The output file is annotated with start and end time, the actual command used, cwd, host, etc. You can ask the d command to extract the last command from the output file and run it again, you can ask it to append...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (151): d command Download

Added: November 05, 2010 | Visits: 1.264

D frontend for GCC D is a high-level language derived from C and C++ but is not backwards-compatible with either. GDC is a frontend for D written for GCC. Supported Systems: GCC 3.3.x, 3.4.x, 4.0.x Linux (tested on Red Hat 7.2, 8) Mac OS X 10.3.x, 10.4.x FreeBSD 5.2.1 Cygwin MinGW AIX (tested on 5.1)...


Platforms: *nix

License: Freeware Size: 1.1 MB Download (110): D frontend for GCC Download

Added: November 16, 2010 | Visits: 785

Sub::Curry Sub::Curry is a Perl module to create curried subroutines. SYNOPSIS use Sub::Curry; use Sub::Curry qw/ :CONST curry /; # Import spice constants # and the &curry function. #my $f1 = Sub::Curry::->new(&foo, 1, 2); # Same as below. my $f1 = curry(&foo, 1, 2); my $f2 = $cb1->new(3, 4); my...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (93): Sub::Curry Download

Added: May 18, 2010 | Visits: 1.273

Sub::Slice::Manual Sub::Slice::Manual is a Perl module with user guide for Sub::Slice. USING Sub::Slice Sub::Slice is a way of breaking down a long-running process and maintaining state across a stateless protocol. This allows the client to draw a progress bar or abort the process part-way through. The...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (98): Sub::Slice::Manual Download

Added: October 06, 2010 | Visits: 627

Sub::Timebound Sub::Timebound is a Perl extension for timebound computations. SYNOPSIS use Sub::Timebound; sub fun { my $i = shift; if ($i =~ /7$/) { die "Simulated internal errorn"; } while ($i) { $i--; } return "All is well"; } my $x = timeboundretry(10, 3, 5, &fun, 10); ### Returns { value...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (86): Sub::Timebound Download

Added: March 17, 2010 | Visits: 1.060

Plastic SCM Plastic SCM is a full-featured Software Configuration Management system that tracks changes to source code and any digital asset over time. The software improves the visibility and management of parallel development, ensuring optimal team collaboration with a user-friendly interface and advanced...


Platforms: *nix

License: Shareware Cost: $770.00 USD Size: 36.7 MB Download (94): Plastic SCM Download

Added: August 07, 2010 | Visits: 1.496

The Plastic File System The Plastic File System project is an LD_PRELOAD module for manipulating what the file system looks like for programs. This allows virtual file systems to exist in user space, without kernel hacks or modules. PlasticFS includes the following file systems: chroot The chroot filter may be...


Platforms: *nix

License: Freeware Size: 184.32 KB Download (102): The Plastic File System Download

Added: June 18, 2010 | Visits: 850

Sub::Assert Sub::Assert - Design-by-contract like pre- and postconditions, etc. SYNOPSIS use Sub::Assert; sub squareroot { my $x = shift; return $x**0.5; } assert pre => $PARAM[0] >= 1, # for the sake of simplicity post => $VOID or $RETURN <= $PARAM[0], sub => squareroot, context => novoid,...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (92): Sub::Assert Download

Added: July 16, 2010 | Visits: 936

Sub::Quotelike Sub::Quotelike is a Perl module that allows to define quotelike functions. SYNOPSIS use Sub::Quotelike; sub myq () { my $s = shift; # Do something with $s... return $s; } sub myqq (") { my $s = shift; # Do something with $s... return $s; } print myq/abc def/; print myqq{abc...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (93): Sub::Quotelike Download

Added: March 05, 2010 | Visits: 1.574

Dark Plastic 2 Suite Dark Plastic 2 Suite is a very nice, black KDE theme.. Content KDE-Look.org Community Portal for KDE Themes Wallpapers Icons Sounds Screenshots Schemes Skins Skinz Screensavers Splash Screens K-Jofol IceWM Kaiman News Forum GUI Polls Links Downloads GTK QT Look Kaiman News Karamba Mouse X11 Linux


Platforms: *nix

License: Freeware Size: 583.68 KB Download (147): Dark Plastic 2 Suite Download

Added: February 27, 2010 | Visits: 724

Sub::Regex Sub::Regex is a Perl module to create synonymous subroutines. SYNOPSIS use Sub::Regex; sub /look(s|ing)?_for/ ($){ foobar blah blah } look_for(Amanda); looks_for(Amanda); looking_for(Amanda); lOoKiNg_fOr(Amanda); Sub::Regex is a small tool for users to create a subroutine with...


Platforms: *nix

License: Freeware Size: 2.05 KB Download (96): Sub::Regex Download

Released: January 01, 2007  |  Added: January 27, 2011 | Visits: 1.326

Plastic surgery diary Free tool to record progress of your plastic surgery transformation. Of course it is possible to use any diary for that, but would you do that if I do not reminder ? Just record your feelings, thoughts, fears related to plastic surgery operation, whether this is liposuction, breast enlargement or...


Platforms: Windows

License: Freeware Size: 196 KB Download (115): Plastic surgery diary Download

Released: September 24, 2012  |  Added: September 24, 2012 | Visits: 554

Plastic Book Plastic Book for Windows: Designed to make keeping track of all kinds of "plastic cards" as easy as possible. It can be used for credit cards, bank client cards, library cards, etc. The data file has fields such as: Type, Number, Code, Limit, Fee, Issuing Institution, Customer Service Phone...


Platforms: Windows

License: Shareware Cost: $17.00 USD Size: 296.96 KB Download (477): Plastic Book Download

Released: November 27, 2012  |  Added: November 27, 2012 | Visits: 856

Custom Greeting Card Make happy your dear ones by designing beautiful greeting cards with personalized messages to shown all much you loved or cared for them using advance custom greeting card maker software. Most extraordinary featured greeting card maker software allowed user to craft colorful and good looking...


Platforms: Windows

License: Shareware Cost: $29.00 USD Size: 10.1 MB Download (58): Custom Greeting Card Download

Released: November 17, 2012  |  Added: November 17, 2012 | Visits: 644

D-XMLManager D-XMLManager was specially developed to be a handy and accessible XML editor that can help you manage all your XML files. Now you can make use of this handy piece of software to edit all your XMLs in no time at all.


Platforms: Windows

License: Freeware Download (51): D-XMLManager Download

Released: August 13, 2012  |  Added: August 13, 2012 | Visits: 805

Custom Database Software Create a custom database with user-specified fields and data.


Platforms: Windows

License: Shareware Cost: $19.99 USD Size: 727 KB Download (55): Custom Database Software Download

Released: July 22, 2013  |  Added: September 23, 2013 | Visits: 1.065

Custom Icon Design If you are looking for professional custom icon design, IconDesignLAB.com does all of the hard work for you, presenting you with high quality expert results. Whatever type of icons you need, this service will not disappoint, offering you main program icons, company logos and interface icons for...


Platforms: Windows, Mac, *nix, Other

License: Freeware Size: 2.39 MB Download (63): Custom Icon Design Download

< 1 2 3 4 5 >