Main > Free Download Search >

Free hamster font manager 1.02 software for linux

hamster font manager 1.02

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1852
LDAP Account Manager 2.6.0 / 2.7.0 RC1

LDAP Account Manager 2.6.0 / 2.7.0 RC1


LDAP Account Manager RC1 is a webfrontend for managing accounts stored in an LDAP directory. more>> <<less
Added: 2009-07-27 License: GPL Price: FREE
downloads
SQLite Manager 0.5.0 Beta 3

SQLite Manager 0.5.0 Beta 3


SQLite Manager is an all-in-one and very useful application which can manage all your sqlite databases using this lightweight extension for firefox, thunderbird, sunbird, seamonkey, songbird, komodo, flock etc. more>> <<less
Added: 2009-07-23 License: MPL Price: FREE
62 downloads
 
Other version of SQLite Manager
SQLite Manager 0.5.0 Beta 3Mrinal Kant - SQLite Manager is an excellent and extremely useful program which
Price: FREE
License:MPL
Download
62 downloads
Added: 2009-07-23
The Cookies Are Falling! 1.02

The Cookies Are Falling! 1.02


The Cookies Are Falling! 1.02 brings you another tetris clone. more>> The Cookies Are Falling! 1.02 brings you another tetris clone. The game is written in Python and PyGame.

Enhancements:

Two bugs are realized:

  • If you are about to fill a row and you press the down key, the row clearing will get all messed up.
  • If you press the space key the moment a new shape is created, you'll lose the game.

Requirements:

  • Python
  • Pygame
<<less
Added: 2009-06-27 License: Freeware Price: FREE
1 downloads
Ubuntu Bootloader Manager 0.2

Ubuntu Bootloader Manager 0.2


Ubuntu Bootloader Manager is a graphical user interface for configuring GRUBs menu.lst. more>>
Ubuntu Bootloader Manager is a graphical user interface (GUI) for configuring GRUBs menu.lst.

This app is still very alpha, use at your own risk and make sure to make a backup of our grub config file (/boot/grub/menu.lst).
<<less
Download (MB)
Added: 2007-08-20 License: GPL (GNU General Public License) Price:
699 downloads
Phone Manager 0.10

Phone Manager 0.10


Phone Manager is a program created to allow you to control aspects of your mobile phone. more>>
Phone Manager project is a program created to allow you to control aspects of your mobile phone.
Main features:
- Runs in the background; indicates status on the panel notification area.
- Display on-screen alert when text message (SMS) arrives
- Text message (SMS) sending facility
<<less
Download (0.88MB)
Added: 2007-08-20 License: GPL (GNU General Public License) Price:
512 downloads
Goggles Music Manager 0.8.0

Goggles Music Manager 0.8.0


Goggles Music Manager is a music collection manager and player. more>>
Goggles Music Manager is a music collection manager and player. Goggles Music Manager allows you to easily manage your music collection.

Each song in your collection is organized according to Artist and Album. As of now, Goggles Music Manager supports Ogg Vorbis and MP3 files.

<<less
Download (0.11MB)
Added: 2007-08-16 License: GPL (GNU General Public License) Price:
802 downloads
Password Manager Daemon 0.12

Password Manager Daemon 0.12


Password Manager Daemon is a daemon that serves data to application via a socket. more>>
Password Manager Daemon is a daemon that serves data to application via a socket. The data is stored in an encrypted XML file. A work in progress.

<<less
Download (0.49MB)
Added: 2007-08-14 License: GPL (GNU General Public License) Price:
803 downloads
Games::OpenGL::Font::2D 0.07

Games::OpenGL::Font::2D 0.07


Games::OpenGL::Font::2D module can load/render 2D colored bitmap fonts via OpenGL. more>>
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 events!
$font->screen_width( $app->width() );
$font->screen_height( $app->width() );

$font->pre_output(); # setup rendering for font

$font->color( [ 0,1,0] ); # yellow as array ref
$font->color( 1,0,0 ); # or red
$font->alpha( 0.8 ); # nearly opaque

# half-transparent, red
$font->output (100,100, Hello OpenGL!, [ 1,0,0], 0.5 );
# using the $fonts color and alpha
$font->output (100,200, Hello OpenGL! );

$font->transparent( 1 ); # render font background transparent

$font->spacing_y( 16 ); # render vertical (costly rebuild!)
$font->spacing_x( 0 ); # (costly rebuild!)
$font->output (100,200, Hello OpenGL! );

$font->post_output(); # if wanted, you can reset OpenGL

EXPORTS

Exports nothing on default. Can export on demand the following:

FONT_ALIGN_LEFT
FONT_ALIGN_RIGHT
FONT_ALIGN_CENTER
FONT_ALIGN_TOP
FONT_ALIGN_BOTTOM

<<less
Download (0.022MB)
Added: 2007-08-13 License: Perl Artistic License Price:
809 downloads
FakeBold Font patches for QT 4.3.x 0.1

FakeBold Font patches for QT 4.3.x 0.1


FakeBold Font patches for QT 4.3.x fake a bold font style and output for some fonts without bold support. more>>
FakeBold Font patches for QT 4.3.x fake a bold font style and output for some fonts without bold support.

It is specially and very useful for CJK fonts. actually it works with all fonts without bold style.

Here I use FT_Glyph_Embolden to get a bold glyph.

These patches is not related to font rendering result, if you want to control font rendering result, please control fontconfig configurations.

