Main > Free Download Search >

Free delayed shutdown 2.01 software for linux

delayed shutdown 2.01

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 362
livecoding 2.01

livecoding 2.01


Code reloading support library for Python more>>
livecoding 2.01 is yet another excellent utility for any developers It actually provides code reloading support library for Python.

There are two key facets this library:

  • The code reloading functionality it provides.
  • The bypassing of the standard module system with a custom one.

The standard module system is still there and continues to work with the custom one, but only the custom one is covered by the code reloading functionality of this library.

In order to decide whether you want the flexibility of the code reloading that this library provides, you need to decide whether you can live with writing the reloadable scripts within the custom module system.

Major Features:

  1. Automatic code reloading on script file changes.
  2. Less interruptions to developer workflow.
  3. Code reloading allows a running application to change its behaviour in response to changes in the Python scripts it uses. When the library detects a Python script has been modified, it reloads that script and replaces the objects it had previously made available for use with newly reloaded versions.
  4. As a tool, it allows a programmer to avoid interruption to their workflow and a corresponding loss of focus. It enables them to remain in a state of flow. Where previously they might have needed to restart the application in order to put changed code into effect, those changes can be applied immediately.

Requirements:

  • Python
<<less
Added: 2009-04-27 License: BSD License Price: FREE
12 downloads
MR Tech Disable XPI Install Delay 2.4.1

MR Tech Disable XPI Install Delay 2.4.1


MR Tech Disable XPI Install Delay offers you a wonderful and totally free extension which enables fast extension to install. more>> MR Tech Disable XPI Install Delay 2.4.1 offers you a wonderful and totally free extension which enables fast extension to install. Disables default delay when installing extensions.

Enhancements: Minor version bump

Requirements: Mozilla Thunderbird


<<less
Added: 2009-02-14 License: MPL Price: FREE
26 downloads
XMediaGrabber 0.5.8c

XMediaGrabber 0.5.8c


XMediaGrabber is a large recording suite for Dreambox, DBox 2 and VDR compatible receivers/PCs. XMediaGrabber runs os independent on Windows, Linux and MacOS. Only Java 5 runtime has to be installed. Timer programming is the main focus of this program. It is possible to create repeating timers, system timers e.g. to shutdown the pc/box. This timers can be created from different sources e.g. Premiere MovieGuide, TVBrowser, TVGenial or over the more>>

XMediaGrabber - XMediaGrabber is a large recording suite for Dreambox, DBox 2 and VDR compatible receivers/PCs.

XMediaGrabber runs os independent on Windows, Linux and MacOS. Only Java 5 runtime has to be installed.

Timer programming is the main focus of this program. It is possible to create repeating timers, system timers e.g. to shutdown the pc/box.

This timers can be created from different sources e.g. Premiere MovieGuide, TVBrowser, TVGenial or

over the internet with Klack and the web interface of XMediaGrabber. XMediaGrabber has an intelligent timer administration which checks

for doubled entries or overlapping. Also timer can be created automatically from an indivudal notice list.

XMediaGrabber supports simultaneously recording from multiple receivers.

After a finished recording, several post processing possibilities are available (manual oder automatically). So it is possible to convert the

recorded data to DVD structure which can be burned with any DVD Burning application.

An integrated FTP-Client allows to transfer recordings from external storages to pc and convert directly.

XMediaGrabber has a plugin interface. Other features can be installed easily. Currently following plugins exist:

* Premiere Movieguide - Creating timers out of this guide

* Movielist Plugin - Administration of movies

* SerieGuide - Administration of TV series

* BoxControl - Remote control of your receiver


Enhancements:
Version 0.5.7h
System Requirements:
<<less
Download (12.8Mb)
Added: 2008-08-30 License: Free Price: Free
24 downloads
cdrtools 2.01.01a34

cdrtools 2.01.01a34


