Main > Free Download Search >

Free in places software for linux

in places

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1288
Easiest Edit In Place 1.2

Easiest Edit In Place 1.2


Easiest Edit In Place enables Web (2.0) developers to generate any number of edit in place widgets. more>>
Easiest Edit In Place enables Web (2.0) developers to generate any number of edit in place widgets with only one line of script code.
Using stylesheets and spans, any piece of text can be edited by any type of widget. Easiest Edit In Place features CSS customization and automatic caret positioning.
Main features:
- It requires only 1 line of javascript to make any number of widgets editable.
- Caret positioning. When editing inline, the caret is positioned at the point the user clicked, to make it more intuitive.
- Editor can be anything, from ordinary text input to text areas or custom widgets.
- Everything can be styled using CSS.
Eeip has been tested on Firefox and IE.
Enhancements:
- A bug that could lead to the accidental display of placeholder text when dealing with empty fields in some circumstances was fixed.
<<less
Download (0.013MB)
Added: 2007-03-08 License: BSD License Price:
962 downloads
Concede 0.1

Concede 0.1


Concede is a computer version of the board game Take It Easy. more>>
Concede project is a computer version of the board game "Take It Easy".

Concede is a computer version of the board game "Take It Easy". The game is a kind of mix between 4-in-a-row and bingo (aka loto in some place). The player start with an empty board where 19 hexagonal tiles have to be placed. At each turn a random tile is drawn and the player must put it somewhere on the board.

Each tile is marked with 3 numbers (from 1 to 9) and the player must try to make as many complete rows as possible with the tiles he get. The problem is that their is more tiles in the game than places on the board and they come in random order.

When the board is full the game end and the score is computed by adding all the complete rows together. So for example a row of four 5 is worth 20 points, a row of three 9 is worth 27 points, etc.

