Main > Free Download Search >

Free flat software for linux

flat

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 191
xflat 0.1.5

xflat 0.1.5


XFLAT is a mature suite of development tools including compiler, linker, loader, dynamic loader, and support tools. more>>
eXtended FLAT (XFLAT) is a binary format that supports dynamic shared libraries on MMU-less Linux (uClinux) platforms.
XFLAT is a mature suite of development tools including compiler, dynamic loader, loader, linker and support tools.
Configure and Build Procedure:
1) Run the configure script to instantiate a canned configuration.
see ./configure.sh --help for more information
./configure.sh
2) Source setenv to define environment variables
source ./setenv
3) Patch the kernel
cd xflat/kernel/
./patch_kernel ../../linux-x.x.x
4) Make the toolchain
cd buildroot
make
5) Make the kernel
cd linux-x.x.x
make
Steps 2) and 3) should be performed only once. Steps 1), 4) and 5) should
be repeated to re-build the system.
See also config/ /README for instructions specific to the
selected configuration.
Enhancements:
- Verifed xflat-ld C++ linking support
- Added documentation for the state of C++ in XFLAT
- Fixed spurious prompts for FPU in uClibc build
<<less
Download (3.1MB)
Added: 2006-05-13 License: BSD License Price:
1261 downloads
Flatworm 1.2

Flatworm 1.2


Flatworm is a Java library intended to allow a developer to describe the format of a flat file using an XML definition file. more>>
Flatworm project is a Java library intended to allow a developer to describe the format of a flat file using an XML definition file, and then to be able to automatically read lines from that file, and have one or more beans be instantiated for each logical record.

There are a few powerful features in Flatworm worth mentioning. For one thing, a record may consist of one or more physical lines in the file. A record may contain more than one bean once decoded. A flat file may contain more than one type of record, and Flatworm can use line length and substring matching to determine which type of record a line begins.

Besides fielded buffer flat files, Flatworm also supports text files where the different fields are separated by a separator character, e.g. CSV (comma separated values) files.

Last but not least, Flatworm is able to produce flat files from beans and the same definition file.

<<less
Download (0.044MB)
Added: 2007-08-07 License: LGPL (GNU Lesser General Public License) Price:
808 downloads
Flat Assembler 1.67.21

Flat Assembler 1.67.21


Flat Assembler is an extremely fast and efficient x86 assembler. more>>
The flat assembler is a fast and efficient self-assembling 80x86 assembler for DOS, Windows, and Linux operating systems. Currently, it supports all 8086-80486/Pentium instructions with MMX, SSE, SSE2, SSE3, and 3DNow! extensions.
It can produce output in binary, MZ, PE, COFF, or ELF format. Flat Assembler includes the powerful but easy-to-use macroinstruction support, and does multiple passes to optimize the instruction codes for size. The flat assembler is entirely written in assembly language.
Enhancements:
- 32-bit relocations are now allowed in PE64 output format.
- EIP-relative addressing was added.
- The PLT operator was added for the ELF output format.
- SSSE3 (Supplemental SSE3) instructions were added.
- Some Win64 headers and examples were provided in the Windows package.
- The SYSRETQ mnemonic was added, and RDMSRQ/WRMSRQ/SYSEXITQ mnemonics were added for the 64-bit variants of respective instructions.
- R8L-R15L (Intel-style) aliases were added for R8B-R15B registers. Support for the AMD SVM technology instructions was added. Numerous bugs were fixed.
<<less
Download (0.17MB)
Added: 2007-03-20 License: BSD License Price:
958 downloads
Clearlooks-flat-compact 0.1

Clearlooks-flat-compact 0.1


Clearlooks-flat-compact provides you with a beautiful compact theme which is created for latest clearlooks engine from the SVN. more>>

Clearlooks-flat-compact 0.1 provides you with a beautiful compact theme which is created for latest clearlooks engine from the SVN. This product is totally free.

Requirements: GTK 2.x

<<less
Added: 2008-02-09 License: GPL Price: FREE
1 downloads
Flat File Extractor 0.2.2

Flat File Extractor 0.2.2