cdrtools is a tool to create disk-at-once and track-at-once CDs. more>>
cdrtools (formerly cdrecord) creates home-burned CDs with a CDR/CDRW recorder. It works as a burn engine for several applications.
cdrtools supports CD recorders from many different vendors; all SCSI-3/mmc- and ATAPI/mmc-compliant drives should also work.
Supported features include IDE/ATAPI, parallel port, and SCSI drives, audio CDs, data CDs, and mixed CDs, full multi-session support, CDRWs (rewritable), TAO, DAO, RAW, and human-readable error messages.
cdrtools includes remote SCSI support and can access local or remote CD writers.
Enhancements:
- A +-1 size realloc() problem was fixed in TOC handling for cdda2wav.
- A workaround was added for a double free problem in mkisofs, introduced with multi-extent file support, that caused it to dump core on Cygwin.
<<less
Download (1.9MB)
Added: 2007-08-21 License: GPL (GNU General Public License) Price:
817 downloads
Tk::after 804.027

Tk::after 804.027


Tk::after can execute a command after a time delay. more>>
Tk::after can execute a command after a time delay.

SYNOPSIS

$widget->after(ms)
$id = $widget->after(ms?,callback?)
$id = $widget->repeat(ms?,callback?)
$widget->afterCancel($id)
$id = $widget->afterIdle(callback)
$widget->afterInfo?($id)?
$id->time(?delay?)

This method is used to delay execution of the program or to execute a callback in background sometime in the future.
In perl/Tk $widget->after is implemented via the class Tk::After, and callbacks are associated with $widget, and are automatically cancelled when the widget is destroyed. An almost identical interface, but without automatic cancel, and without repeat is provided via Tk::after method.

Internal Details

The internal Tk::After class has the following synopsis:

$id = Tk::After->new($widget, tid, $time, once, callback);
$id = Tk::After->new($widget, tid, $time, repeat, callback);
$id->cancel;
$id->time(?delay?);

$id is a Tk::After object, an array of 5 elements:

$widget is the parent widget reference.

tid is the internal timer id, a unique string.

$time is the string idle, representing an idle queue timer, or a integer millisecond value.

once or repeat specifies whether the timer is a one-time after event, or a repeating repeat event.

callback specifies a Perl/Tk Tk::Callback object.

Changing a repeat timer interval

Its posible to change a repeat timers delay value, or even cancel any timer, using the time method. If delay is specified and non-zero, a new timer delay is established. If delay is zero the timer event is canceled just as if $id->cancel were invoked. In all cases the current millisecond timer delay is returned.

Note: the new timer delay will take effect on the subsequent timer event - this command will not cancel the pending timer event and re-issue it with the new delay time.

The after() method has several forms as follows:

$widget->after(ms)

The value ms must be an integer giving a time in milliseconds. The command sleeps for ms milliseconds and then returns. While the command is sleeping the application does not respond to events.

$widget->after(ms,callback)

In this form the command returns immediately, but it arranges for callback be executed ms milliseconds later as an event handler. The callback will be executed exactly once, at the given time. The command will be executed in context of $widget. If an error occurs while executing the delayed command then the Tk::Error mechanism is used to report the error. The after command returns an identifier (an object in the perl/Tk case) that can be used to cancel the delayed command using afterCancel.

$widget->repeat(ms,callback)

In this form the command returns immediately, but it arranges for callback be executed ms milliseconds later as an event handler. After callback has executed it is re-scheduled, to be executed in a futher ms, and so on until it is cancelled.

$widget->afterCancel($id)

$id->cancel

Cancels the execution of a delayed command that was previously scheduled. $id indicates which command should be canceled; it must have been the return value from a previous after command. If the command given by $id has already been executed (and is not scheduled to be executed again) then afterCancel has no effect.

$widget->afterCancel(callback)

This form is not robust in perl/Tk - its use is deprecated. This command should also cancel the execution of a delayed command. The callback argument is compared with pending callbacks, if a match is found, that callback is cancelled and will never be executed; if no such callback is currently pending then the afterCancel has no effect.

$widget->afterIdle(callback)

