Main > Free Download Search >

Free license plate frames software for linux

license plate frames

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2094
phpLicenseWatcher 1.4.2

phpLicenseWatcher 1.4.2


phpLicenseWatcher is a Web frontend to the FlexLM lmstat and lmdiag commands. more>>
phpLicenseWatcher is a Web frontend to the FlexLM lmstat and lmdiag commands. You can keep track of usage, health of license servers, get alerted when licenses are due to expire, and capture usage history.
Main features:
- Shows the health of a license server or a group of them
- Check which licenses are being used and who is currently using them
- Get a listing of licenses, their expiration dates and number of days to expiration
- E-mail alert of licenses that will expire within certain time period ie. within next 10 days.
- Monitors license utilization
Enhancements:
- A new Web-based configuration interface.
- Many minor bugfixes
<<less
Download (0.065MB)
Added: 2006-11-30 License: GPL (GNU General Public License) Price:
1061 downloads
libbehate 0.0.1

libbehate 0.0.1


libbehate is a library with implementation of BHT communication protocol. more>>
libbehate is a library with implementation of BHT communication protocol.

This protocol is used in communication with Toyota Denso data collection terminals. Library itself uses librs232 for link layer.

Library is released under the term of LGPL license.

<<less
Download (0.31MB)
Added: 2007-07-24 License: LGPL (GNU Lesser General Public License) Price:
822 downloads
GNOME Translate 0.99

GNOME Translate 0.99


GNOME Translate is a natural language translator. more>>
GNOME Translate is a GNOME interface to libtranslate. It can translate a text or web page between several natural languages, and it can automatically detect the source language as you type.

GNOME Translate is free software, released under the terms of the GNU General Public License.

<<less
Download (0.29MB)
Added: 2005-07-29 License: GPL (GNU General Public License) Price:
1550 downloads
Net::Stomp::Frame 0.32

Net::Stomp::Frame 0.32


Net::Stomp::Frame is a STOMP Frame. more>>
Net::Stomp::Frame is a STOMP Frame.

SYNOPSIS

use Net::Stomp::Frame;
my $frame = Net::Stomp::Frame->new( {
command => $command,
headers => $headers,
body => $body,
} );
my $frame = Net::Stomp::Frame->parse($string);
my $string = $frame->as_string;

This module encapsulates a Stomp frame. Stomp is the Streaming Text Orientated Messaging Protocol (or the Protocol Briefly Known as TTMP and Represented by the symbol :ttmp). Its a simple and easy to implement protocol for working with Message Orientated Middleware from any language.

Net::Stomp is useful for talking to Apache ActiveMQ, an open source (Apache 2.0 licensed) Java Message Service 1.1 (JMS) message broker packed with many enterprise features.

A Stomp frame consists of a command, a series of headers and a body.

<<less
Download (0.006MB)
Added: 2007-06-23 License: Perl Artistic License Price:
853 downloads
Simple IPX Bridge 1.2

Simple IPX Bridge 1.2


