Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.218.175 Times

Recreate Logo Find Font freeware
Filter: All | Freeware | Demo
 

Recreate Logo Find Font

< 1 2 3 4 5 > 
Added: August 13, 2010 | Visits: 1.494

Test::File::Find::Rule Test::File::Find::Rule is a Perl module to test files and directories with File::Find::Rule. SYNOPSIS use Test::File::Find::Rule; # Check that all files in $dir have sensible names my $rule = File::Find::Rule ->file ->relative ->not_name(qr/^[w]{1,8}.[a-z]{3,4}$/);...



Platforms: *nix

License: Freeware Size: 3.07 KB Download (103): Test::File::Find::Rule Download

Added: March 18, 2010 | Visits: 1.452

File::Find File::Find is a Perl module to traverse a directory tree. SYNOPSIS use File::Find; find(&wanted, @directories_to_search); sub wanted { ... } use File::Find; finddepth(&wanted, @directories_to_search); sub wanted { ... } use File::Find; find({ wanted => &process, follow => 1 }, .);...





Platforms: *nix

License: Freeware Size: 12.2 MB Download (96): File::Find Download

Added: June 04, 2010 | Visits: 1.812

Font::TTF::Scripts::AP Font::TTF::Scripts::AP is a memory representation of a TTFBuilder Attachment Point database (APDB). SYNOPSIS use Font::TTF::Scripts::AP; $ap = Font::TTF::Scripts::AP->read_font($ttf_file, $ap_file, %opts); $ap->make_classes(); INSTANCE VARIABLES cmap Reference to the Microsoft cmap...


Platforms: *nix

License: Freeware Size: 102.4 KB Download (201): Font::TTF::Scripts::AP Download

Added: July 15, 2010 | Visits: 1.359

Font::FreeType::Glyph Font::FreeType::Glyph is a Perl module that contains glyphs from font typefaces loaded from Font::FreeType. SYNOPSIS use Font::FreeType; my $freetype = Font::FreeType->new; my $face = $freetype->face(Vera.ttf); $face->set_char_size(24, 24, 100, 100); my $glyph =...


Platforms: *nix

License: Freeware Size: 95.23 KB Download (130): Font::FreeType::Glyph Download

Added: July 20, 2010 | Visits: 1.196