Arranges for callback to be evaluated later as an idle callback. The script will be run exactly once, the next time the event loop is entered and there are no events to process. The command returns an identifier that can be used to cancel the delayed command using afterCancel. If an error occurs while executing the script then the Tk::Error mechanism is used to report the error.

$widget->afterInfo?($id)?

This command returns information about existing event handlers. If no $id argument is supplied, the command returns a list of the identifiers for all existing event handlers created by the after and repeat commands for $widget. If $id is supplied, it specifies an existing handler; $id must have been the return value from some previous call to after or repeat and it must not have triggered yet or been cancelled. In this case the command returns a list with three elements. The first element of the list is the callback associated with $id, the second element is either idle or the integer timer millisecond value to indicate what kind of event handler it is, and the third is a string once or repeat to differentiate an after from a repeat event.

The after(ms) and afterIdle forms of the command assume that the application is event driven: the delayed commands will not be executed unless the application enters the event loop. In applications that are not normally event-driven, the event loop can be entered with the vwait and update commands.

<<less
Download (5.7MB)
Added: 2007-08-21 License: Perl Artistic License Price:
795 downloads
Mirth 1.6.0

Mirth 1.6.0


Mirth is a cross-platform HL7 interface engine that enables bi-directional sending of HL7 messages. more>>
Mirth is a cross-platform HL7 interface engine that enables bi-directional sending of HL7 messages between systems and applications over multiple transports.
Enhancements:
- NCPDP messaging support
- Plug-in functionality
- Enhanced message workflow
- Global scripting support
- Deploy, Shutdown, Postprocessor scripts
- Client-mode LLP Receiver
- Real-time connection status monitoring
- Web-Service authentication
- Dynamic listener/sender addresses
- Improved LLP, JMS, HTTP and TCP connectors
- Ability to poll by time of day (JDBC, File, FTP, SFTP)
- Ability to access sockets from transformer
- Compatibility fixes for Meditech, Centricity and .Net servers
- Backup and Restore
- Upgrade and Migration support
- JBoss compatibility
- ...and many more fixes and improvements
<<less
Download (47.6MB)
Added: 2007-08-17 License: MPL (Mozilla Public License) Price:
803 downloads
Webalizer Xtended 2.01.10 RB19

Webalizer Xtended 2.01.10 RB19