SIB (Simple IPX Bridge) is able to tunnel IPX and IP frames received by your Ethernet device via UDP over the Internet. more>>
SIB (Simple IPX Bridge) is able to tunnel IPX and IP frames received by your Ethernet device via UDP over the Internet. It is able to put the interface it listens on to promiscous mode, so all frames (not only broadcasts, and frames for the tunneling server) can be received.
Actually every 802.3 frame can be tunneled, but SIB only tunnels IPX frames per default (this can be changed via command line). SIB also filters SMB over IPX, to reduce network traffic (this can be disabled too).
Additionally SIB takes care which frames belong to local MAC addresses and sends only broadcasts and frame to non-local MACs to the remote host.
A non-plus-ultra is, that SIB can compress every frame it tunnels via LZO, but you must have LZO library installed.
You may ask yourself: "Why should I need this?" Well, there are lot of answers, but the main reason is: FOR GAMES. Even with KALI for Windows ($14.99) and KALI cracked 1.2 ($0 - but bugs bugs bugs) there is no real WHOLE NETWORK to WHOLE NETWORK connection program which can tunnel IPX, filter SMB, compress it, and works with 2.4.0. And EVERY new game (for Windows) uses IPX for "network" (or should I say Internet ;-) games. (RA2, Q3, HL...)
Enhancements:
- fix for "divide by zero" bug on alpha
- fixed hostname resolver
- added option to set local UDP port
- added option to bind to an specific local IP
- MAC lists flushed on SIGHUP
<<less
Download (0.021MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1209 downloads
CGI::AppBuilder::Frame 0.10

CGI::AppBuilder::Frame 0.10


CGI::AppBuilder::Frame is a configuration initializer. more>>
CGI::AppBuilder::Frame is a configuration initializer.

SYNOPSIS

use CGI::AppBuilder::Frame;

my $ab = CGI::AppBuilder::Frame- >new(
ifn, my_init.cfg, opt, vhS:a:);
my ($q, $ar, $ar_log) = $ab- >start_app($0, %ARGV);
print $ab- >disp_form($q, $ar);

This class provides methods for reading and parsing configuration files.
new (ifn = > file.cfg, opt = > hvS:)

This is a inherited method from CGI::AppBuilder. See the same method in CGI::AppBuilder for more details.

frame_set ($fr, $pr)

Input variables:

$fr - frame set definiton array reference. The $fr contains two
elements [$hr, $ar]:
$hr - a hash ref containing the frame set attributes
$ar - a array ref containing hash references defining each
frames in the frame set.
$pr - tag attribute array ref. It contains three elements:
class - CSS class name
attr - attribute string such as width=5 onChange=js_func
hr - hash ref with key and value pairs. This will be obtained
from $fr for each frame set and frame.
pretty - whether to add line breaks

Variables used or methods called:

CGI::AppBuilder::Table
html_tag - generate HTML tags
CGI::AppBuilder::Message
echo_msg - display message

How to use:

The following shows how to define the frame array ($fr):

+-+----+ The following defines the left layout:
| | T |
| +----+ [{cols= >"150,*"},[
| | | {src= >"left.htm",name= >"L"},
|L| C | [{rows= >"100,*,50"},[
| | | {src= >"top.htm",name= >"T"},
| |----| {src= >"main.htm",name= >"C"},
| | B | {src= >"bottom.htm",name= >"B"}]]]
+-+----+ ]

In YAML, here is how it looks like:

---
cols: 150,*
- src: left.htm
name: L
- rows: 100,*,50
- src: top.htm
name: T
- src: main.htm
name: C
- src: bottom.htm
name: B
...

+-+------+ The following defines the left layout:
| | T |
| +----+-+ [{cols= >"150,*"},[
| | | | {src= >"left.htm",name= >"L"},
|L| C |R| [{rows= >"100,*,50"},[
| | | | {src= >"top.htm",name= >"T"},
| | | | [{cols= >"*,100"},[
| |----+-+ {src= >"main.htm",name= >"C"},
| | | {src= >"right.htm",name= >"R"}] ] ],
| | B | {src= >"bottom.htm",name= >"B"}]]
+-+----+-+ ]
In YAML, here is how it looks like:
---
cols: 150,*
- src: left.htm
name: L
- rows: 100,*,50
- src: top.htm
name: T
- cols: *,100
- src: main.htm
name: C
- src: right.htm
name: R
- src: bottom.htm
name: B
...
Here is the testing codes:
my $fr = [{cols= >"150,*"},[
{src= >"left.htm",name= >"L"},
[{rows= >"100,*,50"},[
{src= >"top.htm",name= >"T"},
{src= >"main.htm",name= >"C"},
{src= >"bottom.htm",name= >"B"}]
]]
];
my $pr = {pretty= >1};
print $obj- >frame_set($fr,$pr);
# the following is the result:

< FRAMESET cols=150,* >
< FRAME src=left.htm name=L >
< FRAMESET rows=100,*,50 >
< FRAME src=top.htm name=T >
< FRAME src=main.htm name=C >
< FRAME src=bottom.htm name=B >
< / FRAMESET >
< / FRAMESET >

$pr- >{_frameset_count} = 0; # reset frame set counter
my $f2 = [ {cols= >"150,*"},[
{src= >"left.htm",name= >"L"},
[{rows= >"100,*,50"},[
{src= >"top.htm",name= >"T"},
[{cols= >"*,100"},[
{src= >"main.htm",name= >"C"},
{src= >"right.htm",name= >"R"}]
],
{src= >"bottom.htm",name= >"B"}]
]]
];
print $obj- >frame_set($f2,$pr);
# the following is the result:

< FRAMESET cols=150,* >
< FRAME src=left.htm name=L >
< FRAMESET rows=100,*,50 >
< FRAME src=top.htm name=T >
< FRAMESET cols=*,100 >
< FRAME src=main.htm name=C >
< FRAME src=right.htm name=R >
< / FRAMESET >
< FRAME src=bottom.htm name=B >
< / FRAMESET >
< / FRAMESET >

Return: HTML codes.

This method generates HTML codes based on the information provided. This method is also called < I >frameset< / I >.

<<less
Download (0.010MB)
Added: 2007-07-12 License: Perl Artistic License Price:
841 downloads
ContentLicensing 1.0.4

ContentLicensing 1.0.4


ContentLicensing provides a tool is used to manage copyright licenses within plone. more>>
ContentLicensing provides a tool is used to manage copyright licenses within plone.
This tool is used to manage copyright licenses within plone. It allows for both a site wide copyright license to be set by default, and the ablility to set licenses on individual objects. It supports a number of licenses including all rights reserved, GFDL, and Creative Commons (with an integrated license picker). You can also enter and select licenses not supported by default, or configure new licenses that will appear in the selection widget for your Plone instance.
Main features:
- Configlet for setting default sitewide settings.
- Citation hot link to the copyright byline. Citation appears in full text for plain and print views.
- Support for Creative Commons style RDF embedded in RSS feeds. Can use this feed in place of the standard default RSS feed shipped with Plone.
- Support for jurisdiction setting, making it possible to choose a correct Creative Commons license based on your geographical location.
- Support for the latest Zope and Plone (Zope-2.9.5/Plone-2.5.1).
- DublinCoreExtensions addon is now incorporated into the Content Licensing Product.
- Site wide defaults for Copyright, Copyright Holder, and Copyright License.
- Custom settings for document, file and image objects.
- Copyright Byline at the bottom of content object views.
- RDF metadata and license info embedded in the view.
- Support for search engine compatibility and content licensing.
- Adds two Dublin Core metadata extensions to content objects.
- Built using Zope annotations, with Zope 3 style configuration and views.
<<less
Download (0.039MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
933 downloads
Tech Mon Lte 0.1

Tech Mon Lte 0.1


Tech Mon Lte is a TechMon variation with no frames, Default font used in theme is Bitstream Vera Sans. more>>
Tech Mon Lte is a TechMon variation with no frames, Default font used in theme is Bitstream Vera Sans, make sure you have this font.

This version works best on a darker background, please let me know if you need any variations for lighter wallpaper.

As always, any issues, report back here.

<<less
Download (0.028MB)
Added: 2006-06-21 License: GPL (GNU General Public License) Price:
1220 downloads
Frameworks 0.3.6

Frameworks 0.3.6


Frameworks is stop-motion animation frame capture software primarily for Linux. more>>
Frameworks is stop-motion animation frame capture software primarily for Linux. It captures images from a camera and strings them together into an animation.
These still images may then be combined into a single video file using other software. Only video4linux webcams are currently supported; work is being done to add other types of digital cameras including IEEE 1394 camcorders, and USB still cameras. Frameworks is designed to be easily used alongside the GIMP Animation Package (GAP).
Frameworks began as an extension of gqcam, though it no longer shares any code with gqcam. Frameworks is free software (and therefore open source) licensed under the GNU GPL. Without gqcam being free software, Frameworks would not exist.
Main features:
- Frame averaging: The averaging together of multiple frames to reduce random noise in the captured image.
- Frame overlay or onion skinning: Overlaying previous frames ontop of the live display to assist with positioning of objects during animation.
- Continuous preview: Preview the previous few seconds of animation, ending with the live feed from the webcam to assist with object positioning.
<<less
Download (0.12MB)
Added: 2006-01-27 License: GPL (GNU General Public License) Price:
1369 downloads
MPEG::Audio::Frame 0.09

MPEG::Audio::Frame 0.09


MPEG::Audio::Frame is a class for weeding out MPEG audio frames out of a file handle. more>>
MPEG::Audio::Frame is a class for weeding out MPEG audio frames out of a file handle.

SYNOPSIS

use MPEG::Audio::Frame;

open FILE,"file.mp3";

while(my $frame = MPEG::Audio::Frame->read(*FILE)){
print $frame->offset(), ": ", $frame->bitrate(), "Kbps/", $frame->sample()/1000, "KHzn"; # or something.
}

A very simple, pure Perl module which allows parsing out data from mp3 files, or streams, and chunking them up into different frames. You can use this to accurately determine the length of an mp3, filter nonaudio data, or chunk up the file for streaming via datagram. Virtually anything is possible.

<<less
Download (0.35MB)
Added: 2006-06-19 License: Perl Artistic License Price:
1222 downloads
SimPat 0.20

SimPat 0.20


SimPat - Simple Patricia trie a.k.a. crit-bit tree routines (written in C) to map bit-strings to values. more>>
SimPat - Simple Patricia trie a.k.a. crit-bit tree routines (written in C) to map bit-strings to values. PATRICIA is a funky acronym for ``Practical Algorithm to Retrieve Information Coded In Alphanumeric.

The project is license under Mozilla Public License 1.1 (MPL) license.

<<less
Download (0.041MB)
Added: 2007-07-04 License: MPL (Mozilla Public License) Price:
847 downloads
I Love Autumn Icons for Linux -

I Love Autumn Icons for Linux -


An icon collection designed to beautify your computer screen. more>> License:Free for personal non-commercial use, Includes a link back to author site
Comment:16 Cute Love Autumn Icons
<<less
Download (252KB)
Added: 2009-04-14 License: Freeware Price: Free
192 downloads
ELinks 0.11.3

ELinks 0.11.3


ELinks is an advanced and well-established feature-rich text mode web (HTTP/FTP/..) browser. more>>
ELinks project is an advanced and well-established feature-rich text mode web (HTTP/FTP/..) browser. ELinks can render both frames and tables, is highly customizable and can be extended via Lua or Guile scripts.
It is very portable and runs on a variety of platforms. Check the about page for a more complete description.
ELinks is an Open Source project covered by the GNU General Public License. It originates from the Links project written by Mikulas Patocka, and it is currently maintained by Jonas Fonseca.
Enhancements:
- This release merges a lot of changes from the unstable branch.
- It mainly focuses on bugfixes, while it also adds a few enhancements.
- Among the updates are various security related fixes, so people following the stable branch are advised to update.
<<less
Download (3.5MB)
Added: 2007-04-16 License: GPL (GNU General Public License) Price:
922 downloads
Lantern 1.0.1

Lantern 1.0.1


LANtern analyzes frames and packets on your network. more>>
LANtern is a frame and packet analyzer for Linux. Its written in C (without pcap) and released under the MIT license.

LANtern currently supports ethernet frames, ARP, MPLS, RARP, IPv4 (AH, ESP, GRE, ICMP, IGMP, TCP, IPComp, UDP, UDP-Lite, and IP-in-IP encapsulation)

I hope to soon write/release a BSD version.

Feel free to make changes to fit your needs. This isnt released under the GPL so youre not "required" to submit modifications, but if you want to send me some enhancements or new features, please do.
<<less
Download (0.018MB)
Added: 2005-10-11 License: GPL (GNU General Public License) Price:
1475 downloads
BrowserLauncher2 1.1

BrowserLauncher2 1.1


BrowserLauncher2 is a library that facilitates opening a browser from a Java application. more>>
BrowserLauncher2 is a library that facilitates opening a browser from a Java application and directing the browser to a supplied URL.

In most cases, the browser opened will be the users default browser.

BrowserLauncher2 is free software and it is being released under the GNU Lesser General Public License.

<<less
Download (0.24MB)
Added: 2007-06-13 License: LGPL (GNU Lesser General Public License) Price:
864 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5