Main > Free Download Search >

Free pt software for linux

pt

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 33
argox-pt 1.0

argox-pt 1.0


argox-pt is software for providing support for portable terminals (PT-10 and PT-12) manufactured by Argox under Linux. more>>
argox-pt is software for providing support for portable terminals (PT-10 and PT-12) manufactured by Argox under Linux.

argox-pt project is based on a kernel module which allows detection of PTs by kernel 2.6 and provides functions for reading and writing to the device as if it were a file.
<<less
Download (MB)
Added: 2006-11-21 License: GPL (GNU General Public License) Price:
1084 downloads
pt-helper 0.1.1

pt-helper 0.1.1


pt-helper is a program designed to help people perform physical therapy exercises. more>>

pt-helper 0.1.1 with its excellent features will surely help you in daily life. It is actually a program designed to help you perform physical therapy exercises. It reads in exercise information from a file, and then it uses this information to generate a random physical therapy routine. The program can either:

  • Read the names of the exercises to you as you perform them
  • Generate the routine as text (which you can copy into a file and print out)

When combined with a wireless mouse or other input device, pt-helper becomes a powerful tool for conducting a physical therapy routine.

Installation Instructions:

  • pt-helper is written in Python, so you'll need a Python interpreter to get anything working. It also depends on several Python modules;
  • If you do have all the dependencies, you should be able to run the program just by running the pt-helper script with a Python interpreter. From a shell, the following command should do the trick: $ python pt-helper.py
  • Users of graphical file managers can probably double-click the pt-helper script to achieve the same effect.

Requirements:

  • Python
  • PyGame
  • Festival Speech Synthesis System
<<less
Added: 2007-05-01 License: GPL Price: FREE
1 downloads
Gslapt 0.3.18

Gslapt 0.3.18


Gslapt is a GTK version of slapt-get. more>>
This is a GTK version of slapt-get. Gslapt project requires slapt-get.
To build from source, you must have these packages installed:
- autoconf
- automake
- libtool
- m4
- gettext
- gettext-tools
- pkgconfig
- glibc
- atk
- glib2
- gtk+2
- pango
- x11
- zlib
- openssl
- curl
- slapt-get
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details.
Main features:
- added FAQs to the FAQ
- set package listing columns to be resizeable
- removed beta warning dialog
- the clear button only rebuilds the view when it has to, as its so expensive
- added "not enough free space" notification
- updated translations
- added more notification for errors during source updates and transaction messages for missing deps and conflicts via new error api
- formatting updates
- added pt translation by Pedro Pinto
- updated to compile against current slapt-get cvs
- fixed bug that allowed installing multiple versions of a package
- added accelerators, ctrl [i,u] for (re-)install/upgrade, ctrl [r] for remove, and ctrl [x] for exclude
- fixed crash when enabling the remove button on certain packages
- requires slapt-get >= 0.9.9k
- fixed upgrade problem
- updated transaction code to follow new transaction_t struct use of queue
- borrowed Ubuntus add/remove applications icon for new gslapt icon
- fixed issue with reinstall request not completing
- statusbar now gives notification when there are pending things to execute
<<less
Download (0.089MB)
Added: 2007-07-10 License: GPL (GNU General Public License) Price:
846 downloads
Crypt::OpenPGP::Plaintext 1.03

Crypt::OpenPGP::Plaintext 1.03


Crypt::OpenPGP::Plaintext is a plaintext, literal-data packet. more>>
Crypt::OpenPGP::Plaintext is a plaintext, literal-data packet.

SYNOPSIS

use Crypt::OpenPGP::Plaintext;

my $pt = Crypt::OpenPGP::Plaintext->new(
Data => $data,
Filename => $file,
);
my $serialized = $pt->save;

my $pt = Crypt::OpenPGP::Plaintext->parse($buffer);

Crypt::OpenPGP::Plaintext implements plaintext literal-data packets, and is essentially just a container for a string of octets, along with some meta-data about the plaintext.

USAGE

Crypt::OpenPGP::Plaintext->new( %arg )

Creates a new plaintext data packet object and returns that object. If there are no arguments in %arg, the object is created with an empty data container; this is used, for example, in parse (below), to create an empty packet which is then filled from the data in the buffer.

If you wish to initialize a non-empty object, %arg can contain:

Data

A block of octets that make up the plaintext data.

This argument is required (for a non-empty object).

Filename

The name of the file that this data came from, or the name of a file where it should be saved upon extraction from the packet (after decryption, for example, if this packet is going to be encrypted).

