Main > Free Download Search >

Free insert into software for linux

insert into

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 564
INSERT 1.3.9b

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
<<less
Download (59.3MB)
Added: 2007-02-28 License: GPL (GNU General Public License) Price:
975 downloads
Ksubeditor 0.2

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"
<<less
Download (0.55MB)
Added: 2005-08-17 License: GPL (GNU General Public License) Price:
1532 downloads
Generic JavaScript validator 1.0

Generic JavaScript validator 1.0


Generic JavaScript validator is a simple but powerful cross-browser JavaScript that combines DOM and regulars expressions. more>>
Generic JavaScript validator is a simple but powerful cross-browser JavaScript that combines DOM and regulars expressions for the client-side validation of forms.

It can validate any number of form on HTML documents. Generic JavaScript validator also supports user defined JavaScript functions.

Include .js file

Inside < head > section of the html with the form inside you insert these lines


< script language="JavaScript" type="text/javascript" src="validate.js" >< /script >
<<less
Download (0.012MB)
Added: 2006-09-14 License: GPL (GNU General Public License) Price:
663 downloads
GD::Image::Orientation 0.05

GD::Image::Orientation 0.05


GD::Image::Orientation is a Perl extension for managing a GD::Images vertical or horizontal orientation (shapewise). more>>
GD::Image::Orientation is a Perl extension for managing a GD::Images vertical or horizontal orientation (shapewise).

SYNOPSIS

use GD::Image::Orientation;

for(@images) {
my $img = GD::Image->new($_) or die $!;
$dbh->do("INSERT INTO photogallery.metainfo (Id,Orientation,File) VALUES (NULL,$img->isvertical,$dbh->quote($_))") or die $dbh->errstr;
}

Adds functionality to GD by adding class methods to determine orientation in boolean terms or in a string. Also included methods to set an images orientation;

isvertical()
$img->isvertical()

Returns true if an images height is greater than its width. Call it with a true argument:

$img->isvertical(1)

and it returns true if an images height is greater than its width or it is square.

ishorizontal()
$img->ishorizontal()

Returns true if an images width is greater than its height. Call it with a true argument:

$img->ishorizontal(1)

and it returns true if an images width is greater than its height or it is square.

issquare()

Returns true if an images width and height are the same.

orientation()

Returns a string describing its orientation in English. It returns horizontal, vertical, or square

print The image you uploaded is . $img->orientation . "
n";
vertical()

If the image is horizontal it is rotated 90 degrees clockwise to become vertical. Call it with a true argument and its rotated 90 degrees counter clockwise to become vertical.

It returns a new GD::Image object if modified or the original object if its already vertical or square.

my $vert_img = $img->vertical; # rotate $img clockwise 90 degrees if its horizontal
my $vert_img = $img->vertical(1); # rotate $img counter clockwise 90 degrees if its horizontal
$img = $img->vertical; # rotate $img clockwise 90 degrees if its horizontal, modifying the original object
If the second argument is true it will rotate it even if its sqare:
my $vert_img = $img->vertical(0,1); # rotate $img clockwise if its horizontal or square
my $vert_img = $img->vertical(1,1); # rotate $img counter clockwise if its horizontal or square

horizontal()

If the image is vertical it is rotated 90 degrees clockwise to become horizontal. Call it with a true argument and its rotated 90 degrees counter clockwise to become horizontal.

It returns a new GD::Image object if modified or the original object if its already horizontal or square.

my $hori_img = $img->horizontal; # rotate $img clockwise 90 degrees if its vertical
my $hori_img = $img->horizontal(1); # rotate $img counter clockwise 90 degrees if its vertical
$img = $img->horizontal; # rotate $img clockwise 90 degrees if its vertical, modifying the original object

If the second argument is true it will rotate it even if its square:

my $vert_img = $img->horizontal(0,1); # rotate $img clockwise if its vertical or square
my $vert_img = $img->horizontal(1,1); # rotate $img counter clockwise if its vertical or square

<<less
Download (0.003MB)
Added: 2007-04-24 License: Perl Artistic License Price:
913 downloads
Database Functions 1.0

Database Functions 1.0


Database Functions is a PHP class that can be used to build and execute MySQL database queries. more>>
Database Functions is a PHP class that can be used to build and execute MySQL database queries.

It can build SELECT, INSERT, UPDATE and DELETE queries from lists of parameters and values.

The class can also execute the generated queries and retrieve the SELECT query results into associative arrays.

