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.284.015 Times

Sub Joiner freeware
Filter: All | Freeware | Demo
 

Sub Joiner

1 2 3 4 5 > 
Released: October 14, 2012  |  Added: October 14, 2012 | Visits: 1.478

File Joiner (64bit, portable) File Joiner (.001 File Joiner) is a very simple and easy to use application that will combine split files (with extensions: .001, .002, .003, etc.) back into one file. Files with extension .001 (001, 002, ... 00n) are parts of a bigger file that was split so they could be sent over newsgroup,...



Platforms: Windows

License: Freeware Download (328): File Joiner (64bit, portable) Download

Released: October 22, 2012  |  Added: October 22, 2012 | Visits: 926

File Joiner (32bit, portable) File Joiner is a tool which combines multiple files into one file. If you have all these files ending with .001, .002, .003, etc. and don't know what to do with them, this is the application for you. 00n (001, 002, ...) are parts of a bigger file that was split for easier manageability and/or so...





Platforms: Windows

License: Freeware Download (117): File Joiner (32bit, portable) Download

Released: March 24, 2012  |  Added: April 03, 2012 | Visits: 6.149

Easy File Joiner Easy File Joiner is a simple software to join files. If you have downloaded parts of a larger file or want to combine multiple text or MPG files this tool is for you. Easy File Joiner only works with files with no header information, so joining formats such as MP3, AVI, BMP, JPEG will not work,...


Platforms: Windows, Other

License: Freeware Size: 438.16 KB Download (1448): Easy File Joiner Download

Released: October 29, 2008  |  Added: November 01, 2008 | Visits: 21.688

Free Video Joiner With Free Video Joiner you can join several videos into one large video file, it is a powerful tool and easy to use, works fast and keep the quality of video, supports video formats include: AVI ((Divx,XviD,MPEG4), WMV, MPEG (MPEG1 and MPEG2), MP4, MOV, DVD, VCD and other formats. This free...


Platforms: Windows

License: Freeware Size: 3.36 MB Download (7650): Free Video Joiner Download

Released: March 12, 2009  |  Added: March 31, 2009 | Visits: 11.289

Agogo Video Joiner Free Agogo AVI MPEG WMV MOV RM Video Joiner is a expert and easy-to-used Windows application that create your favorite movies directly. It can help you join multiple AVI, Divx, ASF, WMV, WMA, MPEG, MOV, QT, RM, RMVB file into one large move file with RM / AVI / MPEG / MOV / WMV format without losing...


Platforms: Windows

License: Freeware Size: 7.03 MB Download (4320): Agogo Video Joiner Free Download

Added: January 18, 2010 | Visits: 825

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: November 16, 2010 | Visits: 786

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.275

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: 629

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 (87): Sub::Timebound Download

Added: June 18, 2010 | Visits: 854

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: 938

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: February 26, 2010 | Visits: 846

Sub::DeferredPartial Sub::DeferredPartial is a deferred evaluation / partial application. SYNOPSIS use Sub::DeferredPartial def; $S = def sub : P1 P2 P3 { %_=@_; join , @_{qw(P1 P2 P3)} }; print $S->( P1 => 1, P2 => 2, P3 => 3 )->(); # 123 $A = $S->( P3 => 1 ); # partial application $B = $S->( P3 => 2 );...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (93): Sub::DeferredPartial Download

Added: February 27, 2010 | Visits: 726

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 (102): Sub::Regex Download

Released: January 28, 2015  |  Added: March 30, 2015 | Visits: 7.826

All Free Video Joiner All Free Video Joiner is an easy and free-to-use video joiner for novices and professionals. There are several video formats presets provided for improving your joined files. You can join or merge multiple video files into a large one (AVI, MP4, FLV, WMV, etc.) without any quality loss. It can...


Platforms: Windows, Windows 7, Windows Server

License: Freeware Size: 6.55 MB Download (3164): All Free Video Joiner Download

Released: January 28, 2015  |  Added: February 08, 2015 | Visits: 38.737

All Free MP3 Joiner All Free MP3 Joiner is an easy and fast audio tool to combine, merge or join MP3 files without recompressing and quality loss. Using our free MP3 joiner, you can join various audio files like MP3, WAV, WMA and OGG to a larger one within just a few seconds. With our MP3 merger, you can also...


Platforms: Windows, Windows 7, Windows Server

License: Freeware Size: 6.78 MB Download (5718): All Free MP3 Joiner Download

Released: June 06, 2012  |  Added: July 03, 2012 | Visits: 6.113

AoA Video Joiner AoA Video Joiner is a free utility that lets you easily join multiple video clips of AVI, MPEG, MOV, WMV, Flash Vieo (FLV), MP4 and 3GP together into one large movie. You can take the vacation, wedding, and family movies that you have scattered on your hard drive, and combine them...


Platforms: Windows

License: Freeware Size: 5.62 MB Download (2083): AoA Video Joiner Download

Released: March 16, 2011  |  Added: March 24, 2011 | Visits: 2.414

MP3 Joiner Pro MP3 Joiner Pro is an easy and efficient FREE mp3 joiner. Join and merge MP3 files into one big file. Support batch MP3 joining. Incredibly fast and fully optimized for multiprocessor/multi-core systems. On-the-fly joining, no temporary file generated. Windows Explorer-Style user...


Platforms: Windows

License: Freeware Size: 2.19 MB Download (772): MP3 Joiner Pro Download

Released: March 30, 2011  |  Added: April 07, 2011 | Visits: 3.119

MP3 Joiner Splitter MP3 Joiner Splitter a FREEWARE which splits and joins MP3 files. MP3 Joiner Splitter is a FREE mp3 splitter and joiner. -Split MP3 files into sections by length, size and count. -Cut used-defined section. -Copy audio tag during the splitting process. -Join and merge MP3 files into...


Platforms: Windows

License: Freeware Size: 2.13 MB Download (974): MP3 Joiner Splitter Download

Released: November 13, 2013  |  Added: December 01, 2013 | Visits: 2.848

Free WMA WAV MP3 Joiner Join and convert MP3, WAV, WMA with Free WMA WAV MP3 Joiner fast and easily! Free WMA WAV MP3 Joiner is a free music joiner to combine as many audio files as possible into a single one for non-stop enjoyment. It's also an audio converter to convert amount of audio formats in batch for your...


Platforms: Windows, Windows 7

License: Freeware Size: 7.02 MB Download (521): Free WMA WAV MP3 Joiner Download

Released: March 28, 2011  |  Added: April 03, 2011 | Visits: 2.396

iovSoft Free MP3 Cutter Joiner iovSoft Free MP3 Cutter Joiner is an aspirational program for music lovers especially one who likes to create his own music. You can add single audio file or a folder to this program. The elapse time changes with the playing audio so that you can know at which time point you should start...


Platforms: Windows, Mac

License: Freeware Cost: $1.00 USD Size: 4.68 MB Download (400): iovSoft Free MP3 Cutter Joiner Download

1 2 3 4 5 >