Main > Free Download Search >

Free code software for linux

code

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5160
Html Code Convert 3.3

Html Code Convert 3.3


Speed up the conversion of HTML code into different format more>>
HTML Code Convert helps speed up the conversion of HTML code into different format including Java Script, JavaServer Pages, Microsoft ASP, PHP, Perl, Python, and the UNIX Shell. It is particularly useful in CGI scripting.
Enhancements:
- Colors and font selected in prefeferences box.
- Fixe bug with Quit button. First try to support accessibility.
- Updated schemas.
<<less
Download (184KB)
Added: 2009-04-29 License: Freeware Price:
198 downloads
Audacity Linux Source Code 1..2.4b

Audacity Linux Source Code 1..2.4b


Audacity Linux Source Code free software for recording editing sounds. more>> Audacity Linux Source Code is a free, easy-to-use audio editor and recorder for Linux, and other operating systems. You can use Audacity to:
Record live audio.
Convert tapes and records into digital recordings or CDs.
Edit Ogg Vorbis, MP3, and WAV sound files.
Cut, copy, splice, and mix sounds together.
Change the speed or pitch of a recording.
And more! See the complete list of features.
This editor can record and play sounds and import and export WAV, AIFF, MP3, and OGG files. Edit your sounds using cut, copy, and paste features (with unlimited undo functionality), mix tracks, or apply effects to your recordings. The program also has a built-in amplitude-envelope editor, a customizable spectrogram mode, and a frequency-analysis window for audio-analysis applications. Built-in effects include bass boost, wah wah, and noise removal, and the program also supports VST plug-in effects. This program is open-source, and this version adds tool tips, keyboard shortcuts, and OGG exporting and fixes some bugs.
Version 1.2.4b has a Meter Toolbar added for monitoring volume levels during playback and recording, allows you to export multiple files at once, attempts to automatically correct latency in full-duplex recordings, and contains some bug fixes.
<<less
Download (4.29MB)
Added: 2009-04-03 License: Freeware Price: Free
203 downloads
XML::Filter::Dispatcher::Compiler 0.52

XML::Filter::Dispatcher::Compiler 0.52


XML::Filter::Dispatcher::Compiler can compile rulesets in to code. more>>
XML::Filter::Dispatcher::Compiler can compile rulesets in to code.

SYNOPSIS

use XML::Filter::Dispatcher::Compiler qw( xinline );

my $c = XML::Filter::Dispatcher::Compiler->new( ... )

my $code = $c->compile(
Package => "My::Filter",
Rules => [
a/b/c => xinline q{warn "found a/b/c"},
],
Output => "lib/My/Filter.pm", ## optional
);

Most of the options from XML::Filter::Dispatcher are accepted.

NOTE: you cannot pass code references to compile() if you want to write the $code to disk, they will not survive. If you want to eval $code, this is ok.

METHODS

xinline

Hints to X::F::D that the string is inlinable code. This is a requirement when using the compiler and is so far (v.52) ignored elswhere. In xinlined code, $self refers to the current dispatcher and $e refers to the current events data. Or you can get that yourself in $_[0] and $_[1] as in a normal SAX event handling method.

compile

Accepts options that extend and override any previously set for the duration of the compile(), including the ruleset to compile.

<<less
Download (0.086MB)
Added: 2007-08-17 License: Perl Artistic License Price:
798 downloads
Code::Splice 0.01

Code::Splice 0.01


Code::Splice injects the contents of one subroutine at a specified point elsewhere. more>>
Code::Splice injects the contents of one subroutine at a specified point elsewhere.

SYNOPSIS

use Code::Splice;

Code::Splice::inject(
code => sub { print "fredn"; },
package => main,
method => foo,
precondition => sub {
my $op = shift;
my $line = shift;
$line =~ m/print/ and $line =~ m/four/;
},
postcondition => sub {
my $op = shift;
my $line = shift;
$line =~ m/print/ and $line =~ m/five/;
},
);

sub foo {
print "onen";
print "twon";
print "threen";
print "fourn";
print "fiven";
}

This module removes the contents of a subroutine (usually an anonymous subroutine created just for the purpose) and splices in into the program elsewhere.

Why, you ask?

Write stronger unit tests than the granularity of the API would otherwise allow

Write unit tests for nasty, interdependant speghetti code (my motivation -- hey, you gotta have tests before you can start refactoring, and if you cant write tests for the code, youre screwed)