<<less
Download (MB)
Added: 2007-07-19 License: GPL (GNU General Public License) Price:
830 downloads
Tree::Binary::Search 0.07

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.

<<less
Download (0.027MB)
Added: 2007-07-21 License: Perl Artistic License Price:
825 downloads
Joblist 0.3.1

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.
<<less
Download (0.026MB)
Added: 2006-02-25 License: GPL (GNU General Public License) Price:
1337 downloads
muchine 0.14a

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.
<<less
Download (0.023MB)
Added: 2006-11-01 License: GPL (GNU General Public License) Price:
1089 downloads
OriginalSynth 2.0.2

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.

<<less
Download (0.13MB)
Added: 2006-09-08 License: GPL (GNU General Public License) Price:
1141 downloads
Libtext 0.0.0 Beta 1

Libtext 0.0.0 Beta 1


Libtext is a C library for creating, reading, and performing operations on growable text / string buffer objects. more>>
Libtext is a C library for creating, reading, and performing operations on growable text / string buffer objects with optional error callbacks. Libtext performs actions such as append, delete, find, get, insert, prepend, replace, and reverse.

Libtext can also append, insert, overwrite, and prepend printf style formats. Further options include rejecting binary characters, setting a maximum size, and setting a mask that controls for which errors the callback will be executed.

All of which can be set for each individual object. Libtext is general purpose enough that it can be used to build more complex routines, while still being simple enough to use as is in rudimentary applications with little effort, learning the API within minutes.
<<less
Download (0.13MB)
Added: 2006-10-31 License: GPL (GNU General Public License) Price:
1089 downloads
Algorithm::Networksort 1.05

Algorithm::Networksort 1.05


Algorithm::Networksort can create inline comparisons for sorting. more>>
Algorithm::Networksort can create inline comparisons for sorting.

SYNOPSIS

use Algorithm::Networksort qw(:all);

my $inputs = 4;

#
# Generate the network (a list of comparators).
#
my @network = nw_comparators($inputs);

#
# Print the list, and print the graph of the list.
#
print nw_format(@network, $inputs), "n";
print nw_graph(@network, $inputs), "n";

This module will create sorting networks, a sequence of comparisons that do not depend upon the results of prior comparisons.

Since the sequences and their order never change, they can be very useful if deployed in hardware or used in software with a compiler that can take advantage of parallelism. Unfortunately a network cannot be used for generic run-time sorting like quicksort since the arrangement of the comparisons is fixed according to the number of elements to be sorted.

This modules main purpose is to create compare-and-swap macros (or functions, or templates) that one may insert into source code. It may also be used to create images of the networks in either encapsulated postscript (EPS), scalar vector graphics (SVG), or in "ascii art" format.

<<less
Download (0.015MB)
Added: 2006-07-31 License: Perl Artistic License Price:
1180 downloads
SQL::Interpolate 0.33

SQL::Interpolate 0.33


SQL::Interpolate is a Perl module to interpolate Perl variables into SQL statements. more>>
SQL::Interpolate is a Perl module to interpolate Perl variables into SQL statements.

SYNOPSIS

use SQL::Interpolate qw(:all);

# Some sample data to interpolate:
my $s = blue; my @v = (5, 6);

# Variable references are transformed into bind parameters.
# The most basic usage involves scalarrefs (as well as arrayrefs
# preceeded by "IN").
my ($sql, @bind) = sql_interp
SELECT * FROM table WHERE x = , $s, AND y IN, @v;
# RESULT:
# $sql = SELECT * FROM mytable WHERE x = ? AND y IN (?, ?)
# @bind = ($s, @v);

# In certain contexts, an arrayref or hashref acts as a single tuple:
my ($sql, @bind) = sql_interp
INSERT INTO table, {x => $s, y => 1};
# RESULT:
# $sql = INSERT INTO mytable (x, y) VALUES(?, ?);
# @bind = ($s, 1);
my ($sql, @bind) = sql_interp
UPDATE table SET, {x => $s, y => 1}, WHERE y , 2;
# RESULT:
# $sql = UPDATE mytable SET x = ?, y = ? WHERE y ?;
# @bind = ($s, 1, 2);

# In general, a hashref provides a shortcut for specifying
# a logical-AND construction:
my ($sql, @bind) = sql_interp
SELECT * FROM table WHERE, {x => $s, y => @v};
# RESULT:
# $sql = SELECT * FROM mytable WHERE (x = ? AND y IN (?, ?));
# @bind = ($s, @v);

