Main > Free Download Search >

Free ascii characters software for linux

ascii characters

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1233
Remove special characters 1.3

Remove special characters 1.3


Remove special characters is a service menu that can rename all files and directories, including sub directories. more>> <<less
Download (0.003MB)
Added: 2007-05-01 License: GPL (GNU General Public License) Price:
913 downloads
ascii-invaders 0.1b

ascii-invaders 0.1b


ascii-invaders project is a clone of Space Invaders which uses the curses library. more>>
ascii-invaders project is a clone of Space Invaders which uses the curses library.
t compiles and runs on MacOS X, GNU/Linux and probably any other system with a curses implementation. I tried to reproduce the way the aliens move in the real game (which you can play on the MAME emulator on a modern computer system). It looks better than it plays however.
I wrote it some time ago in a fit of the-way-computers-were-nostalgia. Perhaps Ill have a go at insulting another classic game in the same way soon.
While writing the game I was inspired to write a deranged rant about the joy of terminals, command lines, Unix, curses and vi.
If you need to change Ascii Invaders to build it on another platform, Id be grateful for patch or instructions so I can include them. Likewise, fixes and improvements to the ascii-art or the code are very welcome. Id also love to hear whether its actually usable on a real serial terminal :-)
Enhancements:
- fixed time() call
<<less
Download (0.014MB)
Added: 2006-12-07 License: GPL (GNU General Public License) Price:
1055 downloads
SWF::Builder::Character::Sound 0.15

SWF::Builder::Character::Sound 0.15


SWF::Builder::Character::Sound is a SWF Sound character. more>>
SWF::Builder::Character::Sound is a SWF Sound character.

SYNOPSIS

my $sound = $mc->new_sound( ring.mp3 );
$sound->play;

This module creates SWF sound characters from MP3 or raw Microsoft WAV files.

$sound = $mc->new_sound( $filename )

loads a sound file and returns a new sound character. It supports only MP3 now.

$sound->play( [ %options ] )

plays the sound.

Options:

MovieClip => $mc, Frame => $frame

MovieClip(MC) is a parent movie clip on which the sound is played. If MC is not set, the sound is played on the movie clip in which it is defined. Frame is the frame number on which the sound is played.

Multiple => 0/1

avoids/allows multiple playing. If 0, dont start the sound if already playing.

Loop => $count

sets the loop count.

In => $in_msec, Out => $out_msec

In sets the beginning point of the sound and Out sets the last in milliseconds.

Envelope => [ $msec1, $volumelevel1, $msec2, $volumelevel2, ... ]

sets the sound envelope. Volume level is set to $volumelevel1 at $msec1, and $volumelevel2 at $msec2, ... Volume level can take a number from 0 to 32768, or a reference to the array of volume levels of left and right channels.

$sound->stop( [ MovieClip => $mc, Frame => $frame ] )

stops playing the sound. It can take MovieClip and Frame options as same as the play method.

$sound->start_streaming( [ MovieClip => $mc, Frame => $frame ] )

starts the streaming sound, which synchronizes with the movie timeline. It can take MovieClip and Frame options as same as the play method.

$sound->Latency( $msec )

sets the sound latency in milliseconds.

<<less
Download (0.16MB)
Added: 2006-11-13 License: Perl Artistic License Price:
1081 downloads
screen-scraper 3.0

screen-scraper 3.0