File::Find::Rule::XPath File::Find::Rule::XPath is a Perl module that contains rule to match on XPath expressions. SYNOPSIS use File::Find::Rule::XPath; my @files = File::Find::Rule->file ->name(*.dkb) ->xpath( //section/title[contains(., "Crustacean")] ) ->in($root); This module extends File::Find::Rule to...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (102): File::Find::Rule::XPath Download

Added: May 05, 2010 | Visits: 1.152

Gnome Font Sampler Gnome Font Sampler lets you browse your installed fonts using whatever color, size, attributes (Bold/Italics/Underline), and example text you like.. linuxadvocate.org


Platforms: *nix

License: Freeware Size: 307.2 KB Download (96): Gnome Font Sampler Download

Added: November 24, 2010 | Visits: 1.494

Language::Logo Language::Logo Perl module is an implementation of the Logo programming language. SYNOPSIS use Language::Logo; my $lo = new Logo(update => 20); $lo->command("setxy 250 256"); $lo->command("color yellow"); $lo->command("pendown"); # Draw a circle for (my $i = 0; $i < 360; $i += 10) {...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (209): Language::Logo Download

Added: May 26, 2010 | Visits: 1.034

Font Configuration Library Fontconfig is a library for configuring and customizing font access. Font Configuration Library contains two essential modules, the configuration module which builds an internal configuration from XML files and the matching module which accepts font patterns and returns the nearest matching...


Platforms: *nix

License: Freeware Size: 1.1 MB Download (98): Font Configuration Library Download

Added: August 04, 2010 | Visits: 1.236

Font::TTF::Glyph Font::TTF::Glyph is a Perl module that holds a single glyphs information. This is a single glyph description as held in a TT font. On creation only its header is read. Thus you can get the bounding box of each glyph without having to read all the other information. INSTANCE VARIABLES In...


Platforms: *nix

License: Freeware Size: 133.12 KB Download (117): Font::TTF::Glyph Download

Added: March 12, 2010 | Visits: 955

Email::Find Email::Find allows you to find RFC 822 email addresses in plain text. Email::Find is a module for finding a subset of RFC 822 email addresses in arbitrary text (see "CAVEATS"). The addresses it finds are not guaranteed to exist or even actually be email addresses at all (see "CAVEATS"), but...


Platforms: *nix

License: Freeware Size: 39.94 KB Download (132): Email::Find Download

Added: November 09, 2010 | Visits: 852

MP3::Find::Filesystem MP3::Find::Filesystem is a File::Find-based backend to MP3::Find. SYNOPSIS use MP3::Find::Filesystem; my $finder = MP3::Find::Filesystem->new; my @mp3s = $finder->find_mp3s( dir => /home/peter/music, query => { artist => ilyaimy, album => myxomatosis, }, ignore_case => 1, );.


Platforms: *nix

License: Freeware Size: 29.7 KB Download (96): MP3::Find::Filesystem Download

Added: August 15, 2010 | Visits: 952

MP3::Find::Base MP3::Find::Base is a base class for MP3::Find backends. SYNOPSIS package MyFinder; use base MP3::Find::Base; sub search { my $self = shift; my ($query, $dirs, $sort, $options) = @_; # do something to find and sort the mp3s... my @results = do_something(...); return @results; }...


Platforms: *nix

License: Freeware Size: 29.7 KB Download (89): MP3::Find::Base Download

Added: July 13, 2010 | Visits: 1.088

MP3::Find MP3::Find is a Perl module to search and sort MP3 files based on their ID3 tags. SYNOPSIS # select with backend you want use MP3::Find qw(Filesystem); print "$_n" foreach find_mp3s( dir => /home/peter/cds, query => { artist => ilyaimy, title => deep in the am, }, ignore_case => 1,...


Platforms: *nix

License: Freeware Size: 29.7 KB Download (96): MP3::Find Download

Added: January 24, 2010 | Visits: 1.688

Games::OpenGL::Font::2D Games::OpenGL::Font::2D module can load/render 2D colored bitmap fonts via OpenGL. SYNOPSIS use Games::OpenGL::Font::2D; my $font = Games::OpenGL::Font::2D->new( file => font.bmp ); use SDL::App::FPS; my $app = SDL::App::FPS->new( ... ); # dont forget to change these on resize...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (171): Games::OpenGL::Font::2D Download

Added: January 21, 2010 | Visits: 1.171

NetAddr::IP::Find NetAddr::IP::Find is a Perl module to find IP addresses in plain text. SYNOPSIS use NetAddr::IP::Find; $num_found = find_ipaddrs($text, &callback); This is a module for finding IP addresses in plain text. Functions NetAddr::IP::Find exports one function, find_ipaddrs(). It works very...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (96): NetAddr::IP::Find Download

Added: April 14, 2010 | Visits: 1.194

File::Find::Rule SYNOPSIS use File::Find::Rule; # find all the subdirectories of a given directory my @subdirs = File::Find::Rule->directory->in( $directory ); # find all the .pm files in @INC my @files = File::Find::Rule->file() ->name( *.pm ) ->in( @INC ); # as above, but without method chaining my...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (101): File::Find::Rule Download

Added: April 02, 2010 | Visits: 1.366

File::Find::Similars File::Find::Similars is a Similar files locator. SYNOPSIS use File::Find::Similars; File::Find::Similars->init(0, @ARGV); similarity_check_name(); Similar-sized and similar-named files are picked as suspicious candidates of duplicated files. What descirbes it better than a actual...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (95): File::Find::Similars Download

Added: May 19, 2010 | Visits: 2.003

LinuxPowered Logo LinuxPowered Logo is based off of static-slacks "LinuxPowered Logo" - See change log for update ive done. All coding credit goes to him. Static-slack, Please dont get angry! Pardon the crappy screenshot, the text is much more sharp than that. LATEST: Made it into a SKZ for easier use.....


Platforms: *nix

License: Freeware Size: 11.26 KB Download (287): LinuxPowered Logo Download

Added: May 11, 2010 | Visits: 2.644

Php Logo Interpreter Php Logo Interpreter project is a logo language interpreter. This package implements an interpreter of the Logo programming language. It implements almost all features of the Logo programming language, including procedure definition, recursion call, etc.. The output of the execution of logo...


Platforms: *nix

License: Freeware Download (273): Php Logo Interpreter Download

Released: December 26, 2010  |  Added: January 02, 2011 | Visits: 1.716

Instant File Find Free Instant File Find is a search tool that lets you find files instantly on your computer. It is designed to speed up your daily work by helping you locate files instantly. With quick buttons, you can list all music or document files (or other types) on your computer instantly. You can get search...


Platforms: Windows

License: Freeware Size: 1.25 MB Download (1576): Instant File Find Free Download

< 1 2 3 4 5 >