<<less
Download (0.014MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
1025 downloads
Plasmatronics 0.03

Plasmatronics 0.03


Plasmatronics Perl module is a Plasmatronics PL regulator controller. more>>
Plasmatronics Perl module is a Plasmatronics PL regulator controller.

SYNOPSIS

use Device::Regulator::Plasmatronic;
my $r = Device::Regulator::Plasmatronic;
print "Current state of charge = " . $r->pl_dsoc . "n";

This is an interface library via the serial port to a Plasmatronics Regulator. (http://www.plasmatronics.com.au/)

MAJOR LIMITATIONS

Serial Port

I have to replace the serial port driver - currently I use the unix only version, but I have written

Hard Coded Multiplier

The multiplier used for voltages etc is hard coded (currently 4 = 48 Volt system). This can be read from the system, so I will have to do that as part of the initialisation.

Combined Values

Load and other things combine values from multiple locations to allow for larger numbers. I know that I have got this wrong in a number of places. Work to be done to test these for large numbers (eg: > 25 Amps etc).

<<less
Download (0.014MB)
Added: 2007-06-19 License: Perl Artistic License Price:
862 downloads
SamePlace 0.7.0.2007072315

SamePlace 0.7.0.2007072315


SamePlace is a browser extension to chat with other visitors of the page youre viewing. more>>
SamePlace is a browser extension to chat with other visitors of the page youre viewing, just like in everyday life you can chat with other people in places you go to.

Usage:

Simply right-click on the page you wish to enter and choose Enter Place from the menu.

Can I keep a contact list like with other IM clients?

Yes, and if youre using an existing Jabber or GTalk account, your contact list will already be available in SamePlace.

Can I put a box on my blog/forum/site that shows how many visitors are in the place and lets one join them?

Just insert this HTML in your pages:

< div id="visitors" >
< script type="text/javascript"
src="http://www.sameplace.cc/tools/online_visitors.js.v0.3" >
< /script >
< /div >

The < div > element is not strictly necessary but will let you control the size and border of the box with CSS.

Do I have to use an account at jabber.sameplace.cc?

No, in fact you can use any Jabber or GTalk account, and if you dont have one, the configuration wizard will show you a map where you can select the server closest to you to register one.

<<less
Download (0.11MB)
Added: 2007-07-25 License: GPL (GNU General Public License) Price:
824 downloads
Religion::Islam::PrayerTimes 1.02

Religion::Islam::PrayerTimes 1.02


Religion::Islam::PrayerTimes is a Perl module that calculates Muslim Prayers Times and Sunrise. more>>
Religion::Islam::PrayerTimes is a Perl module that calculates Muslim Prayers Times and Sunrise.

SYNOPSIS

use Religion::Islam::PrayerTimes;

#create new object with default options
my $prayer = Religion::Islam::PrayerTimes->new();

#Juristic Methods:
# 1 = Standard (Imams Shafii, Hanbali, and Maliki),
#2 = Hanafi
#The difference is in the Aser time only
$prayer->JuristicMethod(1);

# Calculation Method
#1: Umm Al-Qura Committee
#2: Muslim World League
#3: Egyptian General Authority of Survey
#4: University Of Islamic Sciences, Karachi
#5: ISNA, Islamic Society of North America
$prayer->CalculationMethod(3);

# Q. What is daylight saving? Ans. Many countries try to adopt their work time by subtracting
# from their clocks one hour in the Fall and Winter seasons.
$prayer->DaylightSaving(1);
#print "DaylightSaving: ". $prayer->DaylightSaving() ."n";

# set the location to clculate prayer times for.
# for Cairo, Egypt:
# http://heavens-above.com/countries.asp
$prayer->PrayerLocation(
Latitude => 30.050,
Longitude => 31.250,
Altitude => 24,
TimeZone => 2
);

my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
$mon++; $year += 1900;

#Adjust the Gregorian Dates by making sure that the month lengths
#are correct if not so take the extra days to next month or year.
my ($yg0, $mg0, $dg0) = $prayer->GDateAjust($year, $mon, $mday);
# Now calculate the prayer times. Times returns in hours decimal format

#%result = $prayer->PrayerTimes($year, $mon, $mday);
%result = $prayer->PrayerTimes($yg0, $mg0, $dg0);

#print "Fajr: " . $result{Fajr} . "n";
#print "Sunrise: " . $result{Sunrise} . "n";
#print "Zohar: " . $result{Zohar} . "n";
#print "Aser: " . $result{Aser} . "n";
#print "Maghrib: " . $result{Maghrib} . "n";
#print "Isha: " . $result{Isha} . "n";
#print "Fajir Rabita: " . $result{FajirRabita} . "n"; #Fajer using exact Rabita method for places >48
#print "Isha Rabita: " . $result{IshaRabita} . "n"; #Ash using exact Rabita method for places >48
#print "Eid Prayer Time: " . $result{Eid} . "n"; #Eid Prayer Time
#print "n";

# set time mode for 12 or 24 hour for FormatTime function.
$prayer->TimeMode(1);
#print time formated
#print "TimeMode: " . $prayer->TimeMode() ."n";

my ($h, $m, $ap);

($h, $m, $ap) = $prayer->FormatTime($result{Fajr});
print "Fajr: $h:$m $apn";

($h, $m, $ap) = $prayer->FormatTime($result{Sunrise});
print "Sunrise: $h:$m $apn";

($h, $m, $ap) = $prayer->FormatTime($result{Zohar});
print "Zohar: $h:$m $apn";

($h, $m, $ap) = $prayer->FormatTime($result{Aser});
print "Aser: $h:$m $apn";

($h, $m, $ap) = $prayer->FormatTime($result{Maghrib});
print "Maghrib: $h:$m $apn";

($h, $m, $ap) = $prayer->FormatTime($result{Isha});
print "Isha: $h:$m $apn";

#($h, $m, $ap) = $prayer->FormatTime($result{FajirRabita});
#print "Fajir Rabita: $h:$m $apn"; #Fajer using exact Rabita method for places >48

#($h, $m, $ap) = $prayer->FormatTime($result{IshaRabita});
#print "Isha Rabita: $h:$m $apn"; #Ash using exact Rabita method for places >48

#($h, $m, $ap) = $prayer->FormatTime($result{Eid});
#print "Eid Prayer Time: $h:$m $apn"; #Eid Prayer Time

<<less
Download (0.015MB)
Added: 2007-05-24 License: Perl Artistic License Price:
893 downloads
pkgmake 0.1.5

pkgmake 0.1.5


pkgmake automates some steps when making software releases. more>>
pkgmake project automates some steps when making software releases. It creates a copy of the development tree, optionally cleans it up a bit (i.e. removes CVS/* and .svn/*), tars it, places the tarball in the SOURCES/ directory, creates the corresponding .spec file from a provided template (and the data specified in the configuration/on the command line), and runs rpmbuild and/or debbuild.
Enhancements:
- Minor fixes and enhancements and a little cleanup were done.
- A companion program, called relman, is also available.
- Relman is a frontend and enhancement application, making the use of pkgmake even easier.
<<less
Download (0.020MB)
Added: 2007-08-11 License: GPL (GNU General Public License) Price:
805 downloads
list files 0.2

list files 0.2


list files package prints to file list of files in a given directory. more>>
list files package prints to file list of files in a given directory.
Handy if youd like to, say, tell a friend of yours what ebooks you have, and wouldnt feel like typing them all by hand.
Hope you can find it useful.
INSTALLATION
i assume youve got everything in its standard places; otherwise you probably know what to do anyway.
to install for one user
copy listFiles.desktop to ~/.kde/share/apps/konqueror/servicemenus
copy listFiles.sh to /usr/local/bin or elsewhere in the path
to install for all users
copy listFiles.desktop to /usr/share/apps/konqueror/servicemenus
copy listFiles.sh to /usr/local/bin or elsewhere in the path
Enhancements:
- added counting the number of items
- added the possibility to change the place where the listing is written to
- some minor changes to the code
<<less
Download (0.002MB)
Added: 2007-02-13 License: GPL (GNU General Public License) Price:
581 downloads
Blahz-DNS 0.50

Blahz-DNS 0.50


Blahz-DNS is a PHP/MySQL-based DNS administration. more>>
Blahz-DNS is PHP/MySQL based DNS (BIND 9/tinydns) administration with support for primary and secondary zones, user authentication, User and Admin account types (with read-only versions), and restricted access for user accounts to certain primary and secondary zones.
Enhancements:
Bugfixes:
- Search and replace now places updated zones into the updated table
Additions:
- Added import functionality. Will allow you to import zone files
- This is done by performing a dig @< dnsserver > < domain > AXFR and then parsing that output and inserting values into the DB.
- Added Search UI mode. Allows traditional listing mode and Search mode.
Changes:
- Swapped position of Write Zones and Restart server buttons since the old order didnt makes sense as you have to write the zones before restarting the server.
<<less
Download (0.023MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1643 downloads
Ugly Poker 1.0

Ugly Poker 1.0


Ugly Poker is a free video poker game for linux. more>>
Ugly Poker is a free video poker game for linux.

Ugly Poker is a Free Linux Game of Video Poker that might remind you of your favorite casino video poker machine youve played in Las Vegas or another casino somewhere in the world like gold studded Monaco, on a steamboat near Louisiana, around beautiful Lake Tahoe in Nevada, or Atlantic City on the boardwalk along the Atlantic Ocean.

With Ugly Poker, you can be reminded of those places just mentioned - without leaving your home. Call it ugly and convenient!

<<less
Download (1.8MB)
Added: 2005-12-09 License: Freeware Price:
1418 downloads
Gtk2::Ex::MindMapView::Layout::Cluster 0.000001

Gtk2::Ex::MindMapView::Layout::Cluster 0.000001


Gtk2::Ex::MindMapView::Layout::Cluster is a vertical layout of view items. more>>
Gtk2::Ex::MindMapView::Layout::Cluster is a vertical layout of view items.

HEIRARCHY

Gtk2::Ex::MindMapView::Layout::Group
+----Gtk2::Ex::MindMapView::Layout::Cluster

SYNOPSIS

use Gtk2::Ex::MindMapView::Layout::Cluster;

INTERFACE

new(cluster_no=>$cluster_no)

Instantiates an array of Gtk2::Ex::MindMapView::Items. All items in a cluster have a common predecessor item.

add($item)

Adds a item to the cluster, and adjusts the height and width of the cluster.

layout()

Places the cluster items on the canvas, and right or left justifies them.

seq_no()

Returns a number which is used to order the clusters in a column.

DIAGNOSTICS

Gtk2::Ex::MindMapView::Layout::Cluster requires a cluster_no

You must pass in a cluster_no argument when creating a Gtk2::Ex::MindMapView::Layout::Cluster

<<less
Download (0.049MB)
Added: 2007-02-08 License: Perl Artistic License Price:
988 downloads
Gtk2::Ex::MindMapView::Layout::Balanced 0.000001

Gtk2::Ex::MindMapView::Layout::Balanced 0.000001


Gtk2::Ex::MindMapView::Layout::Balanced is a Perl module with balanced layout for view items. more>>
Gtk2::Ex::MindMapView::Layout::Balanced is a Perl module with balanced layout for view items.

HEIRARCHY

Gtk2::Ex::MindMapView::Layout::Group
+----Gtk2::Ex::MindMapView::Layout::Balanced

SYNOPSIS

use Gtk2::Ex::MindMapView::Layout::Balanced;

A balanced layout for the mindmap. This module considers the "weight" of each Gtk2::Ex::MindMapView::Item when laying them out. The weight is a measure of the amount of screen real estate taken up by the item.

INTERFACE

new (graph=>$graph)

Instantiates a new balanced layout. This code assigns Gtk2::Ex::MindMapView::Item objects to columns based on their relationships to each other as determined by the Gtk2::Ex::MindMapView::Graph argument.
layout()

Places the items in the balanced layout on the canvas. This code determines the width of the columns in which the Gtk2:Ex::MindMapView::Items are placed, and positions the items appropriately on the canvas.

<<less
Download (0.049MB)
Added: 2007-01-15 License: Perl Artistic License Price:
1012 downloads
Webconverger 2.29

Webconverger 2.29


Webconverger project is an evolution of the hybrid client for deployments in places like offices or Internet cafes. more>>
Webconverger project is an evolution of the hybrid client for deployments in places like offices or Internet cafes where only Web applications are used.
Unlike thin or hybrid clients, Webconverger is faster and more responsive by providing a Web browser that runs locally.
Main features:
- Ideal just for Web applications
- Free & open software
- Low system requirements
- Good security
- Painless to deploy and setup
- Features a Web standards compliant browser
- Cost effective
- Does not require registration or accounts
- Flash and a PDF viewer installed by default
- Easy for new users to learn and use
- Low maintenance costs
- Long term support
Enhancements:
- The latest security updates to Iceweasel (Firefox) rebuild 2.0.0.6 have been applied.
- Previous versions of Webconverger will upgrade nonetheless with somewhat delayed startups.
<<less
Download (308.5MB)
Added: 2007-08-08 License: DFSG approved Price:
808 downloads
 
Other version of Webconverger
Webconverger 2.12 (Without Flash)Kai Hendry - Webconverger project is an evolution of the hybrid client for deployments in places like offices or Internet cafes. Webconverger
License:GPL (GNU General Public License)
Download (MB)
916 downloads
Added: 2007-04-26
JourneySat 1.1.2

JourneySat 1.1.2


JourneySat lets you show to your friends and relatives the places youve travelled to. more>>
JourneySat lets you show to your friends and relatives the places youve travelled to. You can combine diary notes, photos and satellite images and embed them into your web site either when youre back home or when youre still on the road.
After writing a diary note and adding the photos of the day, you can find out the exact geographical location of the places youve visited to let your friends see them from a satellite viewpoint, using the images provided by Google Maps TM.
In this way theyll see much more than what can be normally experienced through photos. As a further bonus, you can even specify the locations where you shoot your photos and theyll be marked on the satellite view.
And, well, why limit oneself to documenting travels? You can use JourneySat for anything that you do on the planet Earth.
One more word before directing you to the demo: JourneySat is free software. That means both that it costs no money and that you can modify it as you wish. JourneySat is licensed under the GNU General Public License. Read the terms of the license.
Enhancements:
- Several bugs were fixed in the code and in the documentation.
- The internal API has been completed with the implementation of methods to navigate through and edit the sequences of places and contents.
<<less
Download (0.035MB)
Added: 2005-10-20 License: GPL (GNU General Public License) Price:
1464 downloads
Pin 2.0 Kit 7259

Pin 2.0 Kit 7259


Pin is a tool for the dynamic instrumentation of programs. more>>
Pin is a tool for the dynamic instrumentation of programs. Pin supports Linux binary executables for Intel (R) Xscale (R), IA-32, IA-32E (64 bit x86), and Itanium (R) processors.
Pin was designed to provide functionality similar to the popular ATOM toolkit for Compaqs Tru64 Unix on Alpha, i.e. arbitrary code (written in C or C++) can be injected at arbitrary places in the executable. Unlike Atom, Pin does not instrument an executable statically by rewriting it, but rather adds the code dynamically while the executable is running. This also makes it possible to attach Pin to an already running process.
Pin provides a rich API that abstracts away the underlying instruction set idiosyncrasies and allows context information such as register contents to be passed to the injected code as parameters. Pin automatically saves and restores the registers that are overwritten by the injected code so the application continues to work. Limited access to symbol and debug information is available as well.
Enhancements:
- This release supports Windows and Mac OS X for IA-32.
<<less
Download (3.5MB)
Added: 2006-10-18 License: Freely Distributable Price:
1104 downloads
Tk::Tiler 804.027

Tk::Tiler 804.027


Tk::Tiler is a scrollable frame with sub-widgets arranged into rows. more>>
Tk::Tiler is a scrollable frame with sub-widgets arranged into rows.

SYNOPSIS

use Tk::Tiler;

my $tl = $parent->Scrolled(Tiler, -columns => n, -rows => n);

my $a = $tl->Xxxxx(...);
my $b = $tl->Xxxxx(...);
my $c = $tl->Xxxxx(...);

$tl->Manage($a,$b,$c);

Tiler is derived form Tk::Frame. It is a geometry managing widget which accepts widgets to manage. It places the widgets in a grid with as many widgets as possible in a row. All the "slots" in the grid are the same size, which is determined by the largest managed widget.

The grid may be scrolled vertically.

<<less
Download (5.7MB)
Added: 2007-08-21 License: Perl Artistic License Price:
794 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5