screen-scraper is a tool for extracting data from Web sites. more>>
screen-scraper project is a tool used to extract data from web sites. You might use screen-scraper for the following purposes:
- Data Mining and Extraction
- Data Migration
- Application Integration
- Business Intelligence
- Web Task Automation
- Portal Components
- Meta-Searching
- Archiving
The screen-scraper application consists of two primary pieces:
- Workbench: A graphical user interface provides an intuitive approach that allows you to designate pages and specific pieces of information to be extracted.
- Server: After using the workbench to designate the data to be scraped, screen-scraper can be run in a server mode, much like a database. External applications can then connect to screen-scraper, which will pull data off of the designated web sites, then return them to the calling application. For example, you might build a web-based application using Active Server Pages (ASP) or PHP that invokes screen-scraper to search for products found on an external web site in real-time.
Additionally, screen-scraper can be started in a non-graphical mode from the command line such that it can be scheduled or invoked on-demand.
screen-scraper can automate many of the tasks typically required when scraping data from web pages, such as tracking cookies, logging in to web sites, and traversing search results pages.
Depending on the programming languages and platforms you most prefer, screen-scraper is likely to be familiar to you. screen-scraper contains an internal scripting engine that supports:
- VBScript
- JScript
- Perl
- Interpreted Java
- JavaScript
- Python
When invoking screen-scraper externally take your pick from the following languages:
- Java
- PHP
- Anything COM-based (such as Active Server Pages, Visual Basic, and Visual C++)
- .NET (both Microsoft-based and Mono)
- Cold Fusion
Enhancements:
- Several bugfixes and minor features have been added, including automatic backup of the database, enhanced HTML rendering and HTML stripping, fixing an error that caused duplicate scripts to appear at times on import, and fixing multiple errors relating to international character sets and non-ASCII characters.
<<less
Download (66MB)
Added: 2007-01-15 License: Freeware Price:
599 downloads
Convert::ASCIInames 1.002

Convert::ASCIInames 1.002


Convert::ASCIInames is a Perl module that includes ASCII names for control characters. more>>
Convert::ASCIInames is a Perl module that includes ASCII names for control characters.

SYNOPSIS

use Convert::ASCIInames;

Convert::ASCIInames::Configure(fallthrough => 1);
$name = ASCIIname($character_ordinal);
$name = ASCIIaltname($character_ordinal);
$name = ASCIIdescription($character_ordinal);
$name = ASCIIaltdescription($character_ordinal);
$character_ordinal = ASCIIordinal($name);

Most if not all of the non-printing characters of the ASCII character set had special significance in the days of teletypes and paper tapes. For example, the character code 0x00 would be sent repeatedly in order to give the receiving end a chance to catch up; it signified "no action" and so was named NUL. The sending end might follow each line of text with a number of NUL bytes in order to give the receiving end a chance to return its print carriage to the left margin.

The control characters (so-called because they were used to control aspects of communication or receiving devices) were given short 2-to-4 letter names, like CR, EOT, ACK, and NAK.

Some of these special purposes have become obsolete, but some of them are still in use. For example, character 0x07 (BEL) is used to ring the feeper; 0x05 (ENQ) is recognised by many terminals as a trigger to report their status; and 0x08 (BS) still means "move the cursor back one space".

This module will return the ASCII name for specified characters, or the character code if given an ASCII name. In addition, the full descriptive name ("Start of Heading" instead of SOH) is available, although reverse translation of the descriptions isnt provided.

Some control characters have altername names. Character 0x13 is named DC3 ("Device Control 3"), but is probably better known by its alternate name of XOFF. These alternate names are also available through this modules functions.

<<less
Download (0.011MB)
Added: 2006-08-21 License: Perl Artistic License Price:
1159 downloads
Convert::ASCII::Armor 1.4

Convert::ASCII::Armor 1.4


Convert::ASCII::Armor is a Perl module that can convert binary octets into ASCII armoured messages. more>>
Convert::ASCII::Armor is a Perl module that can convert binary octets into ASCII armoured messages.

SYNOPSIS

See SYNOPSIS in Convert::ASCII::Armour.

Empty subclass of Convert::ASCII::Armour for American English speakers.

<<less
Download (0.006MB)
Added: 2006-08-04 License: Perl Artistic License Price:
1182 downloads
TWS-ASCII 0.1.3

TWS-ASCII 0.1.3


TWS-ASCII is TuxWordSmith (TWS) for the console. more>>
TWS-ASCII is TuxWordSmith (TWS) for the console. TWS is very similar to Scrabble. The game has been made to be accessible for the blind. The game runs in any console through a Python interpreter.

INSTALLATION:

Just unzip the package wherever you like, cd into the TWS-ASCII directory, and run the file TWS.py through your python interpreter from either a DOS terminal (Windows) or a shell terminal (Linux/Mac).

USAGE:

python TWS.py

<<less
Download (3.9MB)
Added: 2007-05-15 License: GPL (GNU General Public License) Price:
893 downloads
Java Desktop Rolemaster Character Generator .93

Java Desktop Rolemaster Character Generator .93