Screenshot1: shows bold/bolditalic support with "SOng" and "Hei" Chinese font.

Screenshot1: shows bold/italic support for Chinese,Korean,Yi,Tibetan with Sans fontset(Song,SIL Yi, Tibetan machine uni fonts)

<<less
Download (0.004MB)
Added: 2007-08-10 License: GPL (GNU General Public License) Price:
809 downloads
HTML::ActiveLink 1.02

HTML::ActiveLink 1.02


HTML::ActiveLink module dynamically activate HTML links based on URL. more>>
HTML::ActiveLink module dynamically activate HTML links based on URL.

SYNOPSIS

use HTML::ActiveLink;

my $al = new HTML::ActiveLink;

print $al->activelink(@html_doc);

I dont know about you, but one of the main problems I have with HTML content is getting images and links to "turn on" depending on the current URL location. That is, I like authoring one set of templates, something like this:

[ < a href="/" >Home< /a > | < a href="/faq/" >FAQ< /a >
| < a href="/about/" >About Us< /a > ]

And then having the appropriate link turned on, so that if Im running inside the /home/ directory, the above turns into this:

[ < font color="red" >Home< /font > | < a href="/faq/" >FAQ< /a >
| < a href="/about/" >About Us< /a > ]

Without having to write a whole bunch of ifs, or writing a bunch of different sets of templates, etc.

This module handles the above process automatically. By default, it will activate any text or images with < a href > tags around them by stripping the link off and changing the appearance of text and names of images. All transformations are fully customizable, allowing you to choose how your active text should look. HTML::ActiveLink can even automatically construct imagemaps depending on your location.
In the simplest case, all you have to do is create a new object by a call to new(), and then call the main activelink() function which takes care of the transformation. To customize what the output HTML looks like, keep reading...

<<less
Download (0.006MB)
Added: 2007-08-07 License: Perl Artistic License Price:
809 downloads
Font::FreeType::Glyph 0.03

Font::FreeType::Glyph 0.03


Font::FreeType::Glyph is a Perl module that contains glyphs from font typefaces loaded from Font::FreeType. more>>
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 = $face->glyph_from_char(A);
my $glyph = $face->glyph_from_char_code(65);
# Render into an array of strings, one byte per pixel.
my ($bitmap, $left, $top) = $glyph->bitmap;
# Read vector outline.
$glyph->outline_decompose(
move_to => sub { ... },
line_to => sub { ... },
conic_to => sub { ... },
cubic_to => sub { ... },
);
This class represents an individual glyph (character image) loaded from a font. See Font::FreeType::Face for how to obtain a glyph object, in particular the glyph_from_char_code() and glyph_from_char() methods.
Things you an do with glyphs include:
- Get metadata about the glyph, such as the size of its image and other metrics.
- Render a bitmap image of the glyph (if its from a vector font) or extract the existing bitmap (if its from a bitmap font), using the bitmap() method.
- Extract a precise description of the lines and curves that make up the glyphs outline, using the outline_decompose() method.
<<less
Download (0.093MB)
Added: 2007-08-07 License: Perl Artistic License Price:
812 downloads
Essential Contact Manager 0.2.1 Alpha

Essential Contact Manager 0.2.1 Alpha


Essential Contact Manager allows you to keep track of your contacts easily and efficiently. more>>
Essential Contact Manager projects goal is to offer a beautiful and intuitive interface, allowing you to keep track of your contacts easily and efficiently.

Comments and suggestion are appreciated.

<<less
Download (44.1MB)
Added: 2007-07-29 License: GPL (GNU General Public License) Price:
821 downloads
gnome-kernel-manager 0.0.1

gnome-kernel-manager 0.0.1


gnome-kernel-manager is a tool for managing kernel modules and more. more>>
gnome-kernel-manager is a tool for managing kernel modules and more.
gnome-kernel-manager is a gui for managing the kernel modules, .... Only Linux kernel is supported.
Main features:
- Shows the list of loaded modules.
- Shows the list of all installed modules.
- Shows information about modules.
- Supports (un)loading modules.
<<less
Download (0.27MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
824 downloads
Lyrics Manager 0.2.8

Lyrics Manager 0.2.8


Lyrics Manager is an amaroK script that manages the song lyrcis. more>>
Lyrics Manager is an amaroK script that manages the song lyrcis.
Main features:
- Edit lyrics with your favorite editor
- Export lyrics to file
- Import lyrics from file
You can setup your editor (for editing) and directory with texts (for import and export) via script configuration. Script will take care of html break tags while importing and exporting lyrics text, so you can edit and store plain text with correct rendering it in amaroK.
<<less
Download (0.015MB)
Added: 2007-07-19 License: GPL (GNU General Public License) Price:
833 downloads
Extended Cookie Manager 0.8

Extended Cookie Manager 0.8


Extended Cookie Manager is a Firefox extension that detects if a website sends a cookie and shows if this cookie was blocked. more>>
Extended Cookie Manager is a Firefox extension that detects if a website sends a cookie and shows if this cookie was blocked, allowed or only allowed for session in the statusbar of your browser. It also enables you to change the cookie permissions of websites on demand.

Extended Cookie Manager is a much easier and less bothering way to handle cookies than letting Firefox ask you everytime to allow a cookie or not.

Languages: English, Dutch, German.

<<less
Download (0.015MB)
Added: 2007-07-19 License: MPL (Mozilla Public License) Price:
847 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5