typing simple data from home
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 10809
Simple Xmms Control 0.1
Simple Xmms Control is a a simple SuperKaramba theme that provides XMMS control. more>>
Simple Xmms Control is a a simple SuperKaramba theme that provides XMMS control. Icons are from nuoveXT icon theme.
All suggestions are welcome!
<<lessAll suggestions are welcome!
Download (0.008MB)
Added: 2006-06-20 License: GPL (GNU General Public License) Price:
1223 downloads
Typing Trainer 1.0rc3
Typing Trainer is a software developed to exercise typing skills. more>>
Typing Trainer is a software developed to exercise typing skills.
Typing Trainer is designed for exercising typing speed and typing accuracy, by providing an environment to type in a copy of an original text within a specific time period.
It also has the ability to store the results of such an exercise for exam purposes.
Enhancements:
- Some bugfixes in unicode handling, primarily in the way results are displayed.
<<lessTyping Trainer is designed for exercising typing speed and typing accuracy, by providing an environment to type in a copy of an original text within a specific time period.
It also has the ability to store the results of such an exercise for exam purposes.
Enhancements:
- Some bugfixes in unicode handling, primarily in the way results are displayed.
Download (0.53MB)
Added: 2006-10-09 License: GPL (GNU General Public License) Price:
1119 downloads
Simple Monitor 1.1
Simple Monitor is a SuperKaramba theme inspired by the simple but effective Very Simple Monitors theme. more>>
Simple Monitor is a SuperKaramba theme inspired by the simple but effective "Very Simple Monitors" theme by the user humanthing. Some values are not displayed properly though in Very Simple Monitors (network values and IP). This could be because of different setups. My computer is pretty standard so my theme should function properly on most pcs. http://www.kde-look.org/content/show.php?content=48973
I like a tight and clean desktop, so I simplified the idea even more. This theme is showing all basic information, and nothing more.
Main features:
- Processors type
- Processor speed
- Processor load (number and graph, for one proc)
- Processor Temperature
- Amount of ram used / amount of ram
- amount of swap used / amount of swap
- amound of HDD space used / amount of HDD space total (for "/root" and "/home")
- HDD temperatue (for "/hda", I could add another drive if requested)
- Computer name
- Computer ip
- Network load (up- and download, values and graph)
- Amount of transfered data thrue internet (up- and download) since last boot
Enhancements:
- Made the three blocks clickable.
- The CPU block opens Processor information
- The Memory block opens KsysGuard (youll need to have it installed to be able open it, obviously. Its in Kubuntu by default)
- the Network block opens your computers ip settings window
- Added a line for your computers uptime
- Changed font colors to very dark gray and very light gray, instead of black and white, to make it look softer.
<<lessI like a tight and clean desktop, so I simplified the idea even more. This theme is showing all basic information, and nothing more.
Main features:
- Processors type
- Processor speed
- Processor load (number and graph, for one proc)
- Processor Temperature
- Amount of ram used / amount of ram
- amount of swap used / amount of swap
- amound of HDD space used / amount of HDD space total (for "/root" and "/home")
- HDD temperatue (for "/hda", I could add another drive if requested)
- Computer name
- Computer ip
- Network load (up- and download, values and graph)
- Amount of transfered data thrue internet (up- and download) since last boot
Enhancements:
- Made the three blocks clickable.
- The CPU block opens Processor information
- The Memory block opens KsysGuard (youll need to have it installed to be able open it, obviously. Its in Kubuntu by default)
- the Network block opens your computers ip settings window
- Added a line for your computers uptime
- Changed font colors to very dark gray and very light gray, instead of black and white, to make it look softer.
Download (0.002MB)
Added: 2007-04-06 License: GPL (GNU General Public License) Price:
936 downloads
Data::SimplePassword 0.02
Data::SimplePassword provides a simple random password generator. more>>
Data::SimplePassword provides a simple random password generator.
SYNOPSIS
use Data::SimplePassword;
my $sp = Data::SimplePassword->new;
$sp->chars( 0..9, a..z, A..Z ); # optional
my $password = $sp->make_password( 8 ); # length
Its a very easy-to-use but a bit strong random password generator.
<<lessSYNOPSIS
use Data::SimplePassword;
my $sp = Data::SimplePassword->new;
$sp->chars( 0..9, a..z, A..Z ); # optional
my $password = $sp->make_password( 8 ); # length
Its a very easy-to-use but a bit strong random password generator.
Download (0.003MB)
Added: 2007-03-31 License: Perl Artistic License Price:
938 downloads
File::Data 1.12
File::Data is a Perl module as a interface to file data. more>>
File::Data is a Perl module as a interface to file data.
Wraps all the accessing of a file into a convenient set of calls for reading and writing data, including a simple regex interface.
Note that the file needs to exist prior to using this module!
See new()
SYNOPSIS
use strict;
use File::Data;
my $o_dat = File::Data->new(./t/example);
$o_dat->write("complete file contentsn");
$o_dat->prepend("first linen"); # line 0
$o_dat->append("original second (last) linen");
$o_dat->insert(2, "new second linen"); # inc. zero!
$o_dat->replace(line, LINE);
print $o_dat->READ;
Or, perhaps more seriously :-}
my $o_sgm = File::Data->new(./sgmlfile);
print "new SGML data: ".$o_sgm->REPLACE(
s*((?s).*)s* ,
qq| key="val" |,
) if $o_sgm;
See METHODS and EXAMPLES.
IMPORTANT
lowercase method calls return the object itself, so you can chain calls.
my $o_obj = $o_dat->read; # ! READ; # !<<less
Wraps all the accessing of a file into a convenient set of calls for reading and writing data, including a simple regex interface.
Note that the file needs to exist prior to using this module!
See new()
SYNOPSIS
use strict;
use File::Data;
my $o_dat = File::Data->new(./t/example);
$o_dat->write("complete file contentsn");
$o_dat->prepend("first linen"); # line 0
$o_dat->append("original second (last) linen");
$o_dat->insert(2, "new second linen"); # inc. zero!
$o_dat->replace(line, LINE);
print $o_dat->READ;
Or, perhaps more seriously :-}
my $o_sgm = File::Data->new(./sgmlfile);
print "new SGML data: ".$o_sgm->REPLACE(
s*((?s).*)s* ,
qq| key="val" |,
) if $o_sgm;
See METHODS and EXAMPLES.
IMPORTANT
lowercase method calls return the object itself, so you can chain calls.
my $o_obj = $o_dat->read; # ! READ; # !<<less
Download (0.013MB)
Added: 2007-04-26 License: Perl Artistic License Price:
914 downloads
Template::Simple 0.01
Template::Simple is a simple and fast template module. more>>
Template::Simple is a simple and fast template module.
SYNOPSIS
use Template::Simple;
my $tmpl = Template::Simple->new();
my $template = Jan 1, 2008,
author => Me, myself and I,
},
row => [
{
first => row 1 value 1,
second => row 1 value 2,
},
{
first => row 2 value 1,
second => row 2 value 2,
},
],
footer_data => {
modified => Aug 31, 2006,
},
} ;
my $rendered = $tmpl->render( $template, $data ) ;
Template::Simple has these goals:
Support most common template operations
It can recursively include other templates, replace tokens (scalars), recursively render nested chunks of text and render lists. By using simple idioms you can get conditional renderings.
Complete isolation of template from program code
This is very important as template design can be done by different people than the program logic. It is rare that one person is well skilled in both template design and also programming.
Very simple template markup (only 4 markups)
The only markups are INCLUDE, START, END and token. See MARKUP for more.
Easy to follow rendering rules
Rendering of templates and chunks is driven from a data tree. The type of the data element used in an rendering controls how the rendering happens. The data element can be a scalar or scalar reference or an array, hash or code reference.
Efficient template rendering
Rendering is very simple and uses Perls regular expressions efficiently. Because the markup is so simple less processing is needed than many other templaters. Precompiling templates is not supported yet but that optimization is on the TODO list.
Easy user extensions
User code can be called during an rendering so you can do custom renderings and plugins. Closures can be used so the code can have its own private data for use in rendering its template chunk.
<<lessSYNOPSIS
use Template::Simple;
my $tmpl = Template::Simple->new();
my $template = Jan 1, 2008,
author => Me, myself and I,
},
row => [
{
first => row 1 value 1,
second => row 1 value 2,
},
{
first => row 2 value 1,
second => row 2 value 2,
},
],
footer_data => {
modified => Aug 31, 2006,
},
} ;
my $rendered = $tmpl->render( $template, $data ) ;
Template::Simple has these goals:
Support most common template operations
It can recursively include other templates, replace tokens (scalars), recursively render nested chunks of text and render lists. By using simple idioms you can get conditional renderings.
Complete isolation of template from program code
This is very important as template design can be done by different people than the program logic. It is rare that one person is well skilled in both template design and also programming.
Very simple template markup (only 4 markups)
The only markups are INCLUDE, START, END and token. See MARKUP for more.
Easy to follow rendering rules
Rendering of templates and chunks is driven from a data tree. The type of the data element used in an rendering controls how the rendering happens. The data element can be a scalar or scalar reference or an array, hash or code reference.
Efficient template rendering
Rendering is very simple and uses Perls regular expressions efficiently. Because the markup is so simple less processing is needed than many other templaters. Precompiling templates is not supported yet but that optimization is on the TODO list.
Easy user extensions
User code can be called during an rendering so you can do custom renderings and plugins. Closures can be used so the code can have its own private data for use in rendering its template chunk.
Download (0.015MB)
Added: 2006-09-29 License: Perl Artistic License Price:
1121 downloads
XML::Simple::DTDReader 0.04
XML::Simple::DTDReader is a simple XML file reading based on their DTDs. more>>
XML::Simple::DTDReader is a simple XML file reading based on their DTDs.
SYNOPSIS
use XML::Simple::DTDReader;
my $ref = XMLin("data.xml");
Or the object oriented way:
require XML::Simple::DTDReader;
my $xsd = XML::Simple::DTDReader->new;
my $ref = $xsd->XMLin("data.xml");
XML::Simple::DTDReader aims to be a XML::Simple drop-in replacement, but with several aspects of the module controlled by the XMLs DTD. Specifically, array folding and array forcing are inferred from the DTD.
Currently, only XMLin is supported; support for XMLout is planned for later releases.
<<lessSYNOPSIS
use XML::Simple::DTDReader;
my $ref = XMLin("data.xml");
Or the object oriented way:
require XML::Simple::DTDReader;
my $xsd = XML::Simple::DTDReader->new;
my $ref = $xsd->XMLin("data.xml");
XML::Simple::DTDReader aims to be a XML::Simple drop-in replacement, but with several aspects of the module controlled by the XMLs DTD. Specifically, array folding and array forcing are inferred from the DTD.
Currently, only XMLin is supported; support for XMLout is planned for later releases.
Download (0.010MB)
Added: 2006-09-06 License: Perl Artistic License Price:
1146 downloads
XML::Simple::Tree 0.03
XML::Simple::Tree is a tree object extension for XML::Simple data structures. more>>
XML::Simple::Tree is a tree object extension for XML::Simple data structures.
SYNOPSIS
## script 1
## create XML::Simple::Tree object and do a preorder traversal
## create XML::Simple::Tree object from an xml document ($xml_file)
my $xml_obj = XML::Simple::Tree->new(file => directory.xml,
node_key => dir,
target_key => name);
## sub set_do_node() method takes subroutine reference to be executed at current node
$xml_obj->set_do_node(
sub {
my $self = $xml_obj;
my $cnode = $self->get_cnode();
my $level = $self->get_level();
my $padding = * x ($level + 1);
print "$padding$cnode->{name}[0]n";
}
);
## sub set_do_leaf() method takes subroutine reference to be executed at leaf node
$xml_obj->set_do_leaf(
sub {
my $self = $xml_obj;
print "n";
}
);
## Tree pre order traversal method that executes do_node() at each node and do_leaf() at each leaf
$xml_obj->traverse();
## script 2
## find a node and retrieve a parameter.
my $xml_obj =
XML::Simple::Tree->new(
file => $xml_file,
node_key => directory,
target_key => name
);
my $want_node = $xmlObj->find_node($target_directory);
my $mtime = $want_node->{mtime}[0];
## script 3
## find a node and cut (remove) it from tree.
my $cut_name = bin;
my $mainXml =
XML::Simple::Tree->new( file => $xml_file,
node_key => directory,
target_key => name);
$mainXml->cut_node($cut_name);
## script 4
## take XML::Simple::Tree object and paste it into a target node of another
## convert it back to xml
my $target_dir = xxx;
my $cut_tree =
XML::Simple::Tree->new(file => $cut_xml_file,
node_key => directory,
target_key => name);
$config_tree->paste_node($target_dir, $cut_tree->get_cnode()->{directory}[0]);
## convert to xml
my $xml = $config_tree->toXML();
## Additional examples can be found in the included tests.
This module extends XML::Simple by taking the data structure returned by XML::Simple::XMLin($xml_file, forcearray => 1) and putting it in a class complete with tree manipulation and traversal methods. Important to know is that XMLin is called with the option ForceArray => 1. This option forces nested elements to be represented as arrays even when there is only one.
<<lessSYNOPSIS
## script 1
## create XML::Simple::Tree object and do a preorder traversal
## create XML::Simple::Tree object from an xml document ($xml_file)
my $xml_obj = XML::Simple::Tree->new(file => directory.xml,
node_key => dir,
target_key => name);
## sub set_do_node() method takes subroutine reference to be executed at current node
$xml_obj->set_do_node(
sub {
my $self = $xml_obj;
my $cnode = $self->get_cnode();
my $level = $self->get_level();
my $padding = * x ($level + 1);
print "$padding$cnode->{name}[0]n";
}
);
## sub set_do_leaf() method takes subroutine reference to be executed at leaf node
$xml_obj->set_do_leaf(
sub {
my $self = $xml_obj;
print "n";
}
);
## Tree pre order traversal method that executes do_node() at each node and do_leaf() at each leaf
$xml_obj->traverse();
## script 2
## find a node and retrieve a parameter.
my $xml_obj =
XML::Simple::Tree->new(
file => $xml_file,
node_key => directory,
target_key => name
);
my $want_node = $xmlObj->find_node($target_directory);
my $mtime = $want_node->{mtime}[0];
## script 3
## find a node and cut (remove) it from tree.
my $cut_name = bin;
my $mainXml =
XML::Simple::Tree->new( file => $xml_file,
node_key => directory,
target_key => name);
$mainXml->cut_node($cut_name);
## script 4
## take XML::Simple::Tree object and paste it into a target node of another
## convert it back to xml
my $target_dir = xxx;
my $cut_tree =
XML::Simple::Tree->new(file => $cut_xml_file,
node_key => directory,
target_key => name);
$config_tree->paste_node($target_dir, $cut_tree->get_cnode()->{directory}[0]);
## convert to xml
my $xml = $config_tree->toXML();
## Additional examples can be found in the included tests.
This module extends XML::Simple by taking the data structure returned by XML::Simple::XMLin($xml_file, forcearray => 1) and putting it in a class complete with tree manipulation and traversal methods. Important to know is that XMLin is called with the option ForceArray => 1. This option forces nested elements to be represented as arrays even when there is only one.
Download (0.007MB)
Added: 2006-09-07 License: Perl Artistic License Price:
1144 downloads
Simple Spreadsheet 0.8
Simple Spreadsheet is a webbased spreadsheet program written in Javascript, HTML, CSS and PHP. more>>
Simple Spreadsheet is a webbased spreadsheet program written in Javascript, HTML, CSS and PHP.
Simple Spreadsheet features formulas, charts, numeric formats, keyboard navigation, etc. Javascript is used for the default data format and for the macros and formulas.
<<lessSimple Spreadsheet features formulas, charts, numeric formats, keyboard navigation, etc. Javascript is used for the default data format and for the macros and formulas.
Download (MB)
Added: 2007-06-07 License: GPL (GNU General Public License) Price:
878 downloads
XML::Schema::Type::Simple 0.07
XML::Schema::Type::Simple is a base class for simple XML Schema datatypes. more>>
XML::Schema::Type::Simple is a base class for simple XML Schema datatypes.
SYNOPSIS
package XML::Schema::Type::whatever;
use base qw( XML::Schema::Type::Simple );
use vars qw( @FACETS );
@FACETS = (
minLength => 10,
maxLength => 30,
otherFacet => {
value => $n,
fixed => 1,
annotation => "a comment",
},
);
package main;
my $type = XML::Schema::Type::whatever->new()
|| die XML::Schema::Type::whatever->error();
my $item = $type->instance(some instance value)
|| die $type->error();
# NOTE: some issues still to resolve on the precise
# nature and structure of instances (currently hash ref).
print $item->{ value };
The XML::Schema::Type::Simple module is a base class for objects that represent XML Schema simple types.
<<lessSYNOPSIS
package XML::Schema::Type::whatever;
use base qw( XML::Schema::Type::Simple );
use vars qw( @FACETS );
@FACETS = (
minLength => 10,
maxLength => 30,
otherFacet => {
value => $n,
fixed => 1,
annotation => "a comment",
},
);
package main;
my $type = XML::Schema::Type::whatever->new()
|| die XML::Schema::Type::whatever->error();
my $item = $type->instance(some instance value)
|| die $type->error();
# NOTE: some issues still to resolve on the precise
# nature and structure of instances (currently hash ref).
print $item->{ value };
The XML::Schema::Type::Simple module is a base class for objects that represent XML Schema simple types.
Download (0.14MB)
Added: 2006-09-06 License: Perl Artistic License Price:
1143 downloads
Work-From-Home 1.0
The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-18 License: Freeware Price: Free
190 downloads
Google Data Objective-C Client 1.1.0
Google Data Objective-C Client provides a framework and source code that make it easy to access data through Google Data APIs. more>>
Google Data Objective-C Client provides a framework and source code that make it easy to access data through Google Data APIs.
The Google data APIs provide a simple protocol for reading and writing data on the web. Many Google services provide a Google data API.
Each of the following Google services provides a Google data API:
- Base
- Blogger
- Calendar
- Spreadsheets
- Picasa Web Albums
- Notebook
Additional services with Google data APIs that are not yet supported by the Objective-C Client Library:
- Code Search
- Google Apps Provisioning
<<lessThe Google data APIs provide a simple protocol for reading and writing data on the web. Many Google services provide a Google data API.
Each of the following Google services provides a Google data API:
- Base
- Blogger
- Calendar
- Spreadsheets
- Picasa Web Albums
- Notebook
Additional services with Google data APIs that are not yet supported by the Objective-C Client Library:
- Code Search
- Google Apps Provisioning
Download (0.60MB)
Added: 2007-08-08 License: The Apache License 2.0 Price:
810 downloads
Bio::OntologyIO::simplehierarchy 1.4
Bio::OntologyIO::simplehierarchy is a base class parser for simple hierarchy-by-indentation type formats. more>>
Bio::OntologyIO::simplehierarchy is a base class parser for simple hierarchy-by-indentation type formats.
SYNOPSIS
use Bio::OntologyIO;
# do not use directly -- use via Bio::OntologyIO
my $parser = Bio::OntologyIO->new
( -format => "simplehierarchy",
-file => "pathology_terms.csv",
-indent_string => ",",
-ontology_name => "eVOC",
-term_factory => $fact,
);
my $ontology = $parser->next_ontology();
Needs Graph.pm from CPAN. This class is nearly identical to OntologyIO::dagflat, see Bio::OntologyIO::dagflat for details.
<<lessSYNOPSIS
use Bio::OntologyIO;
# do not use directly -- use via Bio::OntologyIO
my $parser = Bio::OntologyIO->new
( -format => "simplehierarchy",
-file => "pathology_terms.csv",
-indent_string => ",",
-ontology_name => "eVOC",
-term_factory => $fact,
);
my $ontology = $parser->next_ontology();
Needs Graph.pm from CPAN. This class is nearly identical to OntologyIO::dagflat, see Bio::OntologyIO::dagflat for details.
Download (4.7MB)
Added: 2006-10-10 License: Perl Artistic License Price:
1109 downloads
Simple Python Fixed-Point Module 0.5
Simple Python Fixed-Point Module is a Python module which provides basic facilities for manipulating (binary) fixed-point number more>>
Simple Python Fixed-Point Module or SPFPM in short, is a Python module which provides basic facilities for manipulating (binary) fixed-point numbers.
The number of fractional binary digits is tunable, allowing near-arbitrary precision arithmetic. Arithmetic and mathematical functions such as sqrt, exp, log, sin, and cos are available
Enhancements:
- Inverse sin/cosine routines were improved. Inheritance-based typing was replaced by duck-typing.
<<lessThe number of fractional binary digits is tunable, allowing near-arbitrary precision arithmetic. Arithmetic and mathematical functions such as sqrt, exp, log, sin, and cos are available
Enhancements:
- Inverse sin/cosine routines were improved. Inheritance-based typing was replaced by duck-typing.
Download (0.015MB)
Added: 2007-05-31 License: Python License Price:
879 downloads
Simple Blue 11-08-2006
Simple Blue is a modified Sunergos Blue theme with user list. more>>
Simple Blue is a modified Sunergos Blue theme with user list.
Lightweight (SVG), elegant, works with all languages and widescreen.
<<lessLightweight (SVG), elegant, works with all languages and widescreen.
Download (0.030MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
1104 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 typing simple data from home 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