Main > Free Download Search >

Free 0.020kg converted to milligrams software for linux

0.020kg converted to milligrams

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1259
convert2tifgrayscale

convert2tifgrayscale


convert2tifgrayscale is a GIMP plugin that can batch convert to tif grayscale for Offset-Printing. more>>
convert2tifgrayscale is a GIMP plugin that can batch convert to tif grayscale for Offset-Printing.

Converts all images in a specified directory to grayscale, then uses unsharp mask and adjusts levels.

<<less
Download (MB)
Added: 2006-08-16 License: GPL (GNU General Public License) Price:
1167 downloads
HTML::WikiConverter::Normalizer 0.61

HTML::WikiConverter::Normalizer 0.61


HTML::WikiConverter::Normalizer is a Perl module to convert CSS styles to (roughly) corresponding HTML. more>>


SYNOPSIS

use HTML::TreeBuilder;
use HTML::WikiConverter::Normalizer;

my $tree = new HTML::TreeBuilder();
$tree->parse(

text

);

my $norm = new HTML::WikiConverter::Normalizer();
$norm->normalize($tree);

# Roughly gives "

text

"
print $tree->as_HTML();

HTML::WikiConverter dialects convert HTML into wiki markup. Most (if not all) know nothing about CSS, nor do they take it into consideration when performing html-to-wiki conversion. But there is no good reason for, say, text not to be converted into text in the MediaWiki dialect. The same is true of other dialects, all of which should be able to use CSS information to produce wiki markup.

The issue becomes especially problematic when considering that several WYSIWYG HTML editors (e.g. Mozillas) produce this sort of CSS-heavy HTML. Prior to HTML::WikiConverter::Normalizer, this HTML would have been essentially converted to text, the CSS information having been ignored by HTML::WikiConverter.

HTML::WikiConverter::Normalizer avoids this with a few simple transformations that convert CSS styles into HTML tags.

<<less
Download (0.034MB)
Added: 2006-08-09 License: Perl Artistic License Price:
1172 downloads
Convert Video To Nokia 5800 and others 0.1

Convert Video To Nokia 5800 and others 0.1


Easily convert videos to a Nokia 5800XM mobile phone more>>

Convert Video To Nokia 5800 and others 0.1 is created as a simple service menu entry to easily convert videos to a Nokia 5800XM mobile phone using ffmpeg or convert the files to mpeg4 with aac.

Installation note:

  1. The default folder to put the file is/home/user/.kde/share/kde4/services/ServiceMenus (for user specific)or/usr/share/kde4/services/ServiceMenus (for system wide). If for some reason your folders are different use command kde4-config --path services to find out the right folders.
  2. You can easily change the ffmpeg command just by opening the file with a text editor. Currently the command is:ffmpeg -i %u -f mp4 -vcodec mpeg4 -r 30 -b 2200k -s 640x360 -acodec libfaac -r 32000 -ab 128k -ac 2 -async 1 %u.mp4

Requirements:

  • KDE
<<less
Added: 2009-07-07 License: GPL Price: FREE
12 downloads
Convert::Transcribe 0.02

Convert::Transcribe 0.02


Convert::Transcribe is a Perl extension for transcribing natural languages. more>>
Convert::Transcribe is a Perl extension for transcribing natural languages.

SYNOPSIS

use Convert::Transcribe;

$t = new Convert::Transcribe();
$t->fromfile(filename);
# or
$t = new Convert::Transcribe();
$t->fromstring("transcription def. containing newlines");
# or
$t = new Convert::Transcribe(filename);
# or
$t = new Convert::Transcribe("transcription def. containing newlines");

$t->transcribe("text");

$t->generated_code(); # for debugging

<<less
Download (0.004MB)
Added: 2007-07-27 License: Perl Artistic License Price:
820 downloads
Convert::Morse 0.04

Convert::Morse 0.04


