Main > Free Download Search >

Free flying j truck stop software for linux

flying j truck stop

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 694
Flying Saucer R7

Flying Saucer R7


Flying Saucer project is a pure Java XML/CSS 2 renderer. more>>
Flying Saucer project is a pure Java XML/CSS 2 renderer whose aim is to provide spec-compliant CSS 2.1 rendering for any well-formed XML document.
The current codebase can render to Java2D-based canvases and to PDF via the iText library, and covers a great deal of the CSS 2.1 specification.
There are demos for rendering XHTML, rendering within Swing applications, and rendering to PDF. Direct rendering from DocBook or other XML formats is possible, provided the appropriate CSS is available.
Main features:
- Vertical margin collapsing; CSS 2.1 specification
- Z-index property and stacking contexts; CSS 2.1 specification
- Vertical-align: top/bottom; CSS 2.1 specification
- PDF rendering via the iText library; support for PDF bookmarks, pagination and breaks, and more
- Pagination support, automatic and explicit: CSS 2.1 specification
- Rewritten "float" implementation
- Improved list marker positioning
Enhancements:
- This release includes comprehensive table support, faster rendering, bugfixes, better image generation, near-complete compliance with the CSS 2.1 specification, including lots of improvements like better forms support, CSS counters, cursor property support, compliant font property handling, and so on.
- Theres even a completely new, fast, and compliant CSS 2.1 parser built-in.
<<less
Download (2.9MB)
Added: 2007-07-15 License: LGPL (GNU Lesser General Public License) Price:
834 downloads
Xfce 4 Timer Plugin 0.5.1

Xfce 4 Timer Plugin 0.5.1


Xfce 4 Timer Plugin is a simple plugin that lets the user run an alarm at a specified time. more>>
Xfce 4 Timer Plugin is a simple plugin that lets the user run an alarm at a specified time or at the end of a specified countdown period.

Usage:

The plugin is quite simple – it displays a progressbar showing the percentage of the time elapsed. Left-clicking on the plugin area opens a menu of available alarms. After selecting one, the user can start or stop the timer by selecting “start/stop timer” entry in the same menu.

New alarms are added through the preferences window. Each alarm is either a countdown or is run at a specified time. By default a simple dialog pops up at the end of the countdown. The user can choose an external command to be run as the alarm and may also choose to have this repeated a specified number of times with a given interval between repetitions.

<<less
Download (0.29MB)
Added: 2007-03-07 License: GPL (GNU General Public License) Price:
964 downloads
Momonga Linux 6

Momonga Linux 6


Momonga Linux 6 is a Linux distribution developed in a Bazaar model style among its user community. more>>

Momonga Linux 6 is a Linux distribution developed in a "Bazaar" model style among its user community.

A Momonga (aka Pteromys momonga) is a flying squirrel found both in Europe and Asia. It's an animal known for a self-asserting behaviour, despite its small size.

Major Features:

  1. A distribution developed by and for its own users.
    • "Bazaar"-style Development.
    • Secure Default Settings.
    • Strong Support and Usage of Ruby.
    • Easy Handling and Processing of Electronic Documents.
    • Packages for Scientific and Technical Computations.
  2. An easily configurable installer built for the broadband age.
    • Support for a Large Number of Filesystems.
    • Selection of the Newest Packages at the Time of Installation.
  3. A unique package management system for easy updating and upgrading.
  4. Compatibility with the next-generation standards.
    • LSB compatibility.
    • Li18nux Compatible Internationalization.
    • IPV6 Implementation.
  5. Comprehensive Documentation.
    • Abundant configuration examples.
    • Automatic Q&A Service.

Enhancements:

  • Reduced the size of the installation media to one DVD (additional packages can be installed via yum);
  • Linux kernel 2.6.26 with extended hardware support, virtualisation and support for new file systems (btrfs and nilfs, reiser4fs);
  • X.Org 7.4 and Mesa 7.1 with improved graphics card support and Compiz compatibility; replaced SysVInit with Canonical's Upstart for faster booting;
  • Switched to the GCC compiler 3.4 series; replaced Sun Javawith OpenJDK 1.6;
  • Introduced support for virtualisation with OpenVZ and Xen.
<<less
Added: 2009-07-27 License: GPL Price: FREE
downloads
Slimserver Control 1.0

Slimserver Control 1.0


Slimserver Control is a Amarok script that can control your Slimserver (play/stop) from Amarok. more>>
Slimserver Control is a Amarok script that can control your Slimserver (play/stop) from Amarok.

Usage:

Run the script. On first run, it will ask for the Slimserver IP address, port and the Squeezebox MAC address. If in doubt for the answers, browse to your Slimserver home page, then, while playing a song, move your mouse over the "Play" button. You should see in the status bar of your browser a URL similar to this one:

http://localhost:9000/status_header.html?p0=play&player=00%3A04%3A20%3A06%3A9c%3Aaa