Fix stupid bugs and remove stupid restrictions in other peoples code in a way thats more resiliant across upgrades than editing files you dont own

Be what "aspects" should be

Screw with your cow-orkers by introducing monster heisenbugs

Play with self-modifying code

Write self-replicating code (but be nice, were all friends here, right?)

The specifics:

The body of the code { } block are extracted from the subroutine and inserted in a place in the code specified by the call to the splice() function. Where the new code is spliced in, the old code is spliced out. The package and method arguments are required and tell the thing how to find the code to be modified. The code argument is required as it specifies the code to be spliced in. That same code block should not be used for anything else under penalty of coredump.

The rest of the argumets specify where the code is to be inserted. Any number of precondition and postcondition arguments provide callbacks to help locate the exact area to splice the code in at. Before the code can e spliced in, all of the precondition blocks must have returned true, and none of the postcondition blocks may have yet returned true. If a postcondition returns true before all of the precondition blocks have, an error is raised. Both blocks get called numerous times per line and get passed a reference to the B OP object currently under consideration and the text of the current line:

precondition => sub {
my $op = shift;
my $line = shift;
$line =~ m/print/ and $line =~ m/four/;
},
... or...
precondition => sub { my $op = shift; $op->name eq padsv and $op->sv->sv =~ m/fred/; },

Its possible to insert code in the middle of an expression when testing ops, but when testing the text of the line of code, the spliced in code will always replace the whole line.
Ill probably drop sending in the opcode in a future version, at least for the precondition/postcondition blocks, or maybe Ill swap them to the 2nd arg so theyre more optional.

Do not attempt to match text in comments as it wont be there. The code in $line is re-generated from the bytecode using B::Deparse and will vary from the original source code in a few ways, including changes to formatting, changes to some idioms and details of the expressions, and formatting of the code with regards to whitespace.

The splicing code will die if it fails for any reason. This will likely change in possible future versions.
There are also label and line arguments that create preconditions for you, for simple cases. Of course, you shouldnt use line for anything other than simple experimentation.

References to lexical variables in the code to be injected are replaced with references to the lexical variables of the same name in the location the code is inserted into. If a variable of the same name doesnt exist there, its an error. ... but it probably shouldnt be an error, at least in the cases where the code being spliced in declares that lexical with my, or when the variable was initiailized entirely outside of the sub block being spliced in and was merely closed over by it.

See the comments in the source code (at the top, in a nice block) for my todo/desired features. Let me know if there are any features in there or yet unsuggested that you want. I wont promise them, but I would like to hear about them.

<<less
Download (0.010MB)
Added: 2007-08-14 License: Perl Artistic License Price:
806 downloads
Tk::HyperText 0.05

Tk::HyperText 0.05


Tk::HyperText can create and manipulate ROText widgets which render HTML code. more>>
Tk::HyperText can create and manipulate ROText widgets which render HTML code.

SYNOPSIS