Mode

The mode in which the data is formatted. Valid values are t and b, meaning "text" and "binary", respectively.

This argument is optional; Mode defaults to b.

$pt->save

Returns the serialized form of the plaintext object, which is the plaintext data, preceded by some meta-data describing the data.

Crypt::OpenPGP::Plaintext->parse($buffer)

Given $buffer, a Crypt::OpenPGP::Buffer object holding (or with offset pointing to) a plaintext data packet, returns a new Crypt::OpenPGP::Ciphertext object, initialized with the data in the buffer.

$pt->data

Returns the plaintext data.

$pt->mode

Returns the mode of the packet (either t or b).

<<less
Download (0.095MB)
Added: 2007-08-17 License: Perl Artistic License Price:
799 downloads
GPlot 1.2

GPlot 1.2


GPlot provides a convenient front-end for gnuplot. more>>
GPlot provides a convenient front-end for gnuplot. GPlot GUI accepts a large set of options to generate a single plot of one or more sets of data (overlaid as necessary). This adds no new functionality to gnuplot, but rather makes it easier to generate gnuplot input.
Sometimes the simplest things can be remarkably difficult to get done. That was my reaction when I first tried to make a few simple plots. I knew about gnuplot, but it took way too long to make my first useful plot.
Perhaps the most frustrating task was trying to do something as simple (to me) as "plot this data with a blue line" or maybe the dauntingly (:-) complex "plot this data with a blue line using triangles for the data points". Eventually, I figured out one answer was this fragment:
set linestyle 10 lt 3 lw 1 pt 8 ps 0.55 plot my.data with linespoints linestyle 10
Alright, Im fed up! No more trying to figure out lt 3 versus lt 5 and pt 3 versus pt 22!
I just want a simple command I can understand that does what I want:
gplot.pl -color red -point triangle my.data
Sure gplot.pl cant handle five or ten million complexities that gnuplot can -- but I dont care. All I want is a way to plot some simple columnar data and get a graphic or
Postscript file of it and I dont want to spend very many seconds figuring it out. If this is what you want too, gplot.pl is for you too.
Examples:
# plot data in 1a.data. Show as X window
gplot.pl 1a.data
# plot 2 sets of data. Show as X window
gplot.pl 1a.data 2a.data
# plot data in 1a.data. Create a Postscript file /tmp/gplot.ps
gplot.pl -type ps 1a.data
# plot data in 1a.data. Create a Postscript file
gplot.pl -type ps -outfile 1a.ps 1a.data
# plot data in 1a.data. Annotate it a little
gplot.pl -title "This is my data" -ylabel "Vertical Axis"
-xlabel "Horizontal Axis" 1a.data
# plot 3 sets of data, specify colors and points
gplot.pl -color green -point uptriangle 1a.data
-color blue -point box 2a.data
-color green -point circle 3a.data
Enhancements:
- This release adds support for gnuplot 4.0.
- It adds support for JPEG output files.
- There is no need to upgrade unless you are on gnuplot 4.0.
- Stay on release 1.1 if you are using gnuplot 3.x.
<<less
Download (0.63MB)
Added: 2005-12-16 License: GPL (GNU General Public License) Price:
1410 downloads
PicoStreamer 2.2

PicoStreamer 2.2


