clone videos
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1254
Clone 0.23
Clone is a Perl module that can recursively copy Perl datatypes. more>>
Clone is a Perl module that can recursively copy Perl datatypes.
SYNOPSIS
use Clone;
push @Foo::ISA, Clone;
$a = new Foo;
$b = $a->clone();
# or
use Clone qw(clone);
$a = { foo => bar, move => zig };
$b = [ alpha, beta, gamma, vlissides ];
$c = new Foo();
$d = clone($a);
$e = clone($b);
$f = clone($c);
This module provides a clone() method which makes recursive copies of nested hash, array, scalar and reference types, including tied variables and objects.
clone() takes a scalar argument and an optional parameter that can be used to limit the depth of the copy. To duplicate lists, arrays or hashes, pass them in by reference. e.g.
my $copy = clone (@array);
# or
my %copy = %{ clone (%hash) };
For a slower, but more flexible solution see Storables dclone().
<<lessSYNOPSIS
use Clone;
push @Foo::ISA, Clone;
$a = new Foo;
$b = $a->clone();
# or
use Clone qw(clone);
$a = { foo => bar, move => zig };
$b = [ alpha, beta, gamma, vlissides ];
$c = new Foo();
$d = clone($a);
$e = clone($b);
$f = clone($c);
This module provides a clone() method which makes recursive copies of nested hash, array, scalar and reference types, including tied variables and objects.
clone() takes a scalar argument and an optional parameter that can be used to limit the depth of the copy. To duplicate lists, arrays or hashes, pass them in by reference. e.g.
my $copy = clone (@array);
# or
my %copy = %{ clone (%hash) };
For a slower, but more flexible solution see Storables dclone().
Download (0.010MB)
Added: 2007-05-16 License: Perl Artistic License Price:
899 downloads
Open Invaders 0.2
Open Invaders is a GPL version of Space Invaders. more>>
Open Invaders is a fully-GPL interpretation of Taitos Space Invaders. While it is not a perfect clone, the aim of the project is to provide a feature rich clone of the famous arcade game. It features (so far) 14 levels with unique backdrops and a full soundtrack.
<<less Download (0.14MB)
Added: 2007-06-21 License: GPL (GNU General Public License) Price:
859 downloads
Download Youtube video 0.1
Download Youtube video is a Konqueror service menu to download and encode youtube videos. more>>
Download Youtube video is a Konqueror service menu to download and encode youtube videos.
This is a hack of another service menu that stoped working (at least for me): http://www.kde-apps.org/content/show.php?content=37509
Main features:
- Download videos with the KDE file copy dialog instead of using KGet
- Automatically encode videos with mencoder, or just download
You can use ffmpeg too, just comment out the right lines in the python file, Im unable to encode some videos with ffmpeg, so mencoder is the default
<<lessThis is a hack of another service menu that stoped working (at least for me): http://www.kde-apps.org/content/show.php?content=37509
Main features:
- Download videos with the KDE file copy dialog instead of using KGet
- Automatically encode videos with mencoder, or just download
You can use ffmpeg too, just comment out the right lines in the python file, Im unable to encode some videos with ffmpeg, so mencoder is the default
Download (0.002MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
730 downloads
GNOME Video Arcade 0.4.2
GNOME Video Arcade is a simple xmame front-end for the GNOME Desktop Environment. more>>
GNOME Video Arcade is a simple xmame front-end for the GNOME Desktop Environment.
Just getting this project off the ground. Im hoping to create a simple and easy-to-use xmame front-end that is not just another mame32 clone.
This project is aimed at casual gamers like myself that just want to play classic arcade games on their desktop.
<<lessJust getting this project off the ground. Im hoping to create a simple and easy-to-use xmame front-end that is not just another mame32 clone.
This project is aimed at casual gamers like myself that just want to play classic arcade games on their desktop.
Download (0.33MB)
Added: 2007-08-05 License: GPL (GNU General Public License) Price:
815 downloads
Clone::More 0.90.2
Clone::More is a Perl module that can copy Perl data structures. more>>
Clone::More is a Perl module that can copy Perl data structures.
SYNOPSIS
use Clone::More qw( clone );
my $structure = [
{ key => value }
];
for my $set ( @$structure ) {
my $clone = clone( $set );
for ( keys %$clone ) {
print "Everything matches" if ( exists( $set->{$_} ) && $set->{$_} eq $clone->{$_} );
}
}
This is intended to act as a utility in order to natively clone data structures via a simple Perl interface. Will ensure that all references will be separated from the parent data strure, yet kept relative to the new structure (if need be).
Please take a look at the WARNINGS, GOTCHAS and FUTURE DEVELOPMENT sections, as resources to see if this module is fully capable of doing everything that you want it to do (and it will do most everything).
<<lessSYNOPSIS
use Clone::More qw( clone );
my $structure = [
{ key => value }
];
for my $set ( @$structure ) {
my $clone = clone( $set );
for ( keys %$clone ) {
print "Everything matches" if ( exists( $set->{$_} ) && $set->{$_} eq $clone->{$_} );
}
}
This is intended to act as a utility in order to natively clone data structures via a simple Perl interface. Will ensure that all references will be separated from the parent data strure, yet kept relative to the new structure (if need be).
Please take a look at the WARNINGS, GOTCHAS and FUTURE DEVELOPMENT sections, as resources to see if this module is fully capable of doing everything that you want it to do (and it will do most everything).
Download (0.027MB)
Added: 2007-05-16 License: Perl Artistic License Price:
891 downloads
ConfigReader::Simple 1.25
ConfigReader::Simple is a simple configuration file parser. more>>
ConfigReader::Simple is a simple configuration file parser.
SYNOPSIS
use ConfigReader::Simple;
# parse one file
$config = ConfigReader::Simple->new("configrc", [qw(Foo Bar Baz Quux)]);
# parse multiple files, in order
$config = ConfigReader::Simple->new_multiple(
Files => [ "global", "configrc" ],
Keys => [qw(Foo Bar Baz Quux)]
);
my @directives = $config->directives;
$config->get( "Foo" );
if( $config->exists( "Bar" ) )
{
print "Bar was in the config filen";
}
# copy an object to play with it separately
my $clone = $config->clone;
# only affects clone
$clone->set( "Foo", "Buster" );
# save the config to a single file
$clone->save( "configrc" )
# save the config to a single file, but only with
# certain directives
$clone->save( "configrc" => [qw(Foo Bar)] )
# save to multiple configuration files
$clone->save(
"configrc" => [qw(Foo Bar)],
"global" => [qw(Baz Quux)],
);
ConfigReader::Simple reads and parses simple configuration files. It is designed to be smaller and simpler than the ConfigReader module and is more suited to simple configuration files.
<<lessSYNOPSIS
use ConfigReader::Simple;
# parse one file
$config = ConfigReader::Simple->new("configrc", [qw(Foo Bar Baz Quux)]);
# parse multiple files, in order
$config = ConfigReader::Simple->new_multiple(
Files => [ "global", "configrc" ],
Keys => [qw(Foo Bar Baz Quux)]
);
my @directives = $config->directives;
$config->get( "Foo" );
if( $config->exists( "Bar" ) )
{
print "Bar was in the config filen";
}
# copy an object to play with it separately
my $clone = $config->clone;
# only affects clone
$clone->set( "Foo", "Buster" );
# save the config to a single file
$clone->save( "configrc" )
# save the config to a single file, but only with
# certain directives
$clone->save( "configrc" => [qw(Foo Bar)] )
# save to multiple configuration files
$clone->save(
"configrc" => [qw(Foo Bar)],
"global" => [qw(Baz Quux)],
);
ConfigReader::Simple reads and parses simple configuration files. It is designed to be smaller and simpler than the ConfigReader module and is more suited to simple configuration files.
Download (0.011MB)
Added: 2007-04-12 License: Perl Artistic License Price:
934 downloads
nInvaders 0.1.1
nInvaders project is a Space Invaders clone for ncurses. more>>
nInvaders project is a Space Invaders clone for ncurses.
Ever wanted to play space invaders when you cant find a GUI? Now you can!
Enhancements:
- added timer - now playable under irix, windows, some redhat-versions
- added title-screen
- removed bug: shooting last alien sometimes freezed game
<<lessEver wanted to play space invaders when you cant find a GUI? Now you can!
Enhancements:
- added timer - now playable under irix, windows, some redhat-versions
- added title-screen
- removed bug: shooting last alien sometimes freezed game
Download (0.031MB)
Added: 2006-12-06 License: GPL (GNU General Public License) Price:
1053 downloads
Kvm (Kde Video Menu) 0.2.1
Kvm is a Konqueror service menu which allows to manage your videos without to use a graphical application. more>>
Kvm is a Konqueror service menu which allows to manage your videos without to use a graphical application.
Kvm (Kde Video Menu) service menu can be considered as a frontend of ffmpeg.
Enhancements:
- fix some bugs!
<<lessKvm (Kde Video Menu) service menu can be considered as a frontend of ffmpeg.
Enhancements:
- fix some bugs!
Download (0.012MB)
Added: 2007-05-25 License: GPL (GNU General Public License) Price:
1196 downloads
Class::Cloneable 0.03
Class::Cloneable is a base class for Cloneable objects. more>>
Class::Cloneable is a base class for Cloneable objects.
SYNOPSIS
package MyObject;
our @ISA = (Class::Cloneable);
# calling clone on an instance of MyObject
# will give you full deep-cloning functionality
This module provides a flexible base class for building objects with cloning capabilities. This module does its best to respect the encapsulation of all other objects, including subclasses of itself. This is intended to be a stricter and more OO-ish option than the more general purpose Clone and Clone::PP modules.
<<lessSYNOPSIS
package MyObject;
our @ISA = (Class::Cloneable);
# calling clone on an instance of MyObject
# will give you full deep-cloning functionality
This module provides a flexible base class for building objects with cloning capabilities. This module does its best to respect the encapsulation of all other objects, including subclasses of itself. This is intended to be a stricter and more OO-ish option than the more general purpose Clone and Clone::PP modules.
Download (0.008MB)
Added: 2006-10-06 License: Perl Artistic License Price:
1114 downloads
pyConnect4
pyConnect4 is a clone of Connect 4 game for 2 players. more>>
pyConnect4 is a clone of Connect 4 game for 2 players.
This is my second project in python. The game has more features and lesser code lines as pyXXO.
How is pyConnect4 started?
Download the tar.gz file and extract it:
tar xfz pyConnect4.tar.gz
Then change into the new dir:
cd pyConnect4
and start pyConnect4:
python pyConnect4.py
<<lessThis is my second project in python. The game has more features and lesser code lines as pyXXO.
How is pyConnect4 started?
Download the tar.gz file and extract it:
tar xfz pyConnect4.tar.gz
Then change into the new dir:
cd pyConnect4
and start pyConnect4:
python pyConnect4.py
Download (0.080MB)
Added: 2007-06-21 License: Freeware Price:
855 downloads
Keepvid 1.0
Keepvid allows you to download videos from Youtube, Google, Metacafe, iFilm, Dailymotion etc. more>>
Keepvid allows you to download videos from Youtube, Google, Metacafe, iFilm, Dailymotion etc.
Download videos from Youtube, Google, Metacafe, iFilm, Dailymotion... and other video sites !
<<lessDownload videos from Youtube, Google, Metacafe, iFilm, Dailymotion... and other video sites !
Download (0.004MB)
Added: 2007-04-11 License: MPL (Mozilla Public License) Price:
701 downloads
Koncert 0.1
Koncert is an arcade videogame clone for KDE/Qt. more>>
Koncert project is an arcade videogame clone for KDE/Qt.
Koncert is a clone of an old C64 arcade game (Rootin Tootin), written for KDE/Qt. Its part of the K64 project.
Installation guide:
# bzip2 -cd koncert-0.1.tar.bz2 | tar xf -
# cd koncert
# ./configure
# make
# make install
Enhancements:
- Added a levels editor.
- Made some bugfixes.
<<lessKoncert is a clone of an old C64 arcade game (Rootin Tootin), written for KDE/Qt. Its part of the K64 project.
Installation guide:
# bzip2 -cd koncert-0.1.tar.bz2 | tar xf -
# cd koncert
# ./configure
# make
# make install
Enhancements:
- Added a levels editor.
- Made some bugfixes.
Download (0.92MB)
Added: 2006-12-09 License: GPL (GNU General Public License) Price:
1054 downloads
Tornado 1.3
Tornado project is a clone of the original C64 game. more>>
Tornado project is a clone of the original C64 game.
The goal of the game is to destroy the opponents house with certain weather phenomena: rain, snow, hail, lightning, and the tornado.
The game can be played together (two players), against the computer (or two computer players against each other) or over a TCP connection.
<<lessThe goal of the game is to destroy the opponents house with certain weather phenomena: rain, snow, hail, lightning, and the tornado.
The game can be played together (two players), against the computer (or two computer players against each other) or over a TCP connection.
Download (0.050MB)
Added: 2006-11-13 License: GPL (GNU General Public License) Price:
1076 downloads
DVD Slideshow 7.1
dvd-slideshow makes a DVD slideshow video with menus from a text file listin... more>> dvd-slideshow makes a DVD slideshow video with menus from a text file listing of pictures, effects, and audio tracks. You can add some nice effects like fades, crops, scrolls, or Ken Burns effects. It will hopefully become a command-line clone of imovie<<less
Download (4.0MB)
Added: 2009-04-23 License: Freeware Price:
190 downloads
KVideoEncoder 0.08
KVideoEncoder is a GUI for the mencoder. more>>
KVideoEncoder is a GUI for the mencoder; the goal of this application is to be a clone of TMPGEnc for Linux with additional features.
KVideoEncoder supports joining of two or more videos and dvd-ripping.
<<lessKVideoEncoder supports joining of two or more videos and dvd-ripping.
Download (MB)
Added: 2007-01-15 License: GPL (GNU General Public License) Price:
1018 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 clone videos 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