Main > Free Download Search >

Free programmer software for linux

programmer

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 529
JoeDog::ProgressBar 1.1

JoeDog::ProgressBar 1.1


JoeDog::ProgressBar provides a perl extension that provides an ASCII progress bar for your perl scripts. more>>
JoeDog::ProgressBar provides a perl extension that provides an ASCII progress bar for your perl scripts.

You can run it inside any for which you can calculate the last iteration.

This is a autoloadable module which allows the programmer to add a progress bar to loops.

47% done: +++++++++++++++++++++++> |

INSTALLATION
JoeDog::ProgressBar.pm was built using perl Make::Maker utility
If you are familiar with that utility you should have no problem
with this installation as it will be familiar:

$ perl Makefile.PL
$ make
$ make test
$ su
$ make install

USAGE
use JoeDog::ProgressBar;
my $bar = new ProgressBar($max_size);
for(0..$max_size){
$bar->refresh($_);
}

<<less
Download (0.003MB)
Added: 2007-03-23 License: Public Domain Price:
945 downloads
PIC USB Framework 1.1

PIC USB Framework 1.1


PIC USB Framework is a USB application framework dedicated to Linux. more>>
PIC USB Framework is a USB application framework dedicated to Linux (on the host side) and to the PIC 18F4550 family of microcontrollers (on the device side).
PUF includes: a bootloader that can flash the PIC application through the USB, a PIC demo and its corresponding application on the host side, and docker, the host-side flash programming utility.
The PUF also contains gputils and sdcc as cross-building tools, and odyssey 0.4vasco as a parallel port PIC programmer.
Enhancements:
- sdcc optimization flags are now switched on by default.
- A component library (including a console mechanism and a small real time scheduler) has been added to help building user applications.
- Tools have been upgraded to automake 1.9.6, autoconf 2.59d, sdcc snapshot 4482, odyssey 0.5, and gputils 0.13.4.
- The applications size has been optimized.
<<less
Download (4.3MB)
Added: 2007-01-01 License: LGPL (GNU Lesser General Public License) Price:
1032 downloads
kparalleleport 1.1

kparalleleport 1.1


kparalleleport is a program for programmers who wish to use the parallel port. more>>
kparalleleport is a program for programmers who wish to use the parallel port.