my $hypertext = $mw->Scrolled ("HyperText",
-scrollbars => e,
-wrap => word,
-linkcommand => &onLink, # what to do when links are clicked
-titlecommand => &onTitle, # what to do when
<<less
Download (0.034MB)
Added: 2007-08-02 License: Perl Artistic License Price:
813 downloads
GtkSourceView 1.90.3

GtkSourceView 1.90.3


GtkSourceView is a text widget that extends the standard gtk+ 2.x text widget GtkTextView. more>>
GtkSourceView project is a text widget that extends the standard gtk+ 2.x text widget GtkTextView.

It improves GtkTextView by implementing syntax highlighting and other features typical of a source code editor.

<<less
Download (1.2MB)
Added: 2007-08-02 License: LGPL (GNU Lesser General Public License) Price:
813 downloads
phpCodeGenerator 0.2.1

phpCodeGenerator 0.2.1


phpCodeGenerator is a free database driven website code generator. more>>
phpCodeGenerator is a free database driven website code generator. This application reads the database and generates a website with the ability to Create, List, Edit, Update, Delete and Search Records.

<<less
Download (MB)
Added: 2007-07-12 License: GPL (GNU General Public License) Price:
835 downloads
JSCoverage 0.2

JSCoverage 0.2


JSCoverage is a tool that generates code coverage statistics for JavaScript programs. more>>
JSCoverage is a tool that generates code coverage statistics for JavaScript programs.
JSCoverage works by instrumenting the JavaScript code used in web pages. Code coverage statistics are collected while the instrumented JavaScript code is executed in a web browser.
JSCoverage works with any modern standards-compliant web browser - Internet Explorer, Firefox, or Opera, on Windows or Linux.
This project is free software, distributed under the GNU General Public License.
Enhancements:
- This release features a new tabbed user interface.
<<less
Download (1.1MB)
Added: 2007-07-09 License: GPL (GNU General Public License) Price:
837 downloads
nescom 1.1.3.1

nescom 1.1.3.1


nescom reads symbolic 6502/RP2A03/RP2A07 machine code and compiles (assembles) it into a relocatable object file. more>>
nescom reads symbolic 6502/RP2A03/RP2A07 machine code and compiles (assembles) it into a relocatable object file or into an IPS patch.

The produced object file is binary-compatible with those made with XA65.

<<less
Download (0.068MB)
Added: 2007-07-06 License: GPL (GNU General Public License) Price:
841 downloads
log4spread 0.1

log4spread 0.1


log4spread software is a Spread Appender for the log4j & logback Java Logging APIs. more>>
log4spread software is a Spread Appender for the log4j & logback Java Logging APIs.

Example log4j.xml and logback.xml files are included.

A browseable source repository & subversion tree is at:

http://code.google.com/p/log4spread/source

Please submit any bugs to:

http://code.google.com/p/log4spread/issues/list

<<less
Download (0.011MB)
Added: 2007-06-15 License: The Apache License 2.0 Price:
861 downloads
JCite 1.9

JCite 1.9


JCite project contains cites snippets of Java source code or Excel sheets into HTML documents. more>>
JCite project contains cites snippets of Java source code or Excel sheets into HTML documents – API documentation, for instance.

Citing from tests, or tested code, guarantees that examples really work. And, thanks to the excellent Java2Html library, they get automatic syntax highlighting.

<<less
Download (0.22MB)
Added: 2007-06-13 License: BSD License Price:
863 downloads
ldict 0.1

ldict 0.1


ldict is a simple program written in perl that uses the Net::Dict and Gtk modules to make a GUI dictionary lookup program. more>>
ldict project uses the Net::Dict and Gtk modules to make a GUI dictionary lookup program.

The source code may be useful to others trying to code perl and gtk...

<<less
Download (0.008MB)
Added: 2007-06-13 License: GPL (GNU General Public License) Price:
521 downloads
UVCView 20070607

UVCView 20070607


UVCView project is a simple USB video camera viewer. more>>
UVCView project is a simple USB video camera viewer. This program is very simple, because it is part of another software.
Installation:
$ cd uvcview
$ ./autogen.sh (if needed)
$ ./configure
$ make
Enhancements:
- Code cleanup
<<less
Download (0.14MB)
Added: 2007-06-11 License: GPL (GNU General Public License) Price:
598 downloads
UMMF::Export::Java 1.02

UMMF::Export::Java 1.02


UMMF::Export::Java is a code generator for JavaTemplate. more>>
UMMF::Export::Java is a code generator for JavaTemplate.

SYNOPSIS

use UMMF::Export::Java;

my $exporter = UMMF::Export::Java->new(output => *STDOUT);
my $exporter->export_Model($model);

This package allow UML models to be represented as Java code.

<<less
Download (0.67MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
871 downloads
MetaTrans::Languages 1.04

MetaTrans::Languages 1.04


MetaTrans::Languages Perl module contains a simple database of most of the known languages. more>>
MetaTrans::Languages Perl module contains a simple "database" of most of the known languages. Extracted from MARC codes for languages, http://www.loc.gov/marc/languages/.

SYNOPSIS

use MetaTrans::Languages qw(get_lang_by_code get_code_by_lang);

print get_lang_by_code(afr); # prints Afrikaans
print get_code_by_lang(Afrikaans); # prints afr

FUNCTIONS

get_lang_by_code($code)

Returns the name of the language with $code or undef if no language with such a $code is known.

get_code_by_lang($language)

Returns the code of the $language or undef if the language is unknown.

is_known_lang($code)

Returns true if the language with $code exists in the "database", false otherwise.

get_langs_hash

Returns the {code_1 => language_1, code_2 => language_2, ...} hash containing all known languages and their codes.

get_langs_hash_rev

Returns the {language_1 => code_1, language_2 => code_2, ...} hash containing all known languages and their codes.

<<less
Download (0.032MB)
Added: 2007-06-01 License: Perl Artistic License Price:
875 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5