insert
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 560
INSERT 1.3.9b
INSERT aims to be a multi-functional, multi-purpose disaster recovery and network analysis system. more>>
INSERT (the Inside Security Rescue Toolkit) aims to be a multi-functional, multi-purpose disaster recovery and network analysis system. It boots from a credit card-sized CD-ROM and is basically a stripped-down version of Knoppix. It features good hardware detection, fluxbox, emelfm, links-hacked, ssh, tcpdump, nmap, chntpwd, and much more.
INSERT provides full read-write support for NTFS partitions (using captive), and the ClamAV virus scanner (including a fairly recent signature database and a GUI). It also has a network boot facility.
Main features:
- full read-write support for NTFS-partitions using captive
- support for various file system types: EXT2,EXT3,MINIX,REISERFS,JFS,XFS,NTFS,FAT,MSDOS,NFS,SMBFS,NCPFS,UDF,UFS,HFS,HFS+
- support for linux software RAID and LVM
- support for WLAN adapters
- network analysis (e.g. nmap, tcpdump)
- disaster recovery (e.g. parted, gpart, partimage, testdisk, recover)
- virus scanning (Clam Antivirus)
- computer forensics (e.g. chkrootkit, rootkit hunter)
- surf the internet (e.g. links-hacked, AxY FTP)
- network boot server to boot network boot enabled clients that cannot boot from the CD
- based on Linux kernel 2.4.27 and Knoppix 3.6
<<lessINSERT provides full read-write support for NTFS partitions (using captive), and the ClamAV virus scanner (including a fairly recent signature database and a GUI). It also has a network boot facility.
Main features:
- full read-write support for NTFS-partitions using captive
- support for various file system types: EXT2,EXT3,MINIX,REISERFS,JFS,XFS,NTFS,FAT,MSDOS,NFS,SMBFS,NCPFS,UDF,UFS,HFS,HFS+
- support for linux software RAID and LVM
- support for WLAN adapters
- network analysis (e.g. nmap, tcpdump)
- disaster recovery (e.g. parted, gpart, partimage, testdisk, recover)
- virus scanning (Clam Antivirus)
- computer forensics (e.g. chkrootkit, rootkit hunter)
- surf the internet (e.g. links-hacked, AxY FTP)
- network boot server to boot network boot enabled clients that cannot boot from the CD
- based on Linux kernel 2.4.27 and Knoppix 3.6
Download (59.3MB)
Added: 2007-02-28 License: GPL (GNU General Public License) Price:
975 downloads
Tree::Binary::Search 0.07
Tree::Binary::Search is a binary search tree for Perl. more>>
Tree::Binary::Search is a binary search tree for Perl.
SYNOPSIS
use Tree::Binary::Search;
my $btree = Tree::Binary::Search->new();
$btree->useNumericComparison();
$btree->insert(5 => "Five");
$btree->insert(2 => "Two");
$btree->insert(1 => "One");
$btree->insert(3 => "Three");
$btree->insert(4 => "Four");
$btree->insert(9 => "Nine");
$btree->insert(8 => "Eight");
$btree->insert(6 => "Six");
$btree->insert(7 => "Seven");
# this creates the following tree:
#
# +-------(5)----------+
# | |
# +-(2)-+ +-(9)
# | | |
# (1) (3)-+ +----(8)
# | |
# (4) (6)-+
# |
# (7)
#
$btree->exists(7); # return true
$btree->update(7 => "Seven (updated)");
$btree->select(9); # return Nine
$btree->min_key(); # returns 1
$btree->min(); # returns One
$btree->max_key(); # return 9
$btree->max(); # return Nine
$btree->delete(5);
# this results in the following tree:
#
# +-------(6)-------+
# | |
# +-(2)-+ +-(9)
# | | |
# (1) (3)-+ +-(8)
# | |
# (4) (7)
#
This module implements a binary search tree, which is a specialized usage of a binary tree. The basic principle is that all elements to the left are less than the root, all elements to the right are greater than the root. This reduces the search time for elements in the tree, by halving the number of nodes that need to be searched each time a node is examined.
Binary search trees are a very well understood data-structure and there is a wealth of information on the web about them.
Trees are a naturally recursive data-structure, and therefore, tend to lend themselves well to recursive traversal functions. I however, have chosen to implement the tree traversal in this module without using recursive subroutines. This is partially a performance descision, even though perl can handle theoreticaly unlimited recursion, subroutine calls to have some overhead. My algorithm is still recursive, I have just chosen to keep it within a single subroutine.
<<lessSYNOPSIS
use Tree::Binary::Search;
my $btree = Tree::Binary::Search->new();
$btree->useNumericComparison();
$btree->insert(5 => "Five");
$btree->insert(2 => "Two");
$btree->insert(1 => "One");
$btree->insert(3 => "Three");
$btree->insert(4 => "Four");
$btree->insert(9 => "Nine");
$btree->insert(8 => "Eight");
$btree->insert(6 => "Six");
$btree->insert(7 => "Seven");
# this creates the following tree:
#
# +-------(5)----------+
# | |
# +-(2)-+ +-(9)
# | | |
# (1) (3)-+ +----(8)
# | |
# (4) (6)-+
# |
# (7)
#
$btree->exists(7); # return true
$btree->update(7 => "Seven (updated)");
$btree->select(9); # return Nine
$btree->min_key(); # returns 1
$btree->min(); # returns One
$btree->max_key(); # return 9
$btree->max(); # return Nine
$btree->delete(5);
# this results in the following tree:
#
# +-------(6)-------+
# | |
# +-(2)-+ +-(9)
# | | |
# (1) (3)-+ +-(8)
# | |
# (4) (7)
#
This module implements a binary search tree, which is a specialized usage of a binary tree. The basic principle is that all elements to the left are less than the root, all elements to the right are greater than the root. This reduces the search time for elements in the tree, by halving the number of nodes that need to be searched each time a node is examined.
Binary search trees are a very well understood data-structure and there is a wealth of information on the web about them.
Trees are a naturally recursive data-structure, and therefore, tend to lend themselves well to recursive traversal functions. I however, have chosen to implement the tree traversal in this module without using recursive subroutines. This is partially a performance descision, even though perl can handle theoreticaly unlimited recursion, subroutine calls to have some overhead. My algorithm is still recursive, I have just chosen to keep it within a single subroutine.
Download (0.027MB)
Added: 2007-07-21 License: Perl Artistic License Price:
825 downloads
OriginalSynth 2.0.2
OriginalSynth allows users to manipulate a small portion of a sound wave (one 44th approximately or 1000/44100 of a second). more>>
OriginalSynth project allows users to manipulate a small portion of a sound wave (one 44th approximately or 1000/44100 of a second).
This is commonly referred to as a "wave table". Users can manipulate the wave table itself by drawing a line with two end points, drawing a point, drawing a curve, moving a point, or deleting a point. What the user makes is then repeated (oscillated) and sounds pitched.
Additonal features include the ability to combine multiple wave tabs (add/multiply), insert typical waves (sine, square, etc.), make pitch variations, and make duration variations.
<<lessThis is commonly referred to as a "wave table". Users can manipulate the wave table itself by drawing a line with two end points, drawing a point, drawing a curve, moving a point, or deleting a point. What the user makes is then repeated (oscillated) and sounds pitched.
Additonal features include the ability to combine multiple wave tabs (add/multiply), insert typical waves (sine, square, etc.), make pitch variations, and make duration variations.
Download (0.13MB)
Added: 2006-09-08 License: GPL (GNU General Public License) Price:
1141 downloads
Joblist 0.3.1
Joblist is a script for managing jobs. more>>
Joblist is a MySQL based PHP Webapplication for managing jobs. Jobs are categorized by different priorities.
Everybody with access is able to insert and update team members and jobs. Every job has a deadline and can be marked as done.
Feel free to download and use it.
Enhancements:
- A "Show User" field description was added.
- The font size was reduced.
<<lessEverybody with access is able to insert and update team members and jobs. Every job has a deadline and can be marked as done.
Feel free to download and use it.
Enhancements:
- A "Show User" field description was added.
- The font size was reduced.
Download (0.026MB)
Added: 2006-02-25 License: GPL (GNU General Public License) Price:
1337 downloads
muchine 0.14a
muchine project is a small virtual machine that comes with its own assembler. more>>
muchine project is a small virtual machine that comes with its own assembler.
It features stackdump, memdump, and variable execution speed. Its actually a kind of programming exercise, and has a clean coding style.
Thus, it may be used for educational purposes.
Enhancements:
- GPL License notes inserted into source.
- Insert the vim:ts=3:sw=3 statements into all source files.
- Make it ready for uploading to sourveforge.net.
<<lessIt features stackdump, memdump, and variable execution speed. Its actually a kind of programming exercise, and has a clean coding style.
Thus, it may be used for educational purposes.
Enhancements:
- GPL License notes inserted into source.
- Insert the vim:ts=3:sw=3 statements into all source files.
- Make it ready for uploading to sourveforge.net.
Download (0.023MB)
Added: 2006-11-01 License: GPL (GNU General Public License) Price:
1089 downloads
Ksubeditor 0.2
KDE DivX subtitles editor is a good solution for people who create and edit subtitles for DivX movies. more>>
KDE DivX subtitles editor is a good solution for people who create and edit subtitles for DivX movies.
It is able to edit,convert subtitles between different formats, and test subtitles using some linux DivX player (at present Mplayer).
Enhancements:
- After "Save As" correct name on the bar is displayed
- Some compilation problems fixed
- Fixed number of columns in new file after spliting a file
- Fixed problem with editing file created by spliting another one
- Some "segmentation fault" fixes
- Changed "Insert row under" into "Insert row above"
<<lessIt is able to edit,convert subtitles between different formats, and test subtitles using some linux DivX player (at present Mplayer).
Enhancements:
- After "Save As" correct name on the bar is displayed
- Some compilation problems fixed
- Fixed number of columns in new file after spliting a file
- Fixed problem with editing file created by spliting another one
- Some "segmentation fault" fixes
- Changed "Insert row under" into "Insert row above"
Download (0.55MB)
Added: 2005-08-17 License: GPL (GNU General Public License) Price:
1532 downloads
phpSearch 0.0.2
phpSearch provides a single-table search engine with a customizable query form. more>>
phpSearch provides a single-table search engine with a customizable query form.
phpSearch is a PHP3 application that allows you to easily insert a search engine into your Web site. The search engine that phpSearch provides is based on a MySQL database.
phpSearch supports single-table searches.
It will generate a search-form dynamically, and will return the resulting list of matching records with selected fields.
<<lessphpSearch is a PHP3 application that allows you to easily insert a search engine into your Web site. The search engine that phpSearch provides is based on a MySQL database.
phpSearch supports single-table searches.
It will generate a search-form dynamically, and will return the resulting list of matching records with selected fields.
Download (0.017MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
953 downloads
SingIt Lyric Displayer 0.1.36
The SingIt Lyric Displayer is an XMMS plugin which displays formatted lyrics, including id3v2xx lyrics. more>>
The SingIt Lyric Displayer is an XMMS plugin which displays formatted lyrics, including id3v2xx lyrics.
SingIt Lyric Displayer consists of the displayer and an integrated editor which allows one to easily insert time stamps, edit the text, and export & strip HTML.
Enhancements:
- The focus of this release is the revamped query interface (GUI and backend).
- It is finally based on plugins, and this release includes three usable plugins: Lyrc (lyrc.com.ar), Leos Lyrics (www.leoslyrics.com), and Lyrix v2 DB (lyrixdb.org).
- Nothing else of note was done.
<<lessSingIt Lyric Displayer consists of the displayer and an integrated editor which allows one to easily insert time stamps, edit the text, and export & strip HTML.
Enhancements:
- The focus of this release is the revamped query interface (GUI and backend).
- It is finally based on plugins, and this release includes three usable plugins: Lyrc (lyrc.com.ar), Leos Lyrics (www.leoslyrics.com), and Lyrix v2 DB (lyrixdb.org).
- Nothing else of note was done.
Download (1.3MB)
Added: 2005-12-14 License: GPL (GNU General Public License) Price:
1411 downloads
KDiskRescue 0.1
KDiskRescue project is a KDE frontent to the gnu program ddrescue. more>>
KDiskRescue project is a KDE frontent to the gnu program ddrescue.
Its written with korundum, the qt/kde ruby bindings. So it depends to korundum and ddrescue.
Its still an alpha, so expect issues and report them if you can. Illustrations are alpha too.
A ebuild is provided for gentoo users but its the configure/make/make install thing inside the tarball.
EDIT : known issue : the first step shows a media list that do not auto update when you eject/insert a removable media. To refresh this list you must restart KDiskRescue ...
<<lessIts written with korundum, the qt/kde ruby bindings. So it depends to korundum and ddrescue.
Its still an alpha, so expect issues and report them if you can. Illustrations are alpha too.
A ebuild is provided for gentoo users but its the configure/make/make install thing inside the tarball.
EDIT : known issue : the first step shows a media list that do not auto update when you eject/insert a removable media. To refresh this list you must restart KDiskRescue ...
Download (MB)
Added: 2006-11-24 License: GPL (GNU General Public License) Price:
1065 downloads
migratedata 0.1
migratedata project allows you to write a simple XML file to define how to copy data from one database to another. more>>
migratedata project allows you to write a simple XML file to define how to copy data from one database to another, and perform very simple transformations on the way.
Currently, it is immediately able to help you migrate a PostNuke web site to a WordPress one, but to perform any other transformations you will need to create your own XML spec file (which is reasonably simple).
Migrating from PostNuke to WordPress
Download the migratedata tarball from the Download page, and unzip it somewhere.
Copy the file database_details_sample.xml and name it database_details.xml.
Edit the database_details.xml file to contain the hosts, usernames, passwords and database names of your databases.
If you have remote access to the MySQL databases for both your source and your target databases, the process is relatively simple. Open a terminal and cd into the directory containing migratedata.py, and run this command:
./migratedata.py database_details.xml postnuke0.75_to_wordpress2.2.xml
If you dont have remote access to the target database, run this command instead:
./migratedata.py --dump-insert database_details.xml postnuke0.75_to_wordpress2.2.xml > insert.sql
and execute the insert.sql script on the database server of your target database (probably through your hosting providers web interface).
If you cant run queries remotely against your source database either, do this:
./migratedata.py --dump-select database_details.xml postnuke0.75_to_wordpress2.2.xml > select.sql
This will create the file select.sql which you need to run on your source database (probably through your hosting providers web interface). The output of running this query will be some more SQL, which you will need to copy and run on your target database, again probably through your new hosting providers web interface.
Enhancements:
- PostNuke to WordPress migration support was implemented.
<<lessCurrently, it is immediately able to help you migrate a PostNuke web site to a WordPress one, but to perform any other transformations you will need to create your own XML spec file (which is reasonably simple).
Migrating from PostNuke to WordPress
Download the migratedata tarball from the Download page, and unzip it somewhere.
Copy the file database_details_sample.xml and name it database_details.xml.
Edit the database_details.xml file to contain the hosts, usernames, passwords and database names of your databases.
If you have remote access to the MySQL databases for both your source and your target databases, the process is relatively simple. Open a terminal and cd into the directory containing migratedata.py, and run this command:
./migratedata.py database_details.xml postnuke0.75_to_wordpress2.2.xml
If you dont have remote access to the target database, run this command instead:
./migratedata.py --dump-insert database_details.xml postnuke0.75_to_wordpress2.2.xml > insert.sql
and execute the insert.sql script on the database server of your target database (probably through your hosting providers web interface).
If you cant run queries remotely against your source database either, do this:
./migratedata.py --dump-select database_details.xml postnuke0.75_to_wordpress2.2.xml > select.sql
This will create the file select.sql which you need to run on your source database (probably through your hosting providers web interface). The output of running this query will be some more SQL, which you will need to copy and run on your target database, again probably through your new hosting providers web interface.
Enhancements:
- PostNuke to WordPress migration support was implemented.
Download (0.025MB)
Added: 2007-05-25 License: GPL (GNU General Public License) Price:
883 downloads
Set::Scalar 1.20
Set::Scalar Perl module contains a basic set of operations. more>>
Set::Scalar Perl module contains a basic set of operations.
SYNOPSIS
use Set::Scalar;
$s = Set::Scalar->new;
$s->insert(a, b);
$s->delete(b);
$t = Set::Scalar->new(x, y, $z);
Creating
$s = Set::Scalar->new;
$s = Set::Scalar->new(@members);
$t = $s->clone;
$t = $s->copy; # clone of clone
Modifying
$s->insert(@members);
$s->delete(@members);
$s->invert(@members); # insert if hasnt, delete if has
$s->clear; # removes all the elements
Note that clear() only releases the memory used by the set to be reused by Perl; it will not reduce the overall memory use.
<<lessSYNOPSIS
use Set::Scalar;
$s = Set::Scalar->new;
$s->insert(a, b);
$s->delete(b);
$t = Set::Scalar->new(x, y, $z);
Creating
$s = Set::Scalar->new;
$s = Set::Scalar->new(@members);
$t = $s->clone;
$t = $s->copy; # clone of clone
Modifying
$s->insert(@members);
$s->delete(@members);
$s->invert(@members); # insert if hasnt, delete if has
$s->clear; # removes all the elements
Note that clear() only releases the memory used by the set to be reused by Perl; it will not reduce the overall memory use.
Download (0.016MB)
Added: 2007-07-03 License: Perl Artistic License Price:
844 downloads
PHP Runner 1.0.0
PHP Runner project is a Web-based program for editing and previewing PHP files. more>>
PHP Runner project is a Web-based program for editing and previewing PHP files.
PHP Runner is a simple but useful program for easily previewing a PHP file without saving or uploading it to a server.
It has a friendly interface with useful tools such as buttons for the most frequently used PHP functions to make scripting easier and faster.
Main features:
- Runs PHP codes of your page without saving or uploading them on server.
- Helps to insert easily most used PHP functions. Very easy installation and using.
<<lessPHP Runner is a simple but useful program for easily previewing a PHP file without saving or uploading it to a server.
It has a friendly interface with useful tools such as buttons for the most frequently used PHP functions to make scripting easier and faster.
Main features:
- Runs PHP codes of your page without saving or uploading them on server.
- Helps to insert easily most used PHP functions. Very easy installation and using.
Download (0.043MB)
Added: 2006-11-03 License: GPL (GNU General Public License) Price:
1087 downloads
XiSQL 0.3
XiSQL is a XInclude and Oracle XSQL-like processor implemented as CGI program. more>>
XiSQL is a XInclude and Oracle XSQL-like processor implemented as CGI program. It makes it possible to insert data from a database into XHTML without the need to develop any scripts.
Enhancements:
- The error messages have been made more informative.
- Compatibility with old versions of GCC and GNU Make was improved.
- The requirements regarding the version of MySQL have been lowered.
- XiSQL now works with MySQL version 3.23 and later, but without support for multi-statements.
- Compatibility with various POSIX-compatible OSes was improved.
- Some bugs with encodings have been fixed.
- Major bugfixes were made.
<<lessEnhancements:
- The error messages have been made more informative.
- Compatibility with old versions of GCC and GNU Make was improved.
- The requirements regarding the version of MySQL have been lowered.
- XiSQL now works with MySQL version 3.23 and later, but without support for multi-statements.
- Compatibility with various POSIX-compatible OSes was improved.
- Some bugs with encodings have been fixed.
- Major bugfixes were made.
Download (0.017MB)
Added: 2005-08-19 License: GPL (GNU General Public License) Price:
1529 downloads
Gmail Skins 0.9.8
Gmail Skins provides skins and other extra features for Gmail. more>>
Gmail Skins provides skins and other extra features for Gmail.
Main features:
- Change the colour/skin of your inbox.
- Integrate your google homepage alongside your inbox. This allows you to view weather reports, rss feeds, news headlines, flickr recently added, google calendar module etc from your inbox.
- Easily insert images from your Picasa web album in to your emails
- Insert smileys/emoticons and images in to your emails.
- Insert HTML tables and other complex HTML in to your emails.
- Make the navigation (Inbox, Starred, Sent Mail, etc) horizontal.
- Fix the navigation in place so that you dont have to scroll to the top of the page to see it.
- Zebra stripes on mailbox - pretty!
- Change the attachment paperclip (on inbox) to an icon indicating the type of attachment.
- Hide various page elements (invite panel, page footer, your email address from the top right of inbox).
To access the settings panel you must change the language on your gmail account to EN-US - This is because of how tightly gmailskins integrates in to the Gmail interface. You can change your language back again afterwards and the settings will still be applied, although "your mileage may vary".
Some features will be added to your account, please do not mistake these for beta features rolled out by google like this guy: http://www.digg.com/links/Gmail_New_Features.
<<lessMain features:
- Change the colour/skin of your inbox.
- Integrate your google homepage alongside your inbox. This allows you to view weather reports, rss feeds, news headlines, flickr recently added, google calendar module etc from your inbox.
- Easily insert images from your Picasa web album in to your emails
- Insert smileys/emoticons and images in to your emails.
- Insert HTML tables and other complex HTML in to your emails.
- Make the navigation (Inbox, Starred, Sent Mail, etc) horizontal.
- Fix the navigation in place so that you dont have to scroll to the top of the page to see it.
- Zebra stripes on mailbox - pretty!
- Change the attachment paperclip (on inbox) to an icon indicating the type of attachment.
- Hide various page elements (invite panel, page footer, your email address from the top right of inbox).
To access the settings panel you must change the language on your gmail account to EN-US - This is because of how tightly gmailskins integrates in to the Gmail interface. You can change your language back again afterwards and the settings will still be applied, although "your mileage may vary".
Some features will be added to your account, please do not mistake these for beta features rolled out by google like this guy: http://www.digg.com/links/Gmail_New_Features.
Download (0.12MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
1056 downloads
XBlock-Reporter 1.2
XBlock-Reporter is a shell/PHP/MySQL frontend. more>>
Xblock reporter is a set of PHP and shell scripts to insert an exported report from an 8e6 Xstop R3000 appliance into a database, and then output that in a searchable web based format.
XBlock Reporter is a shell/PHP/MySQL front end to take the logs from an 8E6 Xstop appliance and store the data for searching/reporting.
<<lessXBlock Reporter is a shell/PHP/MySQL front end to take the logs from an 8E6 Xstop appliance and store the data for searching/reporting.
Download (4.6MB)
Added: 2006-07-10 License: GPL (GNU General Public License) Price:
1203 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 insert 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