The project makes it possible to view the values registered or read on the parallel port.
<<less
Download (0.098MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
984 downloads
atmelprog 1.1

atmelprog 1.1


atmelprog is an Atmel AT89Cx051 microcontroller programmer (device schematics included). more>>
atmelprog is an Atmel AT89Cx051 microcontroller programmer (device schematics included). atmelprog allows writing and erasing flash, as well as verification of data written.
Main features:
- supports all AT89Cx051 family chips (MCS-51 compatibile)
- allows writing data to the microcontroller
- supports data verification during write
- allows reading data from microcontroller to file
- allows erasing flash
Enhancements:
- added diagnostic mode (-t)
- more readable code (use #defined pin values)
<<less
Download (0.058MB)
Added: 2006-03-29 License: GPL (GNU General Public License) Price:
1325 downloads
Neural Network Framework 0.9.1

Neural Network Framework 0.9.1


Neural Network Framework project is a C++ framework to develop, simulate, and analyze arbitrary complex neural networks. more>>
Neural Network Framework project is a C++ framework to develop, simulate, and analyze arbitrary complex neural networks.
The programmer can use the classes provided to create neural networks with arbitrary topology and mixed type of neurons. Its very easy to add customized neurons and layers.
Enhancements:
- A ScaleFunction that scales the input vector of a Cluster and a normalize method for RealVec were added.
- Two methods were added to the Random class to randomize RealVec and RealMat.
<<less
Download (0.12MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
880 downloads
hslogger 1.0.1

hslogger 1.0.1


hslogger is a logging framework for Haskell, roughly similar to Pythons logging module. more>>
hslogger is a logging framework for Haskell, roughly similar to Pythons logging module. The project lets each log message have a priority and source be associated with it.
The programmer can then define global handlers that route or filter messages based on the priority and source. hslogger also has a syslog handler built in.
Main features:
- Each log message has a priority and a source associated with it
- Multiple log writers can be on the system
- Configurable global actions based on priority and source
- Extensible log writers (handlers)
- Default handlers that write to the console, file handles, or syslog
- Easy to use operation
<<less
Download (0.028MB)
Added: 2006-12-07 License: LGPL (GNU Lesser General Public License) Price:
1051 downloads
Ruby/Google 0.6.0

Ruby/Google 0.6.0


Ruby/Google offers a higher-level abstraction of Googles SOAP-driven Web API. more>>
Ruby/Google offers a higher-level abstraction of Googles SOAP-driven Web API. Ruby/Google module allows the user to programatically query the Google search engine from Ruby.

The aim of the library is to shield the programmer from the details of the raw data structures returned by the Web API, and in the process make the API more accessible for everyday use.

<<less
Download (0.025MB)
Added: 2006-02-10 License: GPL (GNU General Public License) Price:
1351 downloads
cpp xstream 0.0.3

cpp xstream 0.0.3


cpp xstream is a collection of several streambuf and iostream classes. more>>
cpp xstream is a C++ flexible stream library.
cpp xstream is a collection of several streambuf and iostream classes that allow a programmer to compress and decompress data transparently with gzip or bzip2, to serialize composite types to xdr, to encode or decode with base64, and to tee output from one channel to several others. These streams can be stacked on each other.
Main features:
- Compressing and decompressing data using zlib and bzlib
- Encode and decode base64 data
- Serialize and deserialize structures to XDR
- Calculate digests of data
- Fork data written to a stream to several others
- Use file descriptors using a iostream interface (where available)
<<less
Download (0.11MB)
Added: 2006-03-07 License: GPL (GNU General Public License) Price:
1329 downloads
FreeMarker 2.3.12

FreeMarker 2.3.12


a "template engine"; a generic tool to generate text output based on templates more>> FreeMarker is a "template engine"; a generic tool to generate text output (anything from HTML to autogenerated source code) based on templates. Its a Java package, a class library for Java programmers. Its not an application for end-users in itself, but something that programmers can embed into their products.
FreeMarker is designed to be practical for the generation of HTML Web pages, particularly by servlet-based applications following the MVC (Model View Controller) pattern. The idea behind using the MVC pattern for dynamic Web pages is that you separate the designers (HTML authors) from the programmers. Everybody works on what they are good at. Designers can change the appearance of a page without programmers having to change or recompile code, because the application logic (Java programs) and page design (FreeMarker templates) are separated. Templates do not become polluted with complex program fragments. This separation is useful even for projects where the programmer and the HTML page author is the same person, since it helps to keep the application clear and easily maintainable.
Although FreeMarker has some programming capabilities, it is not a full-blown programming language like PHP. Instead, Java programs prepare the data to be displayed (like issue SQL queries), and FreeMarker just generates textual pages that display the prepared data using templates.
FreeMarker is not a Web application framework. It is suitable as a component in a Web application framework, but the FreeMarker engine itself knows nothing about HTTP or servlets. It simply generates text. As such, it is perfectly usable in non-web application environments as well. Note, however, that we provide out-of-the-box solutions for using FreeMarker as the view component of Model 2 frameworks (e.g. Struts), which also let you use JSP taglibs in the templates.
<<less
Download (2.02MB)
Added: 2009-04-07 License: Freeware Price: Free
210 downloads
 
Other version of FreeMarker
FreeMarker 2.3.11Its a Java package, a class library for Java programmers. Its not an application for end-users in itself, but something that programmers can embed into their products. FreeMarker is designed
License:Freeware
Download (2.01MB)
185 downloads
Added: 2009-04-21
Firefox Quickstarter 0.1

Firefox Quickstarter 0.1


Firefox Quickstarter its a modified version of MozillaQs for faster startup of Firefox broswer. more>>
Mozilla Quickstarter is an small kde utility that runs in the SystemTray and runs a hidden instance of Mozilla.
You can execute navigato or mail program from Mozilla Quickstarter. As I am a beginner kde programmer, its based on the original code of another application: OpenOffice.org Quickstarter.
Main features:
- Runs a hide instance of Mozilla
- You can launch navigator and mail.
- Autostart when launching Kde.
Enhancements:
- Added a tgz package for Slackware 10.2 thanks to Slacky.it
<<less
Download (0.041MB)
Added: 2005-11-09 License: GPL (GNU General Public License) Price:
1448 downloads
PEditor 0.3

PEditor 0.3


PEditor is an experimental programmers editor. more>>
PEditor is an experimental programmers editor. The goal is to create an editor that could be used by a person (most likely a student) with no a priori knowledge of programming. This aims to be a classic "write code, click run" IDE.
Main features:
- tabs
- syntax highlighting
- some form of auto-complete
- ability to compile/run simple programmes
- a code snippets library
PEditor project is aimed at the C/C++ programmer, though support for other languages may be added.
<<less
Download (0.52MB)
Added: 2007-07-07 License: GPL (GNU General Public License) Price:
842 downloads
Horgand 1.09

Horgand 1.09


Horgand is a jack capable organ client with presets and some effects incorporated. more>>
Horgand is a jack capable organ client with presets and some effects incorporated.

Horgand generates the sound in real time like a FM synthesizer. Due this, you can change the frequency of all the drawars and add some special effects.

This is my fist DSP program attempt, my first jack client, and my first attempt to produce any sound, and im not programmer. THIS PROGRAM COMES WITH NO WARRANTY, and sure have tones of bugs.

Horgand is a organ ... generates sound like a FM sinthesizer in real time, good reason for use a fast computer, there are many others programs who emulate a organ and sure their sound is better, but i program what i need, and just for fun.

You can modify the frequency of all "drawars" and use the "effects".

Im not a DSP "guru" and belive me, i will never be. Sure Horgand has many "noises", but ... i remember old organs ... they have many "noises" too.

<<less
Download (2.3MB)
Added: 2007-08-05 License: GPL (GNU General Public License) Price:
811 downloads
Acme::JavaTrace 0.06

Acme::JavaTrace 0.06


Acme::JavaTrace is a Perl module for using Java-like stack traces. more>>
Acme::JavaTrace is a Perl module for using Java-like stack traces.

SYNOPSIS

On the command-line:

perl -wMAcme::JavaTrace program_with_strange_errors.pl

Inside a module:

use Acme::JavaTrace;
warn "some kind of non-fatal exception occured";
die "some kind of fatal exception occured";

< buzzword >This module tries to improves the Perl programmer experience by porting the Java paradigm to print stack traces, which is more professional than Perls way. < /buzzword >

This is achieved by modifying the functions warn() and die() in order to replace the standard messages by complete stack traces that precisely indicates how and where the error or warning occurred. Other than this, their use should stay unchanged, even when using die() inside eval().

<<less
Download (0.015MB)
Added: 2007-06-07 License: Perl Artistic License Price:
869 downloads
Coreys Pong 1.4

Coreys Pong 1.4


Coreys Pong is a simple pong game created in C using libSDL. more>>
Coreys Pong is a simple pong game created in C using libSDL.

This game is super simple, but thats why its super awesome! Its a regular pong game, where two players face off using the controls from the same keyboard.

Player 1: uses A and Z to move up and down.

Player 2: uses UP ARROW and DOWN ARROW to move up and down.

__Where__ you hit the ball on the paddle determines the speed of the ball and direction.

There are no special moves.

This game is in dire need of a godly programmer to beef it up if you have the desire for a more advanced pong game.

<<less
Download (0.41MB)
Added: 2006-02-02 License: Freeware Price:
1361 downloads
jPatchLib 0.0.1e

jPatchLib 0.0.1e


jPatchLib is a Java library that implements the GNU patch algorithm. more>>
jPatchLib project is a Java library that implements the GNU patch algorithm. This allows a Java programmer to apply patch files, which are output by the diff command, to change existing text files.
Main features:
- fast
- small
- open source
<<less
Download (0.018MB)
Added: 2007-06-09 License: GPL (GNU General Public License) Price:
868 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5