swap magic 3.3 xenosaga
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 493
Parted Magic 1.8
Parted Magic is a ~30mb LiveCD/USB with its only purpose being partitioning hard drives. more>>
Parted Magic is a ~30mb LiveCD/USB with its only purpose being partitioning hard drives. Although GParted and Parted are the main programs, the CD/USB also offers programs like partimage, testdisk, fdisk, sfdisk, dd, etc...
Parted Magic is based on my work from the GParted LiveCD project and falls under the terms of the GPL.
Enhancements:
- We added dd_rhelp, sdparm, mbr, and xfburn for starters. Updated programs: linux-2.6.22, e2fsprogs-1.40.2, ntfs-3g-1.710, dd_rescue-1.13, ddrescue-1.5, leafpad-0.8.11, file-4.21, testdisk-6.7, mdadm-2.6.1, pciutils-2.2.5, syslinux-3.51, isomaster-1.0, hdparm-7.4, xfsprogs_2.8.21-1, busybox-1.5.1, and usbutils-0.72. All menus are bypassed now. After the syslinux menu, it boots to the desktop without any other interruptions. You can now create the LiveUSB from the LiveCD by using our new USB Operations program...
<<lessParted Magic is based on my work from the GParted LiveCD project and falls under the terms of the GPL.
Enhancements:
- We added dd_rhelp, sdparm, mbr, and xfburn for starters. Updated programs: linux-2.6.22, e2fsprogs-1.40.2, ntfs-3g-1.710, dd_rescue-1.13, ddrescue-1.5, leafpad-0.8.11, file-4.21, testdisk-6.7, mdadm-2.6.1, pciutils-2.2.5, syslinux-3.51, isomaster-1.0, hdparm-7.4, xfsprogs_2.8.21-1, busybox-1.5.1, and usbutils-0.72. All menus are bypassed now. After the syslinux menu, it boots to the desktop without any other interruptions. You can now create the LiveUSB from the LiveCD by using our new USB Operations program...
Download (35.6MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
536 downloads
Magic Cube 4D 3.2.3
Magic Cube 4D is a four-dimensional Rubiks Cube. more>>
Magic Cube 4D project is a four-dimensional Rubiks Cube.
MagicCube4D is a fully functional four-dimensional analog of Rubiks cube. The image above shows the puzzle in its solved state. Click on it for a simple resizable applet version that you can interact with to get a feeling for how it works. Download the full-featured application below and try to solve it. Please read the FAQ for a more complete description of the puzzle. If the Java applet or application fail to start you may need to install a Java virtual machine. Click here for a current one.
Don Hatch and Melinda Green have developed it on and off over several years. Jay Berkenbilt has recently joined us to help with Linux support and source control. Don and Jay were the first to have solved the puzzle making extensive use of the move macro facility in the UNIX version. Roice Nelson became the first person to solve the puzzle without using macros. For his solution, he extended Philip Marshalls 3D "Ultimate Solution to Rubiks Cube".
You can learn Roices solution if you dont feel like trying to solve it yourself first. Using his techniques, Roice and others have continued to find ever shorter solutions so that the record currently recovered by Roice required only 334 twists! You can find documentation of these and other milestones on the MagicCube4D Hall Of Fame page. If you solve it with or without reading the solution, send us your log file and well list you in the MagicCube4D hall of fame too!
The mathematically inclined may be interested to know that the number of possible states for the 4D cube is exactly
(24!x32!)/2 x 16!/2 x 2^23 x (3!)^31 x 3 x(4!/2)^15 x 4
which can also be expressed as
32! 24! 16! 2^22 6^32 12^15
<<lessMagicCube4D is a fully functional four-dimensional analog of Rubiks cube. The image above shows the puzzle in its solved state. Click on it for a simple resizable applet version that you can interact with to get a feeling for how it works. Download the full-featured application below and try to solve it. Please read the FAQ for a more complete description of the puzzle. If the Java applet or application fail to start you may need to install a Java virtual machine. Click here for a current one.
Don Hatch and Melinda Green have developed it on and off over several years. Jay Berkenbilt has recently joined us to help with Linux support and source control. Don and Jay were the first to have solved the puzzle making extensive use of the move macro facility in the UNIX version. Roice Nelson became the first person to solve the puzzle without using macros. For his solution, he extended Philip Marshalls 3D "Ultimate Solution to Rubiks Cube".
You can learn Roices solution if you dont feel like trying to solve it yourself first. Using his techniques, Roice and others have continued to find ever shorter solutions so that the record currently recovered by Roice required only 334 twists! You can find documentation of these and other milestones on the MagicCube4D Hall Of Fame page. If you solve it with or without reading the solution, send us your log file and well list you in the MagicCube4D hall of fame too!
The mathematically inclined may be interested to know that the number of possible states for the 4D cube is exactly
(24!x32!)/2 x 16!/2 x 2^23 x (3!)^31 x 3 x(4!/2)^15 x 4
which can also be expressed as
32! 24! 16! 2^22 6^32 12^15
Download (0.31MB)
Added: 2006-12-22 License: GPL (GNU General Public License) Price:
1073 downloads
Template::Magic 1.39
Template::Magic is a Perl module for magic merger of runtime values with templates. more>>
Template::Magic is a Perl module for magic merger of runtime values with templates.
SYNOPSIS
Just add these 2 magic lines to your code...
use Template::Magic;
Template::Magic->new->print( /path/to/template );
to have all your variable and subroutines merged with the template file, or set one or more constructor array to customize the output generation as you need:
use Template::Magic qw( -compile );
$tm = new Template::Magic
paths => [ qw(/any/path /any/other/path) ] ,
markers => [ qw( < / > ) ] ,
lookups => [ %my_hash, $my_obj, main ] ,
zone_handlers => [ &my_zone_handler, _EVAL_ ] ,
value_handlers => [ DEFAULT, &my_value_handler ] ,
text_handlers => sub {print lc $_[1]} ,
output_handlers => sub {print uc $_[1]} ,
post_handlers => &my_post_handler ,
options => no_cache ;
$tm->nprint( template => /path/to/template
lookups => %my_special_hash );
<<lessSYNOPSIS
Just add these 2 magic lines to your code...
use Template::Magic;
Template::Magic->new->print( /path/to/template );
to have all your variable and subroutines merged with the template file, or set one or more constructor array to customize the output generation as you need:
use Template::Magic qw( -compile );
$tm = new Template::Magic
paths => [ qw(/any/path /any/other/path) ] ,
markers => [ qw( < / > ) ] ,
lookups => [ %my_hash, $my_obj, main ] ,
zone_handlers => [ &my_zone_handler, _EVAL_ ] ,
value_handlers => [ DEFAULT, &my_value_handler ] ,
text_handlers => sub {print lc $_[1]} ,
output_handlers => sub {print uc $_[1]} ,
post_handlers => &my_post_handler ,
options => no_cache ;
$tm->nprint( template => /path/to/template
lookups => %my_special_hash );
Download (0.045MB)
Added: 2007-07-11 License: Perl Artistic License Price:
839 downloads
Magic Password Generator 1.4
Magic Password Generator is an extension which magically makes custom passwords for each website. more>>
Magic Password Generator is an extension which magically makes custom passwords for each website.
Right click the toolbar, and click customize, to get the button to activate the extension!
<<lessRight click the toolbar, and click customize, to get the button to activate the extension!
Download (0.026MB)
Added: 2007-07-19 License: MPL (Mozilla Public License) Price:
853 downloads
Magic Settings Wizard 0.1
Magic Settings Wizard is designed to quickly and easily restore or backup your favorite applications settings. more>>
Magic Settings Wizard is designed to quickly and easily restore or backup your favorite applications settings.
Magic Settings Wizard can backup/restore through an FTP location used as a storage medium.
Main features:
- backup or restore applications settings : select which ones from a list.
- personal home dir is automatically detected by default, but another directory can be specified.
- communicates with a FTP server specified by the user.
- FTP settings may be saved in a config file.
- a FTP directory may be created from the interface if needed.
- add your own applications settings definitions if yours dont exist in the database (edit settings_definitions.py).
<<lessMagic Settings Wizard can backup/restore through an FTP location used as a storage medium.
Main features:
- backup or restore applications settings : select which ones from a list.
- personal home dir is automatically detected by default, but another directory can be specified.
- communicates with a FTP server specified by the user.
- FTP settings may be saved in a config file.
- a FTP directory may be created from the interface if needed.
- add your own applications settings definitions if yours dont exist in the database (edit settings_definitions.py).
Download (0.015MB)
Added: 2006-01-24 License: GPL (GNU General Public License) Price:
1374 downloads
Template::Magic::HTML 1.39
Template::Magic::HTML Perl module contains HTML handlers for Template::Magic used in a HTML environment. more>>
Template::Magic::HTML Perl module contains HTML handlers for Template::Magic used in a HTML environment.
SYNOPSIS
$tm = new Template::Magic::HTML ;
# that means
$tm = new Template::Magic
markers => HTML ,
value_handlers => HTML ;
# that explicitly means
$tm = new Template::Magic
markers => [ qw( ) ],
value_handlers => [ qw( SCALAR
REF
CODE
TableTiler
ARRAY
HASH
FillInForm ) ] ;
Template::Magic::HTML is a collection of handlers for Template::Magic useful when used in a HTML environment. It adds a couple of magic HTML specific value handlers to Template::Magic default value handlers. Just create and use the object as usual, to have a trasparent interface to HTML::TableTiler and HTML::FillInForm too.
<<lessSYNOPSIS
$tm = new Template::Magic::HTML ;
# that means
$tm = new Template::Magic
markers => HTML ,
value_handlers => HTML ;
# that explicitly means
$tm = new Template::Magic
markers => [ qw( ) ],
value_handlers => [ qw( SCALAR
REF
CODE
TableTiler
ARRAY
HASH
FillInForm ) ] ;
Template::Magic::HTML is a collection of handlers for Template::Magic useful when used in a HTML environment. It adds a couple of magic HTML specific value handlers to Template::Magic default value handlers. Just create and use the object as usual, to have a trasparent interface to HTML::TableTiler and HTML::FillInForm too.
Download (0.045MB)
Added: 2007-07-04 License: Perl Artistic License Price:
844 downloads
Crystal Monitor 6.3.2
CrystalMonitor is SuperKaramba theme. more>>
CrystalMonitor is SuperKaramba theme with:
* Guess distro
In .py file is link to files, where are basic infos about your distro. .py file finds sitably file and only writes out data to CrystalMonitor.
* Kernel monitor
Display your kernel version
* Cpu monitor
Display your procesor name, cpu cache and usage
* Ram, swap monitor
Display how many MB memory has your computer and how many MB of its is in usage
* Hdd monitor
Display Home and Root particions
* TimeMonitor
Day, Date and time monitor
* Procesor temperature and MHz monitor (ACPI)
Its working only if the ACPI and the frequency scaling are enable.
* Network (downstream/upstream) monitor (5.0 and newer)
* 12 themes (4.0 and older)
<<less* Guess distro
In .py file is link to files, where are basic infos about your distro. .py file finds sitably file and only writes out data to CrystalMonitor.
* Kernel monitor
Display your kernel version
* Cpu monitor
Display your procesor name, cpu cache and usage
* Ram, swap monitor
Display how many MB memory has your computer and how many MB of its is in usage
* Hdd monitor
Display Home and Root particions
* TimeMonitor
Day, Date and time monitor
* Procesor temperature and MHz monitor (ACPI)
Its working only if the ACPI and the frequency scaling are enable.
* Network (downstream/upstream) monitor (5.0 and newer)
* 12 themes (4.0 and older)
Download (0.097MB)
Added: 2007-04-12 License: GPL (GNU General Public License) Price:
935 downloads
cryptoswap 0.0.3
The cryptoswap package supports building an encrypted swap partition when a system boots. more>>
The cryptoswap package supports building an encrypted swap partition when a system boots. This must be necessary on systems that use encrypted filesystems because plaintext secrets may be written to disk when memory is swapped to disk.
Cryptoswap.sh should be installed in /etc/init.d. During system boot, cryptoswap.sh should execute right before checkroot.sh. When shutting down, cryptoswap should execute after sysklogd.
This package also includes an initialization script for building loopback encrypted /tmp. This may be necessary if a system contains encrypted filesystems but / is not encrypted. A link from directories like /var/tmp to /tmp may be appropriate. There are a few other alternatives for systems such as these:
1. Tmpfs is a Linux kernel feature that allows /tmp to exist in memory. This is a good solution for systems with a lot of memory and/or (encrypted) swap.
2. If you have a system that uses encrypted home directories, per-user temporary directories inside $HOME could be used. This would ensure that users data is protected but would require that all applications use $HOME/tmp instead of /tmp.
Finally, the project may be used to create an encrypted root filesystem. Doing so requires two special partitions. First, create a small partition to hold your kernel and initrd image, /dev/hdaX. Second create a large partition to contain the root of your filesystem, /dev/hdaY.
Next configure and install an initrd-based boot system:
1. Ensure romfs is compiled in your kernel (not a module).
2. Create a kernel-supported filesystem on /dev/hdaX and copy your kernel to /vmlinux.
3. Download busybox and extract it as initrd/busybox.
4. Update initrd/src/etc/modules.initrd to include any modules needed to boot.
5. Build cryptoswaps initrd image (cd initrd && make initrd) and copy it to the filesystem on /dev/hdaX at /initrd.img.gz.
6. Make sure you use literal = "root=/dev/ram0 init=/linuxrc rw" or LILO equivalent.
Finally, create a proper encrypted filesystem on /dev/hdaY:
1. Randomize the partition: dd if=/dev/urandom of=/dev/hdaY.
2. Set up a loopback device: openssl enc -d -aes-256-ecb -in initrd/src/etc/efsk | losetup -p0 -e aes /dev/loop0 /dev/hdaY.
3. Create the root filesystem: mkfs.ext2 /dev/loop0.
4. Mount your new root filesystem: mount /dev/loop0 .
5. Populate your new root filesystem.
Enhancements:
- Added initrd build environment.
- Documentation update.
<<lessCryptoswap.sh should be installed in /etc/init.d. During system boot, cryptoswap.sh should execute right before checkroot.sh. When shutting down, cryptoswap should execute after sysklogd.
This package also includes an initialization script for building loopback encrypted /tmp. This may be necessary if a system contains encrypted filesystems but / is not encrypted. A link from directories like /var/tmp to /tmp may be appropriate. There are a few other alternatives for systems such as these:
1. Tmpfs is a Linux kernel feature that allows /tmp to exist in memory. This is a good solution for systems with a lot of memory and/or (encrypted) swap.
2. If you have a system that uses encrypted home directories, per-user temporary directories inside $HOME could be used. This would ensure that users data is protected but would require that all applications use $HOME/tmp instead of /tmp.
Finally, the project may be used to create an encrypted root filesystem. Doing so requires two special partitions. First, create a small partition to hold your kernel and initrd image, /dev/hdaX. Second create a large partition to contain the root of your filesystem, /dev/hdaY.
Next configure and install an initrd-based boot system:
1. Ensure romfs is compiled in your kernel (not a module).
2. Create a kernel-supported filesystem on /dev/hdaX and copy your kernel to /vmlinux.
3. Download busybox and extract it as initrd/busybox.
4. Update initrd/src/etc/modules.initrd to include any modules needed to boot.
5. Build cryptoswaps initrd image (cd initrd && make initrd) and copy it to the filesystem on /dev/hdaX at /initrd.img.gz.
6. Make sure you use literal = "root=/dev/ram0 init=/linuxrc rw" or LILO equivalent.
Finally, create a proper encrypted filesystem on /dev/hdaY:
1. Randomize the partition: dd if=/dev/urandom of=/dev/hdaY.
2. Set up a loopback device: openssl enc -d -aes-256-ecb -in initrd/src/etc/efsk | losetup -p0 -e aes /dev/loop0 /dev/hdaY.
3. Create the root filesystem: mkfs.ext2 /dev/loop0.
4. Mount your new root filesystem: mount /dev/loop0 .
5. Populate your new root filesystem.
Enhancements:
- Added initrd build environment.
- Documentation update.
Download (0.20MB)
Added: 2006-07-10 License: GPL (GNU General Public License) Price:
1203 downloads
Math::MagicSquare 2.04
Math::MagicSquare is a Magic Square Checker and Designer. more>>
Math::MagicSquare is a Magic Square Checker and Designer.
SYNOPSIS
use Math::MagicSquare;
$a= Math::MagicSquare -> new ([num,...,num],
...,
[num,...,num]);
$a->print("string");
$a->printhtml();
$a->printimage();
$a->check();
$a->rotation();
$a->reflection();
The following methods are available:
new
Constructor arguments are a list of references to arrays of the same length.
$a = Math::MagicSquare -> new ([num,...,num],
...,
[num,...,num]);
check
This function can return 4 value
0: the Square is not Magic
1: the Square is a Semimagic Square (the sum of the rows and the columns is equal)
2: the Square is a Magic Square (the sum of the rows, the columns and the diagonals is equal)
3: the Square ia Panmagic Square (the sum of the rows, the columns, the diagonals and the broken diagonals is equal)
print
Prints the Square on STDOUT. If the method has additional parameters, these are printed before the Magic Square is printed.
printhtml
Prints the Square on STDOUT in an HTML format (exactly a inside a TABLE)
printimage
Prints the Square on STDOUT in png format.
rotation
Rotates the Magic Square of 90 degree clockwise
reflection
Reflect the Magic Square
<<lessSYNOPSIS
use Math::MagicSquare;
$a= Math::MagicSquare -> new ([num,...,num],
...,
[num,...,num]);
$a->print("string");
$a->printhtml();
$a->printimage();
$a->check();
$a->rotation();
$a->reflection();
The following methods are available:
new
Constructor arguments are a list of references to arrays of the same length.
$a = Math::MagicSquare -> new ([num,...,num],
...,
[num,...,num]);
check
This function can return 4 value
0: the Square is not Magic
1: the Square is a Semimagic Square (the sum of the rows and the columns is equal)
2: the Square is a Magic Square (the sum of the rows, the columns and the diagonals is equal)
3: the Square ia Panmagic Square (the sum of the rows, the columns, the diagonals and the broken diagonals is equal)
Prints the Square on STDOUT. If the method has additional parameters, these are printed before the Magic Square is printed.
printhtml
Prints the Square on STDOUT in an HTML format (exactly a inside a TABLE)
printimage
Prints the Square on STDOUT in png format.
rotation
Rotates the Magic Square of 90 degree clockwise
reflection
Reflect the Magic Square
Download (0.007MB)
Added: 2007-07-02 License: Perl Artistic License Price:
845 downloads
CGI::Application::Magic 1.21
CGI::Application::Magic is a template based framework for CGI applications. more>>
CGI::Application::Magic is a template based framework for CGI applications.
SYNOPSIS
package WebApp ;
use base CGI::Application::Magic ;
# optional runmethod
sub RM_myRunMmode
{
... do_something_useful ...
... no_need_to_set_page ...
... returned_value_will_be_ignored ...
}
# package where Template::Magic will looks up
package WebApp::Lookups ;
# this value will be substituted to each
# app_name label in each template that include it
our $app_name = WebApp 1.0 ;
# same for each Time label
sub Time { scalar localtime }
# and same for each ENV_table block
sub ENV_table
{
my ($self, # $self is your WebApp object
$zone) = @_ ; # $zone is the Template::Magic::Zone object
my @table ;
while (my @line = each %ENV)
{
push @table, @line
}
@table ;
}
<<lessSYNOPSIS
package WebApp ;
use base CGI::Application::Magic ;
# optional runmethod
sub RM_myRunMmode
{
... do_something_useful ...
... no_need_to_set_page ...
... returned_value_will_be_ignored ...
}
# package where Template::Magic will looks up
package WebApp::Lookups ;
# this value will be substituted to each
# app_name label in each template that include it
our $app_name = WebApp 1.0 ;
# same for each Time label
sub Time { scalar localtime }
# and same for each ENV_table block
sub ENV_table
{
my ($self, # $self is your WebApp object
$zone) = @_ ; # $zone is the Template::Magic::Zone object
my @table ;
while (my @line = each %ENV)
{
push @table, @line
}
@table ;
}
Download (0.034MB)
Added: 2007-08-01 License: Perl Artistic License Price:
818 downloads
Bundle::Template::Magic 1.39
Bundle::Template::Magic is a bundle to install MagicTemplate distribution plus all related extensions and prerequisites. more>>
Bundle::Template::Magic is a bundle to install MagicTemplate distribution plus all related extensions and prerequisites.
SYNOPSIS
perl -MCPAN -e install Bundle::Template::Magic
CONTENTS
HTML::Tagset - used by HTML::Parser
HTML::Parser - used by HTML::FillInForm and HTML::TableTiler
HTML::TableTiler - used by HTML::MagicTemplate
HTML::FillInForm - used by HTML::MagicTemplate
Class::constr - used by Template::Magic::Zone
Class::props - used by Template::Magic::Zone
Object::props - used by Template::Magic::Zone
File::Spec - used by Template::Magic
IO::Util - used by Template::Magic
Template::Magic - the main distribution
This bundle gathers together Template::Magic and all the related extensions and prerequisites.
Note: A Bundle is a module that simply defines a collection of other modules. It is used by the CPAN module to automate the fetching, building and installing of modules from the CPAN ftp archive sites.
<<lessSYNOPSIS
perl -MCPAN -e install Bundle::Template::Magic
CONTENTS
HTML::Tagset - used by HTML::Parser
HTML::Parser - used by HTML::FillInForm and HTML::TableTiler
HTML::TableTiler - used by HTML::MagicTemplate
HTML::FillInForm - used by HTML::MagicTemplate
Class::constr - used by Template::Magic::Zone
Class::props - used by Template::Magic::Zone
Object::props - used by Template::Magic::Zone
File::Spec - used by Template::Magic
IO::Util - used by Template::Magic
Template::Magic - the main distribution
This bundle gathers together Template::Magic and all the related extensions and prerequisites.
Note: A Bundle is a module that simply defines a collection of other modules. It is used by the CPAN module to automate the fetching, building and installing of modules from the CPAN ftp archive sites.
Download (0.045MB)
Added: 2006-10-17 License: Perl Artistic License Price:
1102 downloads
swapd 1.0.1
swapd is a dynamic swap creation deamon. more>>
swapd is a dynamic swap creation deamon, it monitors the system memory and detect when swap creation will be required. the swap size is determined automatically with respect of sysadmin limits.
Installation:
- Make sure you are logged in as root.
- Run make install.
- Take a look at /usr/local/etc/swapd.conf and change what is necessary.
- Create the swap directory you chose in swapd.conf (it should be accessible only by root).
- Add the following line to /etc/rc.d/rc.local:
/usr/local/sbin/swapd
- If you recompiled the kernel, now would be the time to reboot. If you havent, just rehash and run swapd as root.
<<lessInstallation:
- Make sure you are logged in as root.
- Run make install.
- Take a look at /usr/local/etc/swapd.conf and change what is necessary.
- Create the swap directory you chose in swapd.conf (it should be accessible only by root).
- Add the following line to /etc/rc.d/rc.local:
/usr/local/sbin/swapd
- If you recompiled the kernel, now would be the time to reboot. If you havent, just rehash and run swapd as root.
Download (0.040MB)
Added: 2005-10-12 License: GPL (GNU General Public License) Price:
1472 downloads
Magic Mounter 0.9
Magic Mounter is a user-space auto-mounter. more>>
Magic Mounter is a user-space auto-mounter.
mmounter tries to mimic the behaviour of MacOS with regards to automatic monitoring and mounting of the volumes in your system (CDs, ZIP disks, floppies, HDs) using their volume name as the mount point.
It will optionally eject devices and let users mount/umount them.
Currently mmounter supports ext2, ext3, iso9660 (CD), HFS, and VFAT.
This tool is user-space only (doesnt require any kernel patching) and should be fairly portable.
<<lessmmounter tries to mimic the behaviour of MacOS with regards to automatic monitoring and mounting of the volumes in your system (CDs, ZIP disks, floppies, HDs) using their volume name as the mount point.
It will optionally eject devices and let users mount/umount them.
Currently mmounter supports ext2, ext3, iso9660 (CD), HFS, and VFAT.
This tool is user-space only (doesnt require any kernel patching) and should be fairly portable.
Download (0.023MB)
Added: 2006-09-28 License: GPL (GNU General Public License) Price:
1125 downloads
File::MMagic 1.27
File::MMagic is a Perl module to guess file type. more>>
File::MMagic is a Perl module to guess file type.
SYNOPSIS
use File::MMagic;
use FileHandle;
$mm = new File::MMagic; # use internal magic file
# $mm = File::MMagic->new(/etc/magic); # use external magic file
# $mm = File::MMagic->new(/usr/share/etc/magic); # if you use Debian
$res = $mm->checktype_filename("/somewhere/unknown/file");
$fh = new FileHandle "< /somewhere/unknown/file2";
$res = $mm->checktype_filehandle($fh);
$fh->read($data, 0x8564);
$res = $mm->checktype_contents($data);
<<lessSYNOPSIS
use File::MMagic;
use FileHandle;
$mm = new File::MMagic; # use internal magic file
# $mm = File::MMagic->new(/etc/magic); # use external magic file
# $mm = File::MMagic->new(/usr/share/etc/magic); # if you use Debian
$res = $mm->checktype_filename("/somewhere/unknown/file");
$fh = new FileHandle "< /somewhere/unknown/file2";
$res = $mm->checktype_filehandle($fh);
$fh->read($data, 0x8564);
$res = $mm->checktype_contents($data);
Download (0.021MB)
Added: 2007-01-11 License: Perl Artistic License Price:
1017 downloads
Magic Mirror Backup 1.0 beta2
Magic Mirror Backup works by copying the files and folders on your computer to other computers within your office. more>>
Magic Mirror Backup works by copying the files and folders on your computer to other computers within your office. In exchange, these other computers also copy their own files onto your computer.
This sharing of backups has quite a few advantages not the least of which are that it is extremely convenient and cost effective. (This symbiotic mechanism for backing up data is often called peer to peer backup or p2p backup.)
There is also an optional off-site component so that you can additionally backup to a remote server to protect against office-wide failures like fire, theft, or hurricanes.
Main features:
- It works with your existing hardware requiring no new hardware investment and providing greater value for your existing investment.
- It will work in conjunction with your existing backup strategy. If you make regular backups to external media, thats great. Use Magic Mirror Backup to add daily backup protection to your critical or frequently changing data.
- It is automatic - you do not need to worry about swapping tapes, Zip Disks, or CD-Rs.
Magic Mirror Backup works by copying the files and folders on your computer to other computers within your office. In exchange, these other computers also copy their own files onto your computer.
This sharing of backups has quite a few advantages not the least of which are that it is extremely convenient and cost effective. (This symbiotic mechanism for backing up data is often called peer to peer backup or p2p backup.)
Here are some of the commonly requested details on how Magic Mirror Backup works:
- Backups are password protected so that, when a password is specified, others in your office will not be able to read your files (without breaking into your account, which would require a great deal of technical expertise and hacking).
- Backups are only sent to computers you select - your backups will not be sent to computers that you have not authorized.
- You select the files and folders for backup. If you want to limit the size of the backups stored on the computers in your office, you can choose to only backup your "My Documents" and email folders, for instance. If, on the other hand, all the computers have plenty of free space, you can expand the backup to cover less critical files as well.
<<lessThis sharing of backups has quite a few advantages not the least of which are that it is extremely convenient and cost effective. (This symbiotic mechanism for backing up data is often called peer to peer backup or p2p backup.)
There is also an optional off-site component so that you can additionally backup to a remote server to protect against office-wide failures like fire, theft, or hurricanes.
Main features:
- It works with your existing hardware requiring no new hardware investment and providing greater value for your existing investment.
- It will work in conjunction with your existing backup strategy. If you make regular backups to external media, thats great. Use Magic Mirror Backup to add daily backup protection to your critical or frequently changing data.
- It is automatic - you do not need to worry about swapping tapes, Zip Disks, or CD-Rs.
Magic Mirror Backup works by copying the files and folders on your computer to other computers within your office. In exchange, these other computers also copy their own files onto your computer.
This sharing of backups has quite a few advantages not the least of which are that it is extremely convenient and cost effective. (This symbiotic mechanism for backing up data is often called peer to peer backup or p2p backup.)
Here are some of the commonly requested details on how Magic Mirror Backup works:
- Backups are password protected so that, when a password is specified, others in your office will not be able to read your files (without breaking into your account, which would require a great deal of technical expertise and hacking).
- Backups are only sent to computers you select - your backups will not be sent to computers that you have not authorized.
- You select the files and folders for backup. If you want to limit the size of the backups stored on the computers in your office, you can choose to only backup your "My Documents" and email folders, for instance. If, on the other hand, all the computers have plenty of free space, you can expand the backup to cover less critical files as well.
Download (0.35MB)
Added: 2005-11-22 License: Other/Proprietary License Price:
1431 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 swap magic 3.3 xenosaga 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