Main > Free Download Search >

Free jiddu krishnamurti espa ol software for linux

jiddu krishnamurti espa ol

Sponsored Links
Sponsored Links
Sort by >> Relevance
rss
Secleted [ 0 ] software to compare
Results 1 - 15 of about 9
Devel::DumpSizes 0.01

Devel::DumpSizes 0.01


Devel::DumpSizes is a Perl module to dump the name and size in bytes of variables that are available at a give point in a script more>>
Devel::DumpSizes is a Perl module to dump the name and size in bytes (in increasing order) of variables that are available at a give point in a script.

SYNOPSIS

use Devel::DumpSizes qw/dump_sizes/;

&Devel::DumpSizes::dump_sizes();

Or,

&Devel::DumpSizes::dump_sizes("/path/of/filename-to-dump-output");

This will print the name of each variable and its size. The name and size are seperated by a ->

Variable name -> Size in bytes

EXPORTS

Exports one subroutine by default:
dump_sizes

This module allows us to print the names and sizes of variables that are available at a give point in a script.

This module was written while debugging a huge long running script. The main use being to understand how variable sizes were fluctuating during script execution. It uses PadWalker and Devel::Symdump to get the variables. It uses Devel::Size to report the size of each variable.

METHODS

dump_sizes

Usage: &Devel::DumpSizes::dump_sizes();

Or

Usage: &Devel::DumpSizes::dump_sizes("/path/of/filename-to-dump-output");
This method accepts one optional parameter that will be used to create the file where the output is dumped.

If parameter is given then two files will be create. One will have extension .my and will contain my variables. The second file will have extension .ol and will contain our/local variables. If no filename is given output is printed on STDOUT.
As of now, the output is sectioned by printing the following at the start:

1. either of my or our/local to specify the kind of variables being reported.

2. output of time().

3. If possible, subroutine name/line number as returned by caller (perldoc -f caller).

All sizes are in Bytes as returned by Devel::Size. I plan to have more information reported in newer versions.

<<less
Download (0.003MB)
Added: 2007-05-02 License: Perl Artistic License Price:
905 downloads
Number::Latin 1.01

Number::Latin 1.01


Number::Latin is a Perl module that can convert to/from the number system a,b,...z,aa,ab.... more>>
Number::Latin is a Perl module that can convert to/from the number system "a,b,...z,aa,ab..."

SYNOPSIS

use Number::Latin;
print join( , map int2latin($_), 1 .. 30), "n";
#
# Prints:
# a b c d e f g h i j k l m n o p q r s t u v w x y z aa ab ac ad

Some applications, notably the numbering of points in outlines, use a scheme that starts with the letter "a", goes to "z", and then starts over with "aa" thru "az", then "ba", and so on. (The W3C refers to this numbering system as "lower-latin"/"upper-latin" or "lower alpha"/"upper alpha", in discussions of HTML/CSS options for rendering of list elements (OL/LI).)

This module provides functions that deal with that numbering system, converting between it and integer values.

FUNCTIONS

This module exports four functions, int2latin, int2Latin, int2LATIN, and latin2int:

$latin = int2latin( INTEGER )

This returns the INTEGERth item in the sequence (a .. z, aa, ab, etc). For example, int2latin(1) is "a", int2latin(2) is "b", int2latin(26) is "z", int2latin(30) is "ad", and so for any nonzero integer.

$latin = int2Latin( INTEGER )

This is just like int2latin, except that the return value is has an initial capital. E.g., int2Latin(30) is "Ad".

$latin = int2LATIN( INTEGER )

This is just like int2latin, except that the return value is in all uppercase. E.g., int2LATIN(30) is "AD".

$latin = latin2int( INTEGER )

This converts back from latin number notation (regardless of capitalization!) to an integer value. E.g., latin2int("ad") is 30.

<<less
Download (0.005MB)
Added: 2006-07-05 License: Perl Artistic License Price:
1206 downloads
Zureta 0.49

Zureta 0.49