# In general, an arrayref acts as a result set or reference to
# a temporary table:
my ($sql, @bind) = sql_interp
[[1, 2], [4, 5]], UNION, [{x => 2, y => 3}, {x => 5, y => 6};
# RESULT:
# $sql = (SELECT ?, ? UNION ALL SELECT ?, ?) UNION
# (SELECT ? AS x, ? AS y UNION ALL SELECT ?, ?);
# @bind = (1,2,4,5, 2,3,5,6);
my ($sql, @bind) = sql_interp
SELECT * FROM, [[1, 2], [4, 5]]
# RESULT:
# $sql = SELECT * FROM (SELECT ?, ? UNION ALL SELECT ?, ?) AS tbl0;
# @bind = (1,2,4,5);

# Each result above is suitable for passing to DBI:
my $res = $dbh->selectall_arrayref($sql, undef, @bind);

# Besides these simple techniques shown, SQL-Interpolate includes
# various optional modules to further integrate SQL::Interpolate with
# DBI and streamline the syntax with source filtering and macros (see
# the L section):

use DBIx::Interpolate FILTER => 1;
...
my $rows = $dbx->selectall_arrayref(sql[
SELECT thid, date, title, subject
FROM threads
WHERE date > $x AND subject IN @subjects
]);

<<less
Download (0.056MB)
Added: 2007-04-05 License: Perl Artistic License Price:
933 downloads
Genezzo::Havok::UserFunctions 0.69

Genezzo::Havok::UserFunctions 0.69


Genezzo::Havok::UserFunctions is a Perl module to load the user_functions table. more>>
Genezzo::Havok::UserFunctions is a Perl module to load the user_functions table.

SYNOPSIS

# dont say "use Genezzo::Havok::UserFunctions". Update the
# dictionary havok table:
select HavokUse(Genezzo::Havok::UserFunctions) from dual;

NOTE: this module replaces Genezzo::Havok::UserExtend.
The module Genezzo::XEval::Prepare constructs a function call interface based upon information from the user_functions table:

create table user_functions ( xid number, xtype char, xname char, args char, owner char, creationdate char, version char, argstyle char, sqlname char, typecheck char );
xid - a unique id number
xtype - the string "require" or "function"
xname - if xtype = "require", then xname is a package name, like "Text::Soundex". if xtype = "function", xname is a function name. A function name may be qualified with a package.
args - if xtype = "require", an (optional) blank-separated list of functions to import to the default Genezzo namespace. if xtype = "function", supply an actual function body in curly braces.
owner - owner of the package or function
creationdate - date row was created
version
argstyle - if set to HASH, pass a hash of the dictionary, the dbh, and the array ref function_args, else the function is just passed an array of the function arguments.
sqlname - currently UNUSED. Will be used to distinguish the perl function name from the SQL function name
typecheck - currently UNUSED. Will be used to distinguish a supplied type-checking function from a purely SQL execution function.

Example:

insert into user_functions values (1, require, Genezzo::Havok::Examples, isRedGreen, SYSTEM, 2004-09-21T12:12);

The row causes UserFunctions to "require Genezzo::Havok::Examples", and it imports "isRedGreen" into the default Genezzo namespace* (actually, it creates a stub function that calls Genezzo::Havok::Examples::isRedGreen").

An easier method is to use add_user_function, which is defined in Genezzo::Havok::Utils. The equivalent command to load the isRedGreen function is:

select
add_user_function(
module=Genezzo::Havok::Examples,
function=isRedGreen)
from dual;

<<less
Download (0.47MB)
Added: 2007-03-13 License: Perl Artistic License Price:
956 downloads
simple instant messaging 1.0

simple instant messaging 1.0


simple instant messaging (sim) is an IRC client specialized for use with bitlbee. more>>
simple instant messaging (sim) is an IRC client specialized for use with bitlbee. It is based on sic (http://suckless.org). It reads commands from standard input and prints all server output to standard output.
simple instant messaging also multiplexes all channel traffic into one output, so you dont have to switch to different channel buffers. sim must be customized by editing its source code to insert the correct username, server, password, and identification information.
Enhancements:
- The command operator was changed.
- Some code simplifications were done.
- The output format was adjusted.
<<less
Download (0.006MB)
Added: 2007-04-01 License: MIT/X Consortium License Price:
937 downloads
KDiskRescue 0.1

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

<<less
Download (MB)
Added: 2006-11-24 License: GPL (GNU General Public License) Price:
1065 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5