PicoStreamer is a complete server for live audio/video streaming. more>>
PicoStreamer is a complete server for live audio/video streaming. It can stream MP3, AAC, and video live using Flash FLV. PicoStreamer does not require any Flash server. It only needs a Web server with Perl and PHP. It requires neither expensive dedicated servers nor compilation on the target machine.
A source client (for Win32) is included. A management/playing framework written in PHP makes PicoStreamer simple to use. The PicoIcy component acts as a local shoutcast server emulator, so you can use your preferred shoutcast source client to stream or stream Flash format directly from the Web.
Enhancements:
- Added live flash audio/video streaming support.
- Added Flash encoder.
- Added Flash player also for mp3.
- Added Brasilian (PT) language.
- Added dynamic playlist chooser.
- Added content-length managing.
- PicoIcy now in tray-bar.
- Fixed list blocking on weird chars.
- Removed php ctype_digits dependence.
- Removed perl html::entitites dependence.
- Fixed many minor bugs.
<<less
Download (0.33MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1135 downloads
Perltidy 20070801

Perltidy 20070801


perltidy is a Perl script beautifier. more>>
Perltidy is a Perl script which indents and reformats Perl scripts to make them easier to read. If you write Perl scripts, or spend much time reading them, you will probably find it useful.

Configuration Files

While style preferences vary, most people would agree that it is important to maintain a uniform style within a script, and this is a major benefit provided by perltidy. Once you have decided on which, if any, special options you prefer, you may want to avoid having to enter them each time you run it. You can do this by creating a special file named .perltidyrc in either your home directory, your current directory, or certain system-dependent locations. (Note the leading ``. in the file name).

A handy command to know when you start using a configuration file is

perltidy -dpro

which will dump to standard output the search that perltidy makes when looking for a configuration file, and the contents of the one that it selects, if any. This is one of a number of useful ``dump and die commands, in which perltidy will dump some information to standard output and then immediately exit. Others include -h, which dumps help information, and -v, which dumps the version number.

Another useful command when working with configuration files is

perltidy -pro=file

which causes the contents of file to be used as the configuration file instead of a .perltidyrc file. With this command, you can easily switch among several different candidate configuration files during testing.

This .perltidyrc file is free format. It is simply a list of parameters, just as they would be entered on a command line. Any number of lines may be used, with any number of parameters per line, although it may be easiest to read with one parameter per line. Blank lines are ignored, and text after a # is ignored to the end of a line.

Here is an example of a .perltidyrc file:

This is a simple of a .perltidyrc configuration file
This implements a highly spaced style
-bl # braces on new lines
-pt=0 # parens not tight at all
-bt=0 # braces not tight
-sbt=0 # square brackets not tight

If you experiment with this file, remember that it is in your directory, since if you are running on a Unix system, files beginning with a ``. are normally hidden.

If you have a .perltidyrc file, and want perltidy to ignore it, use the -npro flag on the command line.

<<less
Download (0.31MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
818 downloads
STUX 1.0

STUX 1.0


STUX is a bootable CD with a collection of GNU/Linux software. more>>
STUX is a bootable CD with a collection of GNU/Linux software, automatic hardware detection, and support for many graphics cards, sound cards, SCSI and USB devices and other peripherals.
Stux OS target is to build a Live CD similar to KNOPPIX but based on Slackware Linux.
Main features:
- Window Managers: KDE 3.1, Gnome 2.4, fvwm2, fvwm95, WindowMaker, Twm
- Browsers: Mozilla 1.6, Konqueror, Galeon, Nautilus, Lynx, KGet, wget, ...
- Mail clients: Mozilla Mail, KMail, mail, ...
- News readers: Mozilla News, Knode, Pan, ...
- Office, Word Processing, Editors: Open Office 1.1.0, KOffice, AbiWord, Kedit, KWrite, Kate, Xpdf, ...
- Services: Apache 1.3.28, ProFTPd 1.2.8p, Ample, Samba, Secure Shell, MySqld
- Multimedia: VideoLan Client 0.5.2, XawTV, gqRadio, Xine,...
- Graphics: the Gimp, KPaint, XPaint,...
- Developing: gcc 3.2.3, g++, J2sdk 1.4.2, perl 5.8.0, python 2.3.1, php 4.3.3, ...
- IRC Client: Kopete, KSirc, Chatzilla!
- AIM Client: Kopete, Kit
- ICQ Client: Kopete
- Peer 2 Peer/File sharing: BitTorrent, xMule
- Data Base: mysql 4.0.15a
- Web Applications: phpMyAdmin 2.5.5
- KDE Languages: AF, AR, BG, BS, CA, CS, DA, DE, EL, EN, EN_GB, EO, ES, ET, EU, FA, FI, FR, HE, HR, HU, IS, IT, JA, LT, MK, MT, NB, NL, NN, NSO, PL, PT, PT_BR, RO, RU, SE, SK, SL, SR, SS, SV, TA, TH, TR, UK, VEN, VI, XH, ZH_CN, ZH_TW, ZU
Enhancements:
- Upgraded to Slackware current as at 1 Jun 2007 and KNOPPIX live CD 5.1.1 (kernel 2.6.19); fixed problem with installation on SATA hard disks; all STUX utilities deeply reviewed; NVIDIA proprietary driver updated to 1.0-9755 + legacy driver 1.0-9631 for old cards; save live CD persistent configuration on ReiserFS partitions; install compressed image on ReiserFS partitions; Acx wireless firmware upgraded; fully integrates with other pre-installed operating systems; Compiz 0.5.0; fully VMware/QEMU compatible.
<<less
Download (MB)
Added: 2007-06-06 License: GPL (GNU General Public License) Price:
872 downloads
gFTP 2.0.18

gFTP 2.0.18


gFTP is a free multithreaded file transfer client for *NIX based machines running X11R6 or later. more>>
gFTP is a free multithreaded file transfer client for *NIX based machines running X11R6 or later. gFTP has text and GTK+ 1.2/2.x interfaces and supports the FTP, FTPS (control connection only), HTTP, HTTPS, and SSH protocols and has FTP and HTTP proxy server support. It supports UNIX, EPLF, Novell, MacOS, VMS, MVS, and NT (DOS) style directory listings, and has a bookmarks menu that allows you to quickly connect to remote sites. The code is fully internationalized and there are currently 40 translations available.
Main features:
- Distributed under the terms of the GNU Public License Agreement
- Written in C and has a text interface and a GTK+ 1.2/2.x interface
- Supports the FTP, FTPS (control connection only), HTTP, HTTPS and SSH protocols
- FTP and HTTP proxy server support
- Supports FXP file transfers (transfering files between 2 remote servers via FTP)
- Supports UNIX, EPLF, Novell, MacOS, VMS, MVS and NT (DOS) style directory listings
- Bookmarks menu to allow you to quickly connect to remote sites
- Fully Internationalized. Here are the followoing translations of gFTP that are available: Albanian (sq), Amharic (am), Arabic (ar), Azerbaijani (az), Bangla (bn), Belarusian (be), Bulgarian (bg), Catalan (ca), Chinese (zh_TW,zh_CN), Croatian (hr), Czech (cs), Danish (da), Dutch (nl), English (en_CA, en_GB, en_US), Finnish (fi), French (fr), German (de), Greek (el), Hebrew (he), Hungarian (hu), Irish (ga), Italian (it), Korean (ko), Japanese (ja), Macedonian (mk), Malayalam (ml), Malay (ms), Norwegian (no), Polish (pl), Portuguese (pt,pt_BR), Punjabi (pa), Romanian (ro), Russian (ru), Serbian (sr,sr@Latn), Slovak (sk), Spanish (es), Swedish (sv), Tamil (ta), Thai (th), Turkish (tr) and Ukrainian (uk) translations available.
<<less
Download (0.042MB)
Added: 2005-06-23 License: GPL (GNU General Public License) Price:
1598 downloads
Geo::Lookup::ByTime 0.0.2

Geo::Lookup::ByTime 0.0.2


Geo::Lookup::ByTime is a Perl module to lookup location by time. more>>
Geo::Lookup::ByTime is a Perl module to lookup location by time.

SYNOPSIS

use Geo::Lookup::ByTime;

$lookup = Geo::Lookup::ByTime->new( @points );
my $pt = $lookup->nearest( $tm );

Given a set of timestamped locations guess the location at a particular time. This is a useful operation for, e.g., adding location information to pictures based on their timestamp and a GPS trace that covers the same time period.

INTERFACE

new( [ points ] )

Create a new object optionally supplying a list of points. The points may be supplied as an array or as a reference to an array. Each point may be a reference to a hash containing at least the keys lat, lon and time or a reference to an object that supports accessor methods called latitude, longitude and time.

If a coderef is supplied it is assumed to be an iterator that may be called repeatedly to yield a set of points.

add_points( [ points ] )

Add points. The specification for what constitutes a point is the same as for new.

nearest( $time [ , $max_dist ] )

Return a hash indicating the estimated position at the specified time. The returned hash has lat, lon and time keys like this:

my $best = {
lat => 54.29344,
lon => -2.02393,
time => $time
};

Returns undef if the position cant be computed. By default a position will be calculated for any point that lies within the range of time covered by the reference points. Optionally $max_dist may be specified in which case undef will be returned if the closest real point is more than that many metres away from the computed point.
If the requested time coincides exactly with the timestamp of one of the points the returned point will be at the same location as the matching point. If the time falls between the timestamps of two points the returned point will be linearly interpolated from those two points.

In an array context returns a list containing the synthetic point at the specified time (i.e. the value that would be returned in scalar context), the closest real point and the distance between the two in metres

my ($best, $nearest, $dist) = $lookup->nearest( $tm );

get_points()

Return a reference to an array containing all the points in ascending time order.

time_range()

Return as a two element list the time range from earliest to latest of the points in the index. Returns undef if the index is empty.

hav_distance($pt, ...)

Exportable function. Computes the Haversine distance in metres along the line described by the points passed in. Points must be references to hashes with keys lat and lon.

<<less
Download (0.015MB)
Added: 2007-01-24 License: Perl Artistic License Price:
1003 downloads
Separe 0.1.6

Separe 0.1.6


This is a great Firefox addon that helps you keeping tabs tidy by introducing a new kind of tab! more>>

Separe 0.1.6 is yet another extremely useful utility for Firefox users. It is actually a great addon that helps you keeping tabs tidy by introducing a new kind of tab!

Enhancements: March 10, 2008

  • Included support for Firefox 3.0b3.
  • Added some locales.
  • Supported locales: be-BY, ca-AD, da-DK, de-DE, en-US, es-ES, fi-FI, fr-FR, it-IT, nl-NL, pl-PL, pt-BR, ru-RU, sl-SI, uk-UA, zh-CN.

Requirements:

  • Mozilla Firefox
<<less
Added: 2008-03-11 License: GPL Price: FREE
981 downloads
wmseti 1.0.3

wmseti 1.0.3


wmseti is a dockapp for monitoring and the control of upto 10 SETI@home processes. more>>
wmseti is a dockapp for monitoring and the control of upto 10 SETI@home processes. wmseti can display various statistics and can pause/continue or kill/run the program.
It can be compiled with or without graphics showing alien faces coming out of the shadows as the workunit progresses, with a progress bar that is green for running, yellow for paused, and red when not running.
Statistics for display are;
- [WMSETI..X] Title and current SETI directory where X=AB...
- [12.34%..X] Progress as percentage where X is program status
- [01:23:45.] Time spent on workunit
- [01:23:45.] Time left before completion of workunit
- [TX:...123] Number of workunits sent
- [RX:...123] Number of workunits received (no longer updated, defunct)
- [PID:.1234] PID of SETI@Home client
- [=====----] Progess as a graphic bar
- [PT:.12/34] Total CPU time contributed to SETI@home as years/days or days/hours
Controls available;
- A left click changes between SETI@home directories
- A middle click runs or kills the SETI@home client
- A right click pauses or continues the SETI@home client
- A left click on the top-left quarter changes to/from info text and alien (if compiled)
- A left click on the bottom-left quarter of alien sets the progress bar on or off (if compiled)
- A mouse wheel up or down changes to the next or previous directory.
<<less
Download (0.13MB)
Added: 2006-10-25 License: GPL (GNU General Public License) Price:
1094 downloads
CAD::Drawing::Manipulate 0.26

CAD::Drawing::Manipulate 0.26


CAD::Drawing::Manipulate is a Perl module to manipulate CAD::Drawing objects. more>>
CAD::Drawing::Manipulate is a Perl module to manipulate CAD::Drawing objects.

Move, Copy, Scale, Mirror, and Rotate methods for single entities and groups of entities.

Group Methods

These methods are called with required values, followed by a hash reference of option values. Note the difference between this and the individual entity manipulation syntax shown below. The absence of an %options hash reference implies everything in the drawing.

For details about each of the group manipulation methods, see the corresponding individual entity manipulation method.

Options

The $opts value shown for each of the group manipulation methods is fed directly to CAD::Drawing::select_addr(). See the documentation for this function for additional details.
One of the most common methods of selection (after the implicit all) may be the explicit list of addresses. This is done by simply passing an array reference rather than a hash reference.

GroupMove

Move selected entities by @dist.

$drw->GroupMove(@dist, $opts);

GroupCopy

Returns a list of addresses for newly created entities.

@new = $drw->GroupCopy(@dist, $opts);

GroupClone

Returns a list of addresses for newly created entities.

@new = $drw->GroupClone($dest, $opts);

place

Clones items from $source into $drw and moves them to @pt. Selects items according to %opts and optionally rotates them by $opts{ang} (given in radians.)

$drw->place($source, @pt, %opts);

GroupMirror

Mirrors the entities specified by %options (see select_addr()) across @axis.

@new = $drw->GroupMirror(@axis, %options);

GroupScale

Sorry, @pt is required here.

$drw->GroupScale($factor, @pt, %opts);

GroupRotate

Rotates specified entities by $angle. A center point may be specified via $opts{pt} = @pt.

$drw->GroupRotate($angle, %opts);

Individual Methods

Move

Moves entity at $addr by @dist (@dist may be three-dimensional.)

$drw->Move($addr, @dist);

Copy

$drw->Copy($addr, @dist);

Clone

Clones the entity at $addr into drawing $dest.

$drw->Clone($addr, $dest, %opts);

%opts may contain:

to_layer => $layer_name, # layer to clone into

Mirror

Mirrors entity specified by $addr across @axis.
Returns the address of the manipulated entity. If $opts{copy} is true, will clone the entity, otherwise modify in-place.

$drw->Mirror($addr, @axis, %opts);

Scale

$drw->Scale($addr, $factor, @pt);

Rotate

Rotates entity specified by $addr by $angle (+ccw radians) about @pt. Angle may be in degrees if $angle =~ s/d$// returns a true value (but I hope the "d" is the only thing on the end, because Im not looking for anything beyond that.) $angle = "45" . "d" will get converted, but $angle = "45" . "bad" will be called 0. Remember, this is Perl:)

$drw->Rotate($addr, $angle, @pt);

Internal Functions

pointrotate

Internal use only.

($x, $y) = pointrotate($x, $y, $ang, $xc, $yc);

pointmirror

@point = pointmirror($axis, $pt);

angle_of

angle_of(@segment);

Polygon Methods

These dont do anything yet and need to be moved to another module anyway.

CutPline

$drw->CutPline();

IntPline

$drw->IntPline();

intersect_pgon

intersect_pgon();

<<less
Download (0.039MB)
Added: 2007-03-17 License: Perl Artistic License Price:
953 downloads
TeX::DVI 0.110

TeX::DVI 0.110


TeX::DVI is a Perl module to write out TeXs DVI (DeVice Independent) file. more>>
TeX::DVI is a Perl module to write out TeXs DVI (DeVice Independent) file.

SYNOPSIS

use TeX::DVI;
use Font::TFM;

my $dvi = new TeX::DVI "texput.dvi";
my $font = new_at Font::TFM "cmr10", 12
or die "Error loading cmr10 at 12 pt: $Font::TFM::errstrn";
$dvi->preamble();
$dvi->begin_page();
$dvi->push();
my $fn = $dvi->font_def($font);
$dvi->font($fn);
$dvi->word("difficulty");
$dvi->hskip($font->space());
$dvi->word("AVA");
$dvi->black_box($font->em_width(), $font->x_height());
$dvi->pop();
$dvi->end_page();
$dvi->postamble();
$dvi->close();

Method TeX::DVI::new creates a new DVI object in memory and opens the output DVI file. After that, elements can be written into the file using appropriate methods.

These are the methods available on the Font::TFM object:

preamble, postamble, begin_page, end_page, push, pop

Writes out appropriate command of the .dvi file.

font_def

The parameter is a reference to a Font::TFM object. Info out of this object will be printed out. The method returns the internal number of the font in this .dvi file.

font

Writes out the font_sel command, the parametr is the number returned by font_def.

hskip, vskip

Skips.

black_box

Creates a black box, can be used for hrules and vrules.

special

Writes out the special command, one parameter is written as the command.

word

Writes out a word given as the first parameter. The currently selected font is used to gather information about ligatures and kernings, thats why its possible to say

$dvi->word("difficulty");

and the ffi will be ligatured all right.

close

Close the file.

<<less
Download (0.009MB)
Added: 2007-04-06 License: Perl Artistic License Price:
940 downloads
giFToxic 0.0.10

giFToxic 0.0.10


giFToxic provides a GTK 2-based client for giFT. more>>
giFToxic provides a GTK 2-based client for giFT.
At the moment it is under heavy development.
giFT stands for giFT: Internet File Transfer. It is a daemon that is intended to act as a bridge to combine the capability of using several (peer-to-peer or otherwise) file sharing protocols for a simple GUI client.
It uses the plugin paradigm to dynamically load different protocols for a client as and when required. The currently supported networks include:
Stable
OpenFT, giFTs own file sharing network
Gnutella1 (used by BearShare, LimeWire, ...)
Ares Galaxy
Turtle F2F
Beta
FastTrack (used by Kazaa)
Alpha
OpenNap
eDonkey
Soulseek
A lightweight protocol is used by clients to communicate with the giFT process, allowing the protocol code to be completely abstracted from the user interface.
Search nodes handle search requests. They search the filelists their CHILD (common) nodes submitted to them. These nodes must have a capable Internet connection and at least 128M RAM. A modern processor is highly recommended as well.
INDEX nodes keep lists of available search nodes, collect statistics, and try to maintain the structure of the network.
Enhancements:
- fixed escaping
- dont start a source search when a transfer is started
- recycle upload slots
- fixed daemon autostart mode
- Languages added: hr, ms, fr, cs, az, sk, pt, sr, sv
<<less
Download (0.36MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
967 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 3
  • 1
  • 2
  • 3