In this example:

Slimserver IP adddress = localhost

Slimserver port = 9000

Squeezebox MAC address = 00%3A04%3A20%3A06%3A9c%3Aaa


Form more information about Slimserver and Squeezebox, look at: www.slimdevices.com

<<less
Download (0.008MB)
Added: 2006-12-11 License: GPL (GNU General Public License) Price:
1049 downloads
Ingres::Utility::IIMonitor 0.13

Ingres::Utility::IIMonitor 0.13


Ingres::Utility::IIMonitor is a Perl API to iimonitor Ingres RDBMS utility. more>>
Ingres::Utility::IIMonitor is a Perl API to iimonitor Ingres RDBMS utility.

SYNOPSIS

use Ingres::Utility::IIMonitor;

# create a connection to an IIDBMS server
# (server id can be obtained through Ingres::Utility::IINamu)
$foo = Ingres::Utility::IIMonitor->new($serverid);

# showServer() - shows server status
#
# is the server listening to new connections? (OPEN/CLOSED)
$status =$foo->showServer(LISTEN);
#
# is the server being shut down?
$status =$foo->showServer(SHUTDOWN);

# setServer() - sets server status
#
# stop listening to new connections
$status =$foo->setServer(CLOSED);
#
# start shutting down (wait for connections to close)
$status =$foo->setServer(SHUT);

# stop() - stops IIDBMS server (transactions rolled back)
#
$ret = $foo->stop();

# showSessions($target,$mode) - prepares to get sessions info
print $foo->showSessions(SYSTEM,FORMATTED);

# getSession() - get sessions call-after-call from previous showSessions()
while (%session = $foo->getSession()) {
print "Session ". $session{SESSION_ID} . ":n"
foreach $label, $value (%session) {
print "t$label:t$valuen" if ($label ne SESSION_ID);
}
}

This module provides an API to the iimonitor utility for Ingres RDBMS, which provides local control of IIDBMS servers and sessions (system and user conections).

<<less
Download (0.007MB)
Added: 2007-01-24 License: Perl Artistic License Price:
1007 downloads
SDL Sopwith 1.7.1

SDL Sopwith 1.7.1


SDL Sopwith project is a port of the classic flying game Sopwith. more>>
SDL Sopwith project is a port of the classic flying game Sopwith.
SDL Sopwith is a port of the classic flying game Sopwith to modern operating systems and toolkits.
It was originally a port to the LibSDL toolkit, but there is now a GTK+ version also.
Main features:
- Modern native application - will run under Windows, GNU/Linux, BeOS and probably most modern operating systems supported by LibSDL
- Working sound (emulated PC speaker through the sound card output)
- Working Multiplayer
- More configurable than the original (options from Sopwith 2/ The authors edition can be turned off)
- Vastly cleaned up and portable code
Enhancements:
- Fix some compilation errors due to an error in swinit.c
- Fix networking which got broken somewhere.
<<less
Download (0.17MB)
Added: 2006-12-06 License: GPL (GNU General Public License) Price:
1064 downloads
gMUTOO 0.1

gMUTOO 0.1


gMUTOO is an elegant service launcher/stopper/monitor that resides in the window manager tray. more>>
gMUTOO is an elegant service launcher/stopper/monitor that resides in the window manager tray. gMUTOO has been mostly thought for the launch of daemons (ftpd, sshd, httpd and so on), but it can be used to start/stop pretty anything.

For each entry of its launch menu, a monitored file can be specified (usually a PID file). The status of this file (exists/doesnt exist) is monitored with Gamin (a FAM re-implementation); changes in the file status influence the behaviour of gMUTOO, that displays the status of the service and allows to quickly start it if the status is off and to stop it if the status is on.

gMUTOO can also be compiled without Gamin support, but the file monitor wont be available in this case (for each entry in its menu, gMUTOO will then provide start/stop buttons so the user can decide if a service should be started or stopped).

<<less
Download (0.088MB)
Added: 2006-04-28 License: GPL (GNU General Public License) Price:
1274 downloads
Debian vs Pimientos 1.1.0

Debian vs Pimientos 1.1.0


Debian vs Pimientos is a fun arcade in which you have to kill peppers using the logo of Debian. more>>
Debian vs Pimientos is an arcade game developed using the SDL libraries SDL, SDL_image, SDL_mixer, and SDL_ttf. This permits the portability of the game to some systems and machines.
Debian vs Pimientos is the first game of NEOPONTEC Games, and the first to use the NNG Engine (New Neopontec Gaming Engine) developed by Hector Blanco (me) that uses the mentioned SDL Libraries.
The game concept is very easy to understand and to play. There are a lot of peppers (pimientos is the spanish word for peppers) that are flying by the sky, and you, armed with the Debian logo must fight them. The Debian logo shoots GNU heads to kill these devil pimientos
Main features:
- 800x600 resolution at 32 bits.
- High quality images.
- Addictive and funny playing experience
- Cross-platform open source game: (binaries for Win32 & Linux, and sources for other systems).
- Different classes of peppers (pimientos).
<<less
Download (0.66MB)
Added: 2006-10-08 License: GPL (GNU General Public License) Price:
1114 downloads
KFLog 2.1.1