Convert::Morse is a package to convert between ASCII text and MORSE alphabet. more>>
Convert::Morse is a package to convert between ASCII text and MORSE alphabet.
SYNOPSIS
use Convert::Morse qw(as_ascii as_morse is_morsable);
print as_ascii(.... . .-.. .-.. --- -- --- .-. ... .),"n";
# Helo Morse
print as_morse(Perl?),"n"; # .--. . .-. .-.. ..--..
print "Yes!n" if is_morsable(Helo Perl.); # print "Yes!"
This module lets you convert between normal ASCII text and international Morse code. You can redefine the token sets, if you like.
INPUT
ASCII text can have both lower and upper case, it will be converted to upper case prior to converting.
Morse code input consists of dashes - and dots .. The elements MUST NOT to have spaces between, e.g. A is .- and not . -. Characters MUST have at least one space between. Additonal spaces are left over to indicate word boundaries. This means .- -... means AB and and .- -... means A B.
The conversion routines are designed to be stable and ignore/skip unknown input, so that you can write:
print as_ascii(Hello -- --- .-. ... . Perl!);
beware, though, a single . or - at the end will be interpreted as . respective - and thus become E or T. Use Convert::Morse::error() to check wether all went ok or not.
OUTPUT
The output will always consist of upper case letters or, in case of as_morse(), of [-. ].
ERRORS
Unknown tokens in the input are ignored/skipped. In these cases you get the last error message with Convert::Morse::error().
Version restrictions:
- Can not yet do Japanese code nor German Umlaute.
<<less
Download (0.006MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1178 downloads
Convert::Braille::English 0.05

Convert::Braille::English 0.05


Convert::Braille::English is a Perl module that can convert Between Braille Encodings. more>>
Convert::Braille::English is a Perl module that can convert Between Braille Encodings.

SYNOPSIS

use Convert::Braille;

print brailleAsciiToEnglish ( "HELLO" ), "n";
print brailleDotsToEnglish ( "12515123123135" ), "n";

EXPORTS
englishToBrailleUnicode
englishToBrailleAscii
englishToBrailleDots
brailleAsciiToEnglish
brailleDotsToEnglish
brailleUnicodeToEnglish

<<less
Download (0.008MB)
Added: 2006-08-04 License: Perl Artistic License Price:
1181 downloads
Convert::EBCDIC 0.06

Convert::EBCDIC 0.06


Convert::EBCDIC, ascii2ebcdic, ebcdic2ascii is a Perl module for string conversion between EBCDIC and ASCII. more>>
Convert::EBCDIC, ascii2ebcdic, ebcdic2ascii is a Perl module for string conversion between EBCDIC and ASCII.

SYNOPSIS

use Convert::EBCDIC;
$ascii_string = ebcdic2ascii($ebcdic_string);
$ebcdic_string = ascci2ebcdic($ascii_string);

$translator = new Convert::EBCDIC;
$translator = new Convert::EBCDIC($table);
$ascii_string = $translator->toascii($ebcdic_string);
$ebcdic_string = $translator->toebcdic($ascii_string);

$Convert::EBCDIC::ccsid819

This module can be used to import then functions ascii2ebcdic and/or ebcdic2ascii or in an Object mode.

Exported Functions:

ascii2ebcdic()
takes as the first argument a EBCDIC string that is to be converted to ASCII using default converion table.

ebcdic2ascii()
takes as the first argument a ASCII string that is to be converted to EBCDIC using default converion table.

Object methods:

new()
creates a new translator object. Will take an optional argument being a 256 character conversion table.

toascii()
takes and ASCII string and return and EBCDIC string.

toebcdic()
takes and EBCDIC string and return and ASCII string.

Translation tables:

$Convert::EBCDIC::ccsid819
Character Code Set ID 00819. This is the default on most systems.

$Convert::EBCDIC::ccsid1047
Character Code Set ID 01047. This is the default on OS390.

<<less
Download (0.005MB)
Added: 2006-08-18 License: Perl Artistic License Price:
1168 downloads
Convert::Bencode 1.03

Convert::Bencode 1.03


Convert::Bencode are functions for converting to/from bencoded strings. more>>
Convert::Bencode are functions for converting to/from bencoded strings.

SYNOPSIS

use Convert::Bencode qw(bencode bdecode);

my $string = "d4:ainti12345e3:key5:value4:type4:teste";
my $hashref = bdecode($string);

foreach my $key (keys(%{$hashref})) {
print "Key: $key, Value: ${$hashref}{$key}n";
}

my $encoded_string = bencode($hashref);
print $encoded_string."n";

This module provides two functions, bencode and bdecode, which encode and decode bencoded strings respectivly.

<<less
Download (0.010MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1181 downloads
Convert::Braille 0.05

Convert::Braille 0.05


Convert::Braille is a Perl module that can convert Between Braille Encodings. more>>
Convert::Braille is a Perl module that can convert Between Braille Encodings.

SYNOPSIS

use Convert::Braille;

print brailleAsciiToUnicode ( "HELLO" ), "n";
print brailleDotsToAscii ( "12515123123135" ), "n";

EXPORTS
brailleDotsToUnicode
brailleUnicodeToDots
brailleUnicodeToAscii
brailleAsciiToUnicode
brailleAsciiToDots
brailleDotsToAscii

<<less
Download (0.008MB)
Added: 2006-08-04 License: Perl Artistic License Price:
1177 downloads
Mail::Message::Convert::HtmlFormatPS 2.066

Mail::Message::Convert::HtmlFormatPS 2.066


Mail::Message::Convert::HtmlFormatPS can convert HTML into PostScript. more>>
Mail::Message::Convert::HtmlFormatPS can convert HTML into PostScript.

INHERITANCE

Mail::Message::Convert::HtmlFormatPS
is a Mail::Message::Convert
is a Mail::Reporter

SYNOPSIS

use Mail::Message::Convert::HtmlFormatPS;
my $af = Mail::Message::Convert::HtmlFormatPS->new;

my $postscript = $af->format($body);

Translate an HTML/XHTML message body into a postscript body using HTML::FormatPS.

<<less
Download (0.57MB)
Added: 2006-08-03 License: Perl Artistic License Price:
1178 downloads
Convert::yEnc::Decoder 1.02

Convert::yEnc::Decoder 1.02


Convert::yEnc::Decoder is a Perl module that decodes yEncoded files. more>>
Convert::yEnc::Decoder is a Perl module that decodes yEncoded files.

SYNOPSIS

use Convert::yEnc::Decoder;

$decoder = new Convert::yEnc::Decoder;
$decoder = new Convert::yEnc::Decoder $dir;

$decoder->out_dir($dir);

eval
{
$decoder->decode( $file);
$decoder->decode(*FILE);
$decoder->decode;
};
print $@ if $@;

$name = $decoder->name;
$file = $decoder->file;
$size = $decoder->size;

$ybegin = $decoder->ybegin;
$ypart = $decoder->ypart;
$yend = $decoder->yend;

ABSTRACT

yEnc decoder

Convert::yEnc::Decoder decodes a yEncoded file and writes it to disk. Methods are provided for returning information about the decoded file.

<<less
Download (0.056MB)
Added: 2006-08-23 License: Perl Artistic License Price:
683 downloads
Mail::Addressbook::Convert::Eudora 1.1

Mail::Addressbook::Convert::Eudora 1.1


Mail::Addressbook::Convert::Eudora is a Perl module that can convert to and from Eudora addressbooks. more>>
Mail::Addressbook::Convert::Eudora is a Perl module that can convert to and from Eudora addressbooks.

SYNOPSIS

use strict;
use Eudora;
my $Eudora = new Eudora();
my $EudoraInFile ="eudoraSample.txt"; # name of the file containing the Eudora data
# Convert Eudora to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $Eudora->scan($EudoraInFile);
# This will also work
#my @EudoraInArray = @arrayContainingTheEudoraData;
#my $raIntermediate = $Eudora->scan(@EudoraInArray);
# Convert back to Eudora
my $raEudorafOut = $Eudora->output($raIntermediate);
print join "", @$raIntermediate;
print "nnnn";
print join "", @$raEudorafOut ;

<<less
Download (0.030MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1180 downloads
Convert::Number::Digits 0.03

Convert::Number::Digits 0.03


Convert::Number::Digits is a Perl module that convert Digits Between the Scripts of Unicode. more>>
Convert::Number::Digits is a Perl module that convert Digits Between the Scripts of Unicode.

SYNOPSIS

use utf8;
require Convert::Number::Digits;

my $number = 12345;
my $d = new Convert::Number::Digits ( $number );
print "$number => ", $d->toArabic, "n";

my $gujarti = $d->toGujarti;
my $khmer = reverse ( $d->toKhmer );
$d->number ( $khmer ); # reset the number
print "$number => $gujarti => ", $d->number, " => ", $n->convert, "n";

The Convert::Number::Digits will convert a sequence of digits from one script supported in Unicode, into another. UTF-8 encoding is used for all scripts.

<<less
Download (0.005MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1178 downloads
Convert::Cyr

Convert::Cyr


Convert::Cyr, chcp is a Perl module for change cyrillic code page of a text. more>>
Convert::Cyr, chcp is a Perl module for change cyrillic code page of a text.

SYNOPSIS

use Convert::Cyr qw(chcp); $converted_string=chcp($string, $maxlen, $from, $to);

ABSTRACT

Convert::Cyr, chcp - change cyrillic code page of a text.

chcp takes as the first argument a string that is to be converted. It returns the converted string. Second argument is the lenght of the string. Third is source codepage. Forth is target codepage.

Original description from PHP function:

convert_cyr_string (string str, string from, string to) "This function returns the given string converted from one Cyrillic character set to another. The from and to arguments are single characters that represent the source and target Cyrillic character sets."

The supported types are: k - koi8-r w - windows-1251 i - iso8859-5 a - x-cp866 d - x-cp866 m - x-mac-cyrillic

<<less
Download (0.005MB)
Added: 2006-08-17 License: Perl Artistic License Price:
1164 downloads
Convert::ASN1 0.20

Convert::ASN1 0.20


Convert::ASN1 is an ASN.1 Encode/Decode library. more>>
Convert::ASN1 is an ASN.1 Encode/Decode library.

SYNOPSYS

use Convert::ASN1;

$asn = Convert::ASN1->new;
$asn->prepare(q<

[APPLICATION 7] SEQUENCE {
int INTEGER,
str OCTET STRING
}

>);

$pdu = $asn->encode( int => 7, str => "string");

$out = $asn->decode($pdu);
print $out->{int}," ",$out->{str},"n";

use Convert::ASN1 qw(:io);

$peer = asn_recv($sock,$buffer,0);
$nbytes = asn_read($fh, $buffer);
$nbytes = asn_send($sock, $buffer, $peer);
$nbytes = asn_send($sock, $buffer);
$nbytes = asn_write($fh, $buffer);
$buffer = asn_get($fh);
$yes = asn_ready($fh)

Convert::ASN1 encodes and decodes ASN.1 data structures using BER/DER rules.

<<less
Download (0.060MB)
Added: 2006-08-22 License: Perl Artistic License Price:
1178 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5