Flat File Extractor can be used for reading different flat file structures and printing them in different formats. more>>
Flat File Extractor can be used for reading different flat file structures and printing them in different formats. ffe is a command line tool developed in GNU/Linux environment and it is distributed under GNU General Public License 2 or later.
Main areas of use are:
- Extracting particular fields or records from a flat file
- Converting data from one format to an other, e.g. from CSV to fixed length
- Verifying a flat file structure
- Testing tool for flat file development
- Displaying flat file content in human readable form
Main features:
- Command-line tool
- Reads standard input and writes to standard output as default
- One input file can contain several types of records (lines)
- Fields in a flat file can be fixed length or separated
- Input file structure and output definitions are independent, meaning one output format can be used with several input files
- Input file structure and output format are freely configurable, they are not predefined
- Output can be formatted e.g. as: fixed length, separated, tokenized, XML, SQL,...
- ffe tries to guess the input format, user needs not to give it as a parameter
Enhancements:
- Configuration keyword const has been added
<<less
Download (0.23MB)
Added: 2007-05-30 License: GPL (GNU General Public License) Price:
882 downloads
FLAT::Legacy::FA::RE 0.1

FLAT::Legacy::FA::RE 0.1


FLAT::Legacy::FA::RE is a regular expression base class. more>>
FLAT::Legacy::FA::RE is a regular expression base class.

SYNOPSIS