KFLog 2.1.1


KFLog is an OpenSource program aimed at glider pilots. more>>
KFLog is an OpenSource program aimed at glider pilots. It gives you a powerfull tool to plan your flight tasks before you go flying and analyse your flights afterwards.

KFLog is the only flight analyser program available for Linux to be recognized by the FAI IGC.

KFLog projects the flights on a digital vectormap, that contains not only airfields and airspaces, but a complete elevation-map, roads, cities, rivers, and lots of other interesting objects.

<<less
Download (0.91MB)
Added: 2005-06-17 License: GPL (GNU General Public License) Price:
1590 downloads
Rock Dodgers 0.6.0a

Rock Dodgers 0.6.0a


Rock Dodgers project is a game in which you avoid flying space rocks. more>>
Rock Dodgers project is a game in which you avoid flying space rocks.

Use your shields, fire your thrusters, cross your fingers, and kiss your ship goodbye.

<<less
Download (0.41MB)
Added: 2006-12-07 License: GPL (GNU General Public License) Price:
1054 downloads
NGStar 2.1.8

NGStar 2.1.8


NGStar is a clone of the HP48 game dstar. more>>
NGStar project is a clone of the HP48 game dstar. A little circle that runs fast but doesnt know how to stop has to collect gifts with the help of its stopper friend the square.
Installation:
$ ./configure
$ make
$ make install
Enhancements:
- The ncurses GUI was polished with a score panel.
- The levelset panel and a black-and-white mode were finished.
- Various small bugfixes were made.
<<less
Download (0.23MB)
Added: 2006-02-06 License: GPL (GNU General Public License) Price:
767 downloads
NzbGui 0.1.0

NzbGui 0.1.0


NzbGui provides an easy way to control NzbGet server throw a visual interface. more>>
NzbGui provides an easy way to control NzbGet server throw a visual interface. The project allows the user to connect to the daemon remotely, and the user can add new downloads, start/stop the daemon, set the download rate, etc.

<<less
Download (0.17MB)
Added: 2007-03-02 License: GPL (GNU General Public License) Price:
967 downloads
Ingres::Utility::IINamu 0.07

Ingres::Utility::IINamu 0.07


Ingres::Utility::IINamu is a Perl API to iinamu Ingres RDBMS utility. more>>
Ingres::Utility::IINamu is a Perl API to iinamu Ingres RDBMS utility.

SYNOPSIS

List registered INGRES (IIDBMS) services:

use Ingres::Utility::IINamu;

my $foo = Ingres::Utility::IINamu->new();

# list all INGRES-type servers (iidbms)
print $foo->show(INGRES);

# process each server separately
while (my @server = $foo->getServer()) {

print "Server type: $server[0]tname:$server[1]tid:$server[2]";

if (defined($server[3])) {

print "t$server[3]";

}

print "n";

}

# stop IIGCN server (no more connections to all of Ingres services)
$ret = $foo->stop();

...

This module provides an API to the iinamu utility for Ingres RDBMS, which provides local interaction and control of IIGCN server, in charge of registering all Ingres services.

Through this interface, it is possible to obtain a list of all registered services, for later processing (eg. iimonitor), and also stopping the IIGCN server (EXTREME CAUTION: Ingres may need to be restarted!).

<<less
Download (0.006MB)
Added: 2007-01-25 License: Perl Artistic License Price:
1002 downloads
Tuxum InitManager 0.8

Tuxum InitManager 0.8


Tuxum InitManager is a init.d manager. more>>
Tuxum InitManager is a init.d manager that allows the administrator of a system to:
Main features:
- View short descriptions about known services.
- Start/Stop services.
- Change runlevels at which the services are started/stoped.
- Add user notes about services.
- Launch an associated config program if any.
- Features a tag based system to easily classify services.
<<less
Download (0.32MB)
Added: 2007-07-20 License: GPL (GNU General Public License) Price:
826 downloads
PHP 5.0.1 Linux

PHP 5.0.1 Linux


The PHP Package !!! - Linux Version more>>
PHP began as a quick Perl hack written by Rasmus Lerdorf in 1994.
Over the next two to three years, it evolved into what we today know as PHP/FI 2.0. PHP/FI started to get a lot of users, but things didn`t start flying until Zeev Suraski and Andi Gutmans suddenly came along with a new parser in the summer of 1997, leading to PHP 3.0. PHP 3.0 defined the syntax and semantics used in both versions 3 and 4.
<<less
Download (4.98MB)
Added: 2009-04-29 License: Freeware Price:
202 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5