Zureta IfaceMon easily displays the activity of your network interfaces (eth0, eth1, etc.). more>>
Zureta IfaceMon easily displays the activity of your network interfaces (eth0, eth1, etc.). It is curses based, and displays the activity on a bar graph.
This is how to install software:
1) Requirements
A good ol gcc and ncurses lib will do the thing.
2) How to do it
Use ./configure followed by make and make install to install the package.
Enhancements:
- nodelay moved to where it does not cause Segmentation Fault
<<less
Download (0.009MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
1221 downloads
SimpleCDB 1.0

SimpleCDB 1.0


SimpleCDB - A Perl-only Constant Database. more>>
SimpleCDB - A Perl-only Constant Database.

SYNOPSIS

use SimpleCDB;

# writer
# - tie blocks until DB is available (exclusive), or timeout
tie %h, SimpleCDB, db, O_WRONLY
or die "tie failed: $SimpleCDB::ERRORn";
$h{$k} = $v;
die "store: $SimpleCDB::ERROR" if $SimpleCDB::ERROR;
untie %h; # release DB (exclusive) lock

# reader
# - tie blocks until DB is available (shared), or timeout
tie %h, SimpleCDB, db, O_RDONLY
or die "tie failed: $SimpleCDB::ERRORn";
$v = $h{$i};
die "fetch: $SimpleCDB::ERROR" if $SimpleCDB::ERROR;
untie %h; # release DB (shared) lock

This is a simple perl-only DB intended for constant DB applications. A constant DB is one which, once created, is only ever read from (though this implementation allows appending of new data). That is, this is an "append-only DB" - records may only be added and/or extracted.

Course-grained locking provided to allow multiple users, as per flock semantics (i.e. write access requires an exclusive lock, read access needs a shared lock (see notes below re. perl < 5.004)). As (exclusive) updates may be take some time to complete, shared lock attempts will timeout after a defined waiting period (returning $! == EWOULDBLOCK). Concurrent update attempts will behave similarly, but with a longer timeout.

The DB files are simple flat files, with one record per line. Records (both keys and values) may be arbitrary (binary) data. Records are extracted from these files via a plain linear search. Unsurprisingly, this search is a relatively inefficient operation. To improve extraction speed, records are randomly distributed across N files, with the average search space is reduced by 1/N compared to a single file. (See below for some example performance times.) One advantage of this flat file based solution is that the DB is human readable (assuming the data is), and with some care can be edited with a plain ol text editor.

Finally, note that this DB does not support duplicate entries. In practice, the first record found matching a given key is returned, any duplicates will be ignored.

<<less
Download (0.015MB)
Added: 2007-05-14 License: Perl Artistic License Price:
893 downloads
Wiki::Toolkit::Formatter::Mediawiki 0.02

Wiki::Toolkit::Formatter::Mediawiki 0.02


Wiki::Toolkit::Formatter::Mediawiki is a Mediawiki-style formatter for Wiki::Toolkit. more>>
Wiki::Toolkit::Formatter::Mediawiki is a Mediawiki-style formatter for Wiki::Toolkit.

SYNOPSIS

This package implements a formatter for the Wiki::Toolkit module which attempts to duplicate the behavior of the Mediawiki application (a set of PHP scripts used by Wikipedia and friends).

use Wiki::Toolkit
use Wiki::Toolkit::Store::Mediawiki;
use Wiki::Toolkit::Formatter::Mediawiki;

my $store = Wiki::Toolkit::Store::Mediawiki->new ( ... );
# See below for parameter details.
my $formatter = Wiki::Toolkit::Formatter::Mediawiki->new (%config,
store => $store);
my $wiki = Wiki::Toolkit->new (store => $store,
formatter => $formatter);

METHODS

new
my $store = Wiki::Toolkit::Store::Mediawiki->new ( ... );
my $formatter = Wiki::Toolkit::Formatter::Mediawiki->new
(allowed_tags => [# HTML
qw(b big blockquote br caption center cite code dd
div dl dt em font h1 h2 h3 h4 h5 h6 hr i li ol p
pre rb rp rt ruby s small strike strong sub sup
table td th tr tt u ul var),
# MediaWiki Specific
qw(nowiki),],
allowed_attrs => [qw(title align lang dir width height bgcolor),
qw(clear), # BR
qw(noshade), # HR
qw(cite), # BLOCKQUOTE, Q
qw(size face color), # FONT
# For various lists, mostly deprecated but
# safe
qw(type start value compact),
# Tables
qw(summary width border frame rules
cellspacing cellpadding valign char
charoff colgroup col span abbr axis
headers scope rowspan colspan),
qw(id class name style), # For CSS
],
node_prefix => ,
store => $store);

Parameters will default to the values above, with the exception of store, which is a required argument without a default. store does not have to be of type Wiki::Toolkit::Store::Mediawiki.
format

my $html = $formatter->format ($content);

Escapes any tags which werent specified as allowed on creation, then interpolates any macros, then calls Text::WikiFormat::format (with the specialized Mediawiki config) to translate the raw Wiki language supplied into HTML.

find_internal_links

my @links_to = $formatter->find_internal_links ($content);

Returns a list of all nodes that the supplied content links to.

<<less
Download (0.006MB)
Added: 2007-04-02 License: Perl Artistic License Price:
936 downloads
Text::MetaMarkup::HTML 0.01

Text::MetaMarkup::HTML 0.01


Text::MetaMarkup::HTML is a MM-to-HTML converter. more>>
Text::MetaMarkup::HTML is a MM-to-HTML converter.

SYNOPSIS

use Text::MetaMarkup::HTML;
print Text::MetaMarkup::HTML->new->parse(file => $filename);

This module extends Text::MetaMarkup and converts the parsed document to HTML.

Text::MetaMarkup::HTML adds special support for the following tags:

Paragraph tag style

Its contents are not subject to escaping and inline tag interpolation.

EXAMPLE

Input

h1: Example

This is just {i:an {b:example}}.

* foo
* bar
* baz

Output

< h1 >Example< /h1 >

< p >This is just < i >an < b >example< /b >< /i >.

< ol >< li >foo< /i >
< li >bar< /li >
< li >baz< /li >< /ol >

<<less
Download (0.006MB)
Added: 2007-08-22 License: Perl Artistic License Price:
494 downloads
TCPDF 1.53.0.TC033 (PHP5)

TCPDF 1.53.0.TC033 (PHP5)


TCPDF is a PHP class for generating PDF files on-the-fly without requiring external extensions. more>>
TCPDF is a PHP class for generating PDF files on-the-fly without requiring external extensions.
TCPDF is an extension and improvement of the FPDF class that supports UTF-8, Unicode, HTML, and barcodes.
Main features:
- supports all ISO page formats;
- supports UTF-8 Unicode;
- includes methods to publish some xhtml code, supporting the following elements: h1, h2, h3, h4, h5, h6, b, u, i, a, img, p, br, strong, em, font, blockquote, li, ul, ol, hr, td, th, tr, table, sup, sub, small;
- includes a method to print various barcode formats using an improved version of "Generic Barcode Render Class" by Karim Mribti (http://www.mribti.com/barcode/) (require GD library: http://www.boutell.com/gd/)
- supports TrueTypeUnicode, TrueType, Type1 and encoding;
- supports custom page formats, margins and units of measure;
- includes methods for page header and footer management;
- supports automatic page break;
- supports automatic page numbering;
- supports automatic line break and text justification;
- supports JPEG and PNG images;
- supports colors;
- supports links;
- support page compression (require zlib extension: http://www.gzip.org/zlib/);
- the source code is full documented in PhpDocumentor Style
Enhancements:
- fixed bug 1762550: case sensitive for font files
- NOTE: all fonts files names must be in lowercase!
<<less
Download (4.2MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
519 downloads
 
Other version of TCPDF 1.53.0.TC033
TCPDF 1.53.0.TC033 (PHP4)h1, h2, h3, h4, h5, h6, b, u, i, a, img, p, br, strong, em, font, blockquote, li, ul, ol, hr, td, th
License:LGPL (GNU Lesser General Public License)
Download (3.7MB)
823 downloads
Added: 2007-08-01
Onebase Linux 2005x2

Onebase Linux 2005x2


Onebase is a full fledged OS targeted at diverse users ranging from newbies to professionals. more>>
Onebase is a full fledged OS targeted at diverse users ranging from newbies to professionals. And with its exclusive set of network tools Onebase is ready for enterprises.
This is a community based effort where users and developers form an association to create and maintain a free operating system based on the linux kernel.
At the time of its creation (June 2003), there were many linux distros already available, many of which had their own feature that isnt found in another. So inorder to get the best out of the rest, we started this project and now it has a significant amount of its own specialities.
It consists of Onebase Linux - a full featured linux operating system and OnebaseGo - a portable OS.
OLM is its specialty and it comes with a lot of interesting stuff.
The installer of Onebase Linux is Net-based which means it provides you with a high-level of flexibility in selection of packages and mode of installation {source/binary}.
Also with this you can instantly download the latest packages available in OL-apps. Besides these, the installer CD is lightweight in size and has a longer life compared to its conventional counterparts.
Main features:
- Onebase Linux Management
- OL-apps software gallery
- Installation and deploying
- Support for both binary and source packages
- Bleeding edge applications
- Network OLM
- Concurrency support
- Install once and update w/o CDs
- Automatic security updates
- Menu and Configure tools
- Many more features...
- Easy .olm creation for applications
<<less
Download (108MB)
Added: 2005-08-18 License: GPL (GNU General Public License) Price:
1530 downloads
lfm 0.91

lfm 0.91


lmf is a simple but powerful file manager for the UNIX console. more>>
lmf is a simple but powerful file manager for the UNIX console. It has been developed with the ol good Midnight Commander as model.

<<less
Download (0.067MB)
Added: 2005-09-27 License: GPL (GNU General Public License) Price:
1488 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 1
  • 1