Webalizer Xtended is an extension of Webalizer. more>>
Webalizer Xtended is an extension of Webalizer, which adds additional monthly statistics for all "404 Not Found" errors found in your server log-file, including the number of the "404 Not Found" requests and the corresponding 404 URLs.
Webalizer Xtended project also fixes truncated user agent strings in the "User Agents" statistics, so user agent fields can now be grouped more precisely. It is helpful for detecting and correcting broken links or invasion attempts.
Main features:
- Additional monthly statistics for all "404 Not Found" errors found in your server log-file, including the number of the "404 Not Found"-requests and the corresponding 404-URLs
- "404 Not Found" statistics with incremental logfile processing
- Bug-fix for truncated user agent strings in the "User Agents" statistics of Webalizer version 2.01-10 (user agent fields can now be grouped more precisely)
- Bug-fixes for several buffer overflows in the original Webalizer code
Enhancements:
- IPv6 support was added.
- Several third-party patches were implemented.
- General improvements were made, such as an updated "GroupAgent"-list, a "Main"-link for navigation back to the main index, and updated language files.
<<less
Download (0.44MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
812 downloads
XML::Handler::HTMLWriter 2.01

XML::Handler::HTMLWriter 2.01


XML::Handler::HTMLWriter is a SAX Handler for writing HTML 4.0. more>>
XML::Handler::HTMLWriter is a SAX Handler for writing HTML 4.0.

SYNOPSIS

use XML::Handler::HTMLWriter;
use XML::SAX;

my $writer = XML::Handler::HTMLWriter->new(...);
my $parser = XML::SAX::ParserFactory->parser(Handler => $writer);
...

This module is based on the rules for outputting HTML according to http://www.w3.org/TR/xslt - the XSLT specification. It is a subclass of XML::SAX::Writer, and the usage is the same as that module.

Usage

First create a new HTMLWriter object:

my $writer = XML::Handler::HTMLWriter->new(...);

The ... indicates parameters to be passed in. These are all passed in using the hash syntax: Key => Value.

All parameters are from XML::SAX::Writer, so please see its documentation for more details.

Now pass $writer to a SAX chain:

e.g. a SAX parser:

my $parser = XML::SAX::ParserFactory->parser(Handler => $writer);

Or a SAX filter:

my $tolower = XML::Filter::ToLower->new(Handler => $writer);

Or use in a SAX Machine:

use XML::SAX::Machines qw(Pipeline);

Pipeline(
XML::Filter::XSLT->new(Source => { SystemId => foo.xsl })
=>
XML::Handler::HTMLWriter->new
)->parse_uri(foo.xml);

Initiate processing

XML::Handler::HTMLWriter never initiates processing itself, since it is just a recepticle for SAX events. So you have to start processing on one of the modules higher up the chain. For example in the XML::SAX parser case:

$parser->parse(Source => { SystemId => "foo.xhtml" });

Get the results

Results work via the consumer interface as defined in XML::SAX::Writer.

<<less
Download (0.007MB)
Added: 2007-08-08 License: Perl Artistic License Price:
810 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
Thread::Tie 0.12

Thread::Tie 0.12


Thread::Tie can tie variables into a thread of their own. more>>
Thread::Tie can tie variables into a thread of their own.

SYNOPSIS

use Thread::Tie; # use as early as possible for maximum memory savings

# use default thread + tieing + create thread when needed
tie $scalar, Thread::Tie;
tie @array, Thread::Tie;
tie %hash, Thread::Tie;
tie *HANDLE, Thread::Tie;

# use alternate implementation
tie $scalar, Thread::Tie,
{ module => Own::Tie::Implementation, # used automatically
use => Use::This::Module::Also, # optional, also as []
eval => arbitrary Perl code, # optional
};

# initialize right away
tie $scalar, Thread::Tie, {}, 10;
tie @array, Thread::Tie, {}, qw(a b c);
tie %hash, Thread::Tie, {}, (a => A, b => B, c => C);
tie *HANDLE, Thread::Tie, {},>:layer,filename;

# create an alternate thread and use that
my $tiethread = Thread::Tie::Thread->new;
tie $scalar, Thread::Tie, {thread => $tiethread};

# object methods
my $tied = tie stuff,Thread::Tie,parameters;
my $tied = tied( stuff );
my $semaphore = $tied->semaphore; # scalar for lock()ing tied variable
my $module = $tied->module; # module tied to in thread
my $tiethread = $tied->thread; # thread to which variable is tied

my $tid = $tiethread->tid; # thread id of tied thread
my $thread = $tiethread->thread; # actual "threads" thread

untie( stuff ); # calls DESTROY in thread, cleans up thoroughly

Thread::Tie->shutdown; # shut down default handling thread
$tiethread->shutdown; # shut down specific thread

<<less
Download (0.015MB)
Added: 2007-08-06 License: Perl Artistic License Price:
809 downloads
Funky 1.2.01

Funky 1.2.01


Funky is an embeddable interpreter and programming language. more>>
Funky is an embeddable interpreter and programming language.
When was Fnky created?
The very first version of Funky was created during my daughters nap on a snowy sunday afternoon. It was slightly refined one evening while my daughter and my wife were both sleeping and I was rocking the babys "cozy" with my foot (as I am doing now). The initial programming therefore took about 90 minutes, whereas a bit of fine-tuning and turning the original parser/interpreter into a parser/interpreter with two phases (parsing and interpreting) took another two hours or so.
Why was Funky created?
The original idea wasnt mine: at work, a colleague needed a functional, embeddable programming language and created one from scratch. It took him a few days to do so, but he wrote the parser and the scanner by hand. I heard about his little language and thought it might be a nice idea to have one of those in the free world.
Also, as a personal challenge, I decided I should be able to write one of those in much less time that a few days, but using the right tools. Hence, one sunday afternoon I took my laptop computer and started typing. I decided to use Boost.Spirit to write the parser: I had already read the documentation once while doing some research for the Jail programming language and found it a pretty good framework to build a parser one. 90 minutes later, I had the first working version of a Funky interpreter (but it wasnt embeddable yet and didnt split the parsing and interpreting phases).
So, what exactly is Funky?
As stated, Funky is a tiny, embeddable programming language with almost unlimited extending capabilities. It presents itself as a single class which contains the entire interpreter. Two versions of this class exist: Funky::Funky, which is a floating-point version, and Funky::Groovy, which is an integer version. You can install your own functions in the language as long as your functions take a vector of the built-in type of the interpreter as return an instance of that built-in type (or a vector of those).
Funky is a functional programming language. As such, it treats everything as functions and those functions handle only one type: double in the case of Funky::Funky or int in the case of Funky::Groovy.
Enhancements:
- This release adds support for GCC 4.x by fixing a small error in the declaration of a variable.
- It also comes with more documentation on how to build Funky.
<<less
Download (0.073MB)
Added: 2007-08-01 License: BSD License Price:
814 downloads
DigiBand 1.0

DigiBand 1.0


DigiBand is a full home version Drumming/Guitar simulator. more>>
DigiBand is a full home version Drumming/Guitar simulator. It isnt just intended to be a simulator, but a uniquely refreshing new experience. The project is much different than simulators already out there.
Main features:
- DigiBand supports both GDA and DTX file formats using a "Prefered" option, which can be modified in the games settings.ini file.
- DigiBand can Support up to 3 players Simutaneously!
- Digiband has a unique "Jukebox" mode which allows you to hear the songs notes before you play it, as well as other surprises.
- DigiBand also supports theming for UI customization, and uses transparent PNG images, avis, mp3s, and Cabbit Models for its UI system.
- DigiBand plays and converts xa audio files for ease of song editing.
- Digiband saves your highscores with maxcombo so you can clock how well you are doing.
- DigiBand allows Multiple players, playing bass or guitar with a drum player to all have seperate difficulties and styles.
- DigiBand sorts songs in a categorized "DDR" style interface, with slight adjustments for ease of use!
- DigiBand uses the internal system clock to maintain audio to note synchronization thanks to SDL.
- DigiBand allows users to sync up their songs on the fly. If it feels like youre being rushed or delayed, just sync it up by pressing F11/F12.
<<less
Download (30.5MB)
Added: 2007-07-30 License: Freeware Price:
835 downloads
Barcode::Code128 2.01

Barcode::Code128 2.01


Barcode::Code128 is a Perl module that can generate CODE 128 bar codes. more>>
Barcode::Code128 is a Perl module that can generate CODE 128 bar codes.

SYNOPSIS

use Barcode::Code128;

$code = new Barcode::Code128;

EXPORTS

By default, nothing. However there are a number of constants that represent special characters used in the CODE 128 symbology that you may wish to include. For example if you are using the EAN-128 or UCC-128 code, the string to encode begins with the FNC1 character. To encode the EAN-128 string "00 0 0012345 555555555 8", you would do the following:

use Barcode::Code128 FNC1;
$code = new Barcode::Code128;
$code->text(FNC1.00000123455555555558);

To have this module export one or more of these characters, specify them on the use statement or use the special token :all instead to include all of them. Examples:

use Barcode::Code128 qw(FNC1 FNC2 FNC3 FNC4 Shift);
use Barcode::Code128 qw(:all);

Here is the complete list of the exportable characters. They are assigned to high-order ASCII characters purely arbitrarily for the purposes of this module; the values used do not reflect any part of the CODE 128 standard. Warning: Using the CodeA, CodeB, CodeC, StartA, StartB, StartC, and Stop codes may cause your barcodes to be invalid, and be rejected by scanners. They are inserted automatically as needed by this module.

CodeA 0xf4 CodeB 0xf5 CodeC 0xf6
FNC1 0xf7 FNC2 0xf8 FNC3 0xf9
FNC4 0xfa Shift 0xfb StartA 0xfc
StartB 0xfd StartC 0xfe Stop 0xff

Barcode::Code128 generates bar codes using the CODE 128 symbology. It can generate images in PNG or GIF format using the GD package, or it can generate a text string representing the barcode that you can render using some other technology if desired.

The intended use of this module is to create a web page with a bar code on it, which can then be printed out and faxed or mailed to someone who will scan the bar code. The application which spurred its creation was an expense report tool, where the employee submitting the report would print out the web page and staple the receipts to it, and the Accounts Payable clerk would scan the bar code to indicate that the receipts were received.

The default settings for this module produce a large image that can safely be FAXed several times and still scanned easily. If this requirement is not important you can generate smaller image using optional parameters, described below.

If you wish to generate images with this module you must also have the GD.pm module (written by Lincoln Stein, and available from CPAN) installed. Version 1.20 or higher of GD generates a PNG file, due to issues with the GIF patent. If you want to create a GIF, you must use version 1.19 or earlier of GD. However, most browsers have no trouble with PNG files.

If the GD module is not present, you can still use the module, but you will not be able to use its functions for generating images. You can use the barcode() method to get a string of "#" and " " (hash and space) characters, and use your own image-generating routine with that as input.

To use the the GD module, you will need to install it along with this module. You can obtain it from the CPAN (Comprehensive Perl Archive Network) repository of your choice under the directory authors/id/LDS. Visit http://www.cpan.org/ for more information about CPAN. The GD home page is: http://stein.cshl.org/WWW/software/GD/GD.html

<<less
Download (0.014MB)
Added: 2007-07-24 License: Perl Artistic License Price:
834 downloads
SLiM 1.3.0

SLiM 1.3.0


SLiM is a simple login manager for X11. more>>
SLiM is a Desktop-independent graphical login manager for X11, derived from Login.app.
It aims to be light and simple, although completely configurable through themes and an option file; is suitable for machines on which remote login functionalities are not needed.
Main features:
- PNG and XFT support for aplha transparency and antialiased fonts
- External themes support
- Configurable runtime options: X server, login / shutdown / reboot commands
- Single (GDM-like) or double (XDM-like) input control
- Can load predefined user at startup
- Configurable welcome / shutdown messages
<<less
Download (0.56MB)
Added: 2007-07-15 License: GPL (GNU General Public License) Price:
833 downloads
Contact Form 2.01.00

Contact Form 2.01.00


Contact Form is a perl script that you can run on your website that will allow others to send you email through a web interface. more>>
Contact Form is a perl script that you can run on your website that will allow others to send you email through a web interface. Unlike other web to email gateways, Contact Form is designed to thwart spammers.
It does not allow email to be sent to unknown addresses, nor does it reveal addresses that it knows.
Main features:
- Allow email to be sent to a list of known email addresses through a web interface.
- Prevent email from being sent to other addresses.
- Never reveal email addresses through the web interface.
- Contain no cross site scripting (XSS) vulnerabilities.
- Do not allow arbitrary code to be run on the host.
- Provide adequate information in email headers to trace any spammers.
- Allow, but do not require, an external form.
- Server side validity checking of all data before email is sent.
- Optional client side validity checking of all data before the form is submitted.
- A default configuration that requires only a list of email addresses to be ready for use.
- A customizable interface that allows arbitrary fields.
- Easy to change the way it looks to integrate into your website
Setup:
- Download the contactform archive.
- Extract the contents of the download.
- Place contact.pl in your webservers cgi-bin directory or another place that allows scripts.
- Edit contact.pl to change the email addresses to which email can be sent.
- Optional - Change any other parameters in contact.pl to taste.
- Point your web browser at contact.pl on your server.
- Send yourself email through the web.
<<less
Download (0.021MB)
Added: 2007-07-10 License: GPL (GNU General Public License) Price:
844 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5