Java Desktop Rolemaster Character Generator is a character generator for the Rolemaster FRP roleplaying game. more>>
Java Desktop Rolemaster Character Generator project is a character generator for the Rolemaster FRP roleplaying game.
Java Desktop Rolemaster Character Generator is a gradually-developing cross-platform character generator for the Rolemaster FRP role-playing game from Iron Crown Enterprises. It can create and develop Rolemaster characters quickly. It contains information from the Rolemaster FRP book and the current Character Law, with training packages and equipment.
Main features:
- Races (Rolemaster FRP + current Character Law - 1)
- Professions (Rolemaster FRP + current Character Law)
- Stat gains
- Allocation of weapon category costs
- Adolescence development
- Apprenticeship development
- Skills/Categories - Now fills in spell list names, weapon names, etc from populated data
- Special Skills (Occupational, everyman, etc. - professions and races), with indicators
- Advances levels
- Training Packages (Rolemaster FRP + current Character Law)
- Background Options - now with "Extra Languages"
- Load/Save/Print
- Equipment, with populated data
- Calculate encumburance weight correctly
- Is built entirely of 100% Pure Java!
- Works on any OS!
<<less
Download (0.30MB)
Added: 2007-01-03 License: Freeware Price:
674 downloads
Hanzi Master 1.3

Hanzi Master 1.3


Hanzi Master project is a visual, interactive Chinese character and word dictionary. more>>
Hanzi Master project is a visual, interactive Chinese character and word dictionary.
Hanzim ("Hanzi Master") is an interactive visual dictionary for learning and seeing relationships between Chinese radicals, characters, and compounds.
All the characters with a given radical, phonetic component, or pronunciation can be displayed, and all words containing a character, with English meanings.
All data is stored locally. Either simplified or traditional characters can be used.
Main features:
- typing in pinyin gives list of characters and definitions with that pronunciation
- clicking on a radical gives list of characters and definitions with that radical
- clicking on any character in any list displays that character along with the compounds it occurs in as the first or second character.
<<less
Download (0.57MB)
Added: 2006-10-16 License: GPL (GNU General Public License) Price:
1117 downloads
MILA::Transliterate 0.01

MILA::Transliterate 0.01


MILA::Transliterate is a Perl Module for transliterating text from Hebrew to various transliterations used in the Knowledge Cent more>>
MILA::Transliterate is a Perl Module for transliterating text from Hebrew to various transliterations used in the Knowledge Center for Processing Hebrew (MILA) and vise versa.

SYNOPSIS