use FLAT::Legacy::FA::RE;
use FLAT::Legacy::FA::NFA;
my $re = RE->new();
$re->set_re(a|b|(hi)*);
my $nfa = $re->to_nfa();
print $nfa->info(); # see stuff on NFA
my $dfa = $nfa->to_dfa();
print $dfa->info(); # see stuff on DFA
my @removed = $dfa->minimize();
print $dfa->info(); # see stuff on minimized DFA
print "Removed ".($#removed+1)." statesn";

This module implements a regular expression parser, and supports the conversion of a RE to a deterministic finite automata. A homegrown recursive descent parser is used to build the parse tree, and the method used to conver the regular expression to a DFA uses no intermediate NFA.
Recursive Descent-safe Regex Grammar:

R -> O

O -> CO

O -> | CO | epsilon

C -> SC

C -> .SC | epsilon

S -> LS

S -> *S | epsilon

L -> a | b | c |..| 0 | 1 | 2 |..| (R) | epsilon

Terminal symbols: a,b,c,..,z,0,1,2,..,9,|,*,(,)

NOTE: Concatenation operator, ., is not a terminal symbol and should not be included in the regex

FAQ: Q: Does this support Perl regular expressions?
A: No, just the regular expression using the terminal symbols listed above.

<<less
Download (0.032MB)
Added: 2007-07-25 License: Perl Artistic License Price:
821 downloads
Bio::DB::Flat::BDB::swissprot 1.4

Bio::DB::Flat::BDB::swissprot 1.4


Bio::DB::Flat::BDB::swissprot is a swissprot adaptor for Open-bio standard BDB-indexed flat file. more>>
Bio::DB::Flat::BDB::swissprot is a swissprot adaptor for Open-bio standard BDB-indexed flat file.

SYNOPSIS

See Bio::DB::Flat.

This module allows swissprot files to be stored in Berkeley DB flat files using the Open-Bio standard BDB-indexed flat file scheme. You should not be using this directly, but instead use it via Bio::DB::Flat.

<<less
Download (4.7MB)
Added: 2006-10-11 License: Perl Artistic License Price:
1111 downloads
Tie::FlatFile::Array 0.03

Tie::FlatFile::Array 0.03


Tie::FlatFile::Array is a Perl extension which treats a flatfile database as an array of arrays. more>>
Tie::FlatFile::Array is a Perl extension which treats a flatfile database as an array of arrays.

This module allows the programmer to treat a flatfile database as as array of arrays. For example, lets say you have a datafile that has fixed-length records like so:

Field-name Type
URL ASCII characters, length 30
Referals Integer, 4 bytes, binary in network order

If you were going to use pack to create a record like this, youd use a format string of A30N. Since Tie::FlatFile::Array does the packing and unpacking behind the scenes, you would use that pack format string in the call to tie:

tie @flat, Tie::FlatFile::Array, data.file,
O_RDWR | O_CREAT, 0644, { packformat => A30N }
or die("Tie failure: $!");

To insert an item into the data file, you would assign an array reference to one of the arrays elements like so:

$flat[0] = [ www.yahoo.com, 3601 ];

<<less
Download (0.005MB)
Added: 2007-03-30 License: GPL (GNU General Public License) Price:
938 downloads
Slat 0.4b

Slat 0.4b


Slat stands for Sounds Like A Theramin. more>>
Slat stands for "Sounds Like A Theramin". Slat allows you to use your mouse to adjust pitch and volume by waving the pointer over the interface.
Tremolo and vibrato are adjustable. Slat project is a JACK application.
Enhancements:
- The ClanLib dependency has been removed, but the extra cursor also had to be taken out.
- This is hopefully only a temporary measure.
- There is a new size command line option for setting the window size.
- Note bars are darkened on flat/sharp notes for easier playing.
- Note spacing is now linear, and so hopefully a lot easier to navigate.
<<less
Download (0.58MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1198 downloads
Fastilo 2.1

Fastilo 2.1


Fastilo project is a freeware shopping cart script based on PHP and Flat Files. more>>
Fastilo project is a freeware shopping cart script based on PHP and Flat Files. Extremely easy to run and use. Our product work on Quick.Cart engine with some modifications.
Main features:
- full administration of the products, categories and delivery companies (delivery cost)
- full administration of the orders
- system for managing the content of additional pages and (subpages) in the web shop, as the company information, regulations etc.
- printing products and order cards
- system of additions, which helps to make your web shop even more functional
- inventory stock control
- WYSIWYG editor
- bestsellers panel
- email customer with his order
- friendly links
<<less
Download (0.36MB)
Added: 2007-04-11 License: GPL (GNU General Public License) Price:
555 downloads
KLinkStatus 0.3.1

KLinkStatus 0.3.1


KLinkStatus is a KDE link checker. more>>
KLinkStatus is a KDE link checker. KLinkStatus project can be run as a standalone application or be embedded inside another application.
It supports HTTP, FTP, SSH (fish or SFTP), and file protocols, proxies, authentication, the HTML 4.0 and HTTP 1.1 standards, server-side includes, regular expressions for restrict which URLs are searched, the display of link results as they are checked, a tree-like view that reflects the file structure of the documents, a flat view, the ability to limit the search depth, and more
Main features:
- Support several protocols (allowing fast checking of local documents): http, ftp, ssh (fish or sftp) and file.
- Proxy support
- Allows authentication when checking restricted documents
- Supports the latest Web standards-- HTML 4.0, HTTP 1.1
- Server-Side Includes (SSI, aka SHTML) are supported and checked
- Regular expressions to restrict which URLs are searched
- Show link results as they are checked
- Tree like view (that reflects the file structure of the documents) or flat view
- Limit the search depth
- Fragment identifiers ("#" anchor links that point to a specific section in a document) are supported and checked
- Pause/Resume of checking session
- History of checked URLs
- Tabbed checking (allow multiple sessions at the same time)
- Filter checked links (good, broken, malformed and undetermined)
- Configurable number of simultaneous connections (performance tunning)
- Other configurable options like "check external links", "check parent folders", "timeout"
- Good integration with Quanta+
Enhancements:
- Some bugfixes and feature improvements were done.
<<less
Download (0.80MB)
Added: 2006-03-29 License: GPL (GNU General Public License) Price:
1304 downloads
File::Tabular 0.70

File::Tabular 0.70


File::Tabular can search and edit flat tabular files. more>>
File::Tabular can search and edit flat tabular files.

SYNOPSIS

use File::Tabular;
my $f = new File::Tabular($filename);

my $row = $f->fetchrow;
print $row->{field1}, $row->{field2};

$row = $f->fetchrow(where => someWord);
$row = $f->fetchrow(where => field1 > 4 AND field2 >= "01.01.2001");
$row = $f->fetchrow(where => qr/somes+(complexs*)?(regex|regular expression)/i);

$f->rewind;
my $rows = $f->fetchall(where => someField =~ ^[abc]+);
print $_->{someField} foreach @$rows;

$f->rewind;
$rows = $f->fetchall(where => +field1:someWord -field2:otherWord,
orderBy => field3, field6:num, field5:-alpha);

$f->rewind;
my $hashRows = $f->fetchall(where => foo AND NOT bar,
key => someField);
print $hashRows->{someKey}{someOtherField};

# open for updates, and remember the updates in a journal file
$f = new File::Tabular("+>$journalFile"});

# updates at specific positions (line numbers)
$f->splices(4 => 2, undef, # delete 2 lines from position 4
7 => 1, {f1 => $v1, f2 => $v2, ...}, # replace line 7
9 => 0, { ...}, # insert 1 new line at position 9
22 => 0, [{...}, {...}, ...] # insert several lines at pos. 22
...
-1 => 0, [{...}, {...}, ...] # append at the end
);

# shorthand to add new data at the end
$f->append({f1 => $v1, f2 => $v2, ...});
# same thing, but use the "Hash::Type" associated to the file
$f->append($f->ht->new($v1, $v2, ...));


$f->clear; # removes all data (but keeps the header line)

# updates at specific keys, corresponding to @keyFields
$f->writeKeys({key1 => {f1 => $v1, f2 => $v2, ...}, # add or update
key2 => undef, # remove
...
}, @keyFields);


# replay the updates on a backup file
my $bck = new File::Tabular("+<<less
Download (0.016MB)
Added: 2007-08-02 License: Perl Artistic License Price:
813 downloads
Plans 7.9.2

Plans 7.9.2


Plans is a powerful and flexible Web calendar. more>>
Plans is a powerful and flexible Web calendar. Plans has features like recurring events, merged calendars, event icons, custom themes and templates, MS Outlook export, SQL or flat-file data storage, and browser-based management.
Main features:
Multiple Calendars
- One installation of plans can support many calendars.
- Calendars can share information with each other.
- Each calendar is managed independently (unique password, custom options, custom look & feel).
- Multiple calendars running on the same installation of plans can be "embedded" in completely different websites.
Recurring Events
- Plans uses a powerful and flexible recurring event model.
International Support
- Plans supports multiple languages.
- Weeks can start on days other than Sunday.
- Plans supports arbitrary date formats (mm/dd/yy, dd/mm/yy, etc.)
Database Support
- Plans can store data in flat files or an SQL database.
Sharp-looking
- Plans is the nicest-looking web calendar.
- Plans has several downloadable themes available.
- CSS-based layout makes it easy to match the colors & fonts with your website.
Open Source
- Plans is licensed under the GPL. You can freely modify the code for your needs. Many organizations have done so.
Extendable
- Plans architecture allows add-ons and standalone programs to re-use its framework.
- Plans can export events to other platforms, including MS Outlook and Palm.
Template-based design
- Plans uses HTML templates to allow easy customization of the look & feel.
- Each calendar can have its own custom template, even located on a different server.
<<less
Download (0.57MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
964 downloads
Tiny Translator 0.6

Tiny Translator 0.6


Tiny Translator is a very simple class for easily organizing dialogue outputs and creating language tables. more>>
Tiny Translator is a very simple class for easily organizing dialogue outputs and creating language tables for multilingual projects.
Tiny Translator uses flat files and does not require a database engine.
Enhancements:
- This release supports MySQL databases for storing phrases.
- It still supports flat files (comma separated).
- The translate() method was split into various methods.
- Deprecated elements were deleted.
<<less
Download (0.016MB)
Added: 2005-11-22 License: LGPL (GNU Lesser General Public License) Price:
1435 downloads
Gray

Gray


Gray is a gray version of the nice theme Mint by lokheed, with a new Metacity theme! more>>
Gray is a GNOME theme, and its the gray version of the nice theme "Mint" by lokheed, with a new Metacity theme!

Gray-Flat has got different menubar and different metacity (obviusly you can use Gray-Flat with Gray metacity theme!).

Stavrosg made a port of the metacity for Xfwm4! Enjoy his work!

<<less
Download (0.056MB)
Added: 2007-03-02 License: GPL (GNU General Public License) Price:
970 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5