use MILA::Transliterate qw((hebrew2treebank hebrew2erel hebrew2fsma);
my $erel_transliterated = hebrew2erel($utf8_encoded_hebrew_text);
my $treebank_transliterated = hebrew2treebank($utf8_encoded_hebrew_text);
my $fsma_transliterated = hebrew2fsma($utf8_encoded_hebrew_text);

# note that the reverse transliteration does NOT maintain final Hebrew letters!

Before UNICODE was widely used, applications that were manipulating Hebrew text usually used some transliteration into ASCII characters instead of using Hebrew letters. This was particularly true for software developed in the academia. MILA is a nick name for the Knowledge Center for Processing Hebrew (see: http://mila.cs.technion.ac.il/).

This knowledge center develops software and standards that result from research in natural language processing for Hebrew. As a result, some legacy software also needs to be maintained and such legacy software usually used transliteration.

This module contains mapping from UTF-8 encoded Hebrew to the various transliteration schemes that MILA needs to support and also contains the reversed mapping.

<<less
Download (0.004MB)
Added: 2007-03-05 License: Perl Artistic License Price:
964 downloads
Cascade Textlogger 6.2.0

Cascade Textlogger 6.2.0


Cascade TextLogger software gathers information from the Cascade DataHub and stores it in an ASCII formatted file on disk. more>>
Cascade TextLogger software gathers information from the Cascade DataHub and stores it in an ASCII formatted file on disk.
The structure and format of the ASCII file is completely configurable and the out put files can be used in analysis programs on any platform. Other programs can send data to the Cascade TextLogger by linking the API library and calling the appropriate function calls.
Main features:
- Logs ASCII data to any number of user-specified files and/or stdout.
- Records time-based logs for individual or multiple data points.
- Allows grouping of logs, and grouping of groups, for easier access and control.
- Lets you enable or disable any log or group during run-time.
- Lets you specify how to record multiple points in a log or group based on "any", "all", or "fill" collection criteria.
- Allows any place-holder character string for empty data readings.
- Provides timestamps in GMT or local time, and a wide variety of time formats for output.
- Gives you control over timestamp resolution when logging multiple points.
- Lets you insert text into a log, file, or stdout during run-time.
<<less
Download (MB)
Added: 2007-06-18 License: Free for non-commercial use Price:
859 downloads
GIMP ASCII Load/Save Plugin 1.0

GIMP ASCII Load/Save Plugin 1.0


GIMP ASCII Load/Save Plugin package is a set of identical plugins Save 2 ASCII. more>>
GIMP ASCII Load/Save Plugin package is a set of identical plugins Save 2 ASCII, and ASCII 2 Image, which make saving (loading) images to (from) ASCII text.

GIMP ASCII Load/Save Plugin is very useful if you are using GNU Octave & GIMP together for Image processing. These plugins are distributed under GNU GPL, which you may modify and redistribute.

ASCII 2

Functionally this script tries to create an Image from a text-file that had been processed with the Octave or anything else.

LIMITATIONS: No support for multiple-layers or alpha.

USAGE: Choose a given ASCII file which you want to visualize, and with a knowledge of its column size & row size type those in and select gray/color option, then press ok and wait. You must see your matrix visualized on GIMP.

Save 2 ASCII

Functionally this script tries to save the Image into a text-file for processing with the Octave or anything else.

LIMITATIONS; Cannot save layers.

USAGE: Choose an image, and select if you want it saved as a ASCII file in gray/color mode (1bit-per-pixel(bpp) or 3bpp), and press ok. A new file will be created in your $HOME directory by default, or the directory where you started GIMP from. You can optionally override this by specifying the full path in filename field.
<<less
Download (0.010MB)
Added: 2006-06-13 License: GPL (GNU General Public License) Price:
1248 downloads
3rd Edition Dungeons & Dragons Character Generator 3.5

3rd Edition Dungeons & Dragons Character Generator 3.5


3rd Edition Dungeons and Dragons Character Generator is an HTML/JavaScript Web page that allows the user to create RPG character more>>
3rd Edition Dungeons and Dragons Character Generator is an HTML/JavaScript Web page that allows the user to quickly and easily create new Dungeons and Dragons characters.
The characters can be of any of the eleven classes, any of the playable races, and may start at any level from 1 to 220. Generation requires some simple input, after which the character is displayed on a basic character sheet.
3rd Edition Dungeons & Dragons Character Generator allows you to select your starting stats, add ability points, and pick skills, equipment, feats, and spells. It runs on most operating systems with most modern browsers.
Enhancements:
- This release fixes a few minor, but pesky bugs.
- Halflings no longer get extra saving throws where they should not.
- Saves and skills are shown in a more common format.
- Classes can now get all of their bonus langages (which fixes an error with druids).
<<less
Download (0.085MB)
Added: 2007-07-22 License: GPL (GNU General Public License) Price:
881 downloads
cardwords 0.012

cardwords 0.012


cardwords project is a form crosswords on the cardtable with cards showing characters. more>>
cardwords project is a form crosswords on the cardtable with cards showing characters.

cardwords is a customizable, client/server, multiplayer card game. The cards show characters and points.

The players form crosswords on the card-table with their cards. By editing text files, cardwords can be customized to any language using latin-1 characters. The set of cards, the card-table, and rules for bonus and penalty points can also be customized.

<<less
Download (MB)
Added: 2006-11-27 License: GPL (GNU General Public License) Price:
1063 downloads
Convert::RACE 0.07

Convert::RACE 0.07


Convert::RACE is a conversion between Unicode and RACE. more>>
Convert::RACE is a conversion between Unicode and RACE.

SYNOPSIS

use Convert::RACE;

$domain = to_race($utf16str);
$utf16str = from_race($domain);

This module provides functions to convert between RACE (Row-based ASCII-Compatible Encoding) and Unicode Encodings.

RACE converts strings with internationalized characters into strings of US-ASCII that are acceptable as host name parts in current DNS host naming usage.

<<less
Download (0.004MB)
Added: 2006-08-14 License: GPL (GNU General Public License) Price:
1167 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5