Main > Free Download Search >

Free entry doors software for linux

entry doors

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1000
wine-doors 0.1

wine-doors 0.1


Wine doors is an application designed to assist users in obtaining, installing, uninstalling and working with wine applications. more>>
Wine-doors is an application designed to assist users in obtaining, installing, uninstalling and working around the caveats associated with wine applications.

Although wine doors is intended to be a replacement for winetools it is not limited to release cycles for the applications available to install, instead a web service will be provided, this web service will serve XML Pack Lists and Application Packs as well as various other resources.

Using a web service to connect users to applications means the service can be community managed thus splitting application installation and configuration from the user interface used to install the applications.

<<less
Download (2.5MB)
Added: 2007-07-06 License: GPL (GNU General Public License) Price:
850 downloads
Secure back door 0.5

Secure back door 0.5


Secure Back Door (SBD) is a tool that provides ultra-secure and minimal access to a computer. more>>
Secure Back Door (SBD) is a tool that provides ultra-secure and minimal access to a computer, which allows you to run a single command based on a one time key. It is good if you dont want to have an SSH server running all the time, and only want to start it when needed. Because it has only a few lines of code, it is hoped that it will be less susceptible to security exploits than a program like SSH.
The protocol is detailed to an extent in the text file PROTOCOL, I will update it with more details as I have time, but the most important details are included already.
If you are a crypt analysis, or just like a challenge, I appreciate anyone who is willing to look through the protocol and/or code and point out possible security implications and flaws in design!
Enhancements:
- Fixed a few minor compiler warnings
- Updated license year to 2005
- Uncommented execution code in sbdd, so now sbdd will execute incoming commands
- Updated README documentation for compilation
<<less
Download (0.025MB)
Added: 2006-07-12 License: GPL (GNU General Public License) Price:
1200 downloads
Data::ICal::Entry::Todo 0.11

Data::ICal::Entry::Todo 0.11


Data::ICal::Entry::Todo is a Perl module that represents a to-do entry in an iCalendar file. more>>
Data::ICal::Entry::Todo is a Perl module that represents a to-do entry in an iCalendar file.

SYNOPSIS

my $vtodo = Data::ICal::Entry::Todo->new();
$vtodo->add_properties(
summary => "go to sleep",
status => INCOMPLETE,
# Dat*e*::ICal is not a typo here
dtstart => Date::ICal->new( epoch => time )->ical,
);

$calendar->add_entry($vtodo);

$vtodo->add_entry($alarm);

A Data::ICal::Entry::Todo object represents a single to-do entry in an iCalendar file. (Note that the iCalendar RFC refers to entries as "components".) It is a subclass of Data::ICal::Entry and accepts all of its methods.

<<less
Download (0.10MB)
Added: 2007-01-13 License: Perl Artistic License Price:
1014 downloads
fetchrss 1.0

fetchrss 1.0


fetchrss is a software which polls Weblogs (RSS feeds) and emails the updates. more>>
fetchrss polls weblogs (rss feeds) and e-mails the updates, one message per updated entry.

The effect is comparable to the weblog author e-mailing you personally. fetchrss can run in the background on your desktop or server.

Combine this with procmail to filter blog updates into their own folder in your IMAP account.
<<less
Download (0.48MB)
Added: 2005-04-26 License: LGPL (GNU Lesser General Public License) Price:
1642 downloads
OurNet::Query 1.56

OurNet::Query 1.56


OurNet::Query is a Perl module for scriptable queries with template extraction. more>>
OurNet::Query is a Perl module for scriptable queries with template extraction.

SYNOPSIS

use OurNet::Query;

# Set query parameters
my ($query, $hits) = (autrijus, 10);
my @sites = (google, google); # XXX: write more templates!
my %found;

# Generate a new Query object
my $bot = OurNet::Query->new($query, $hits, @sites);

# Perform a query
my $found = $bot->begin(&callback, 30); # Timeout after 30 seconds

print *** . ($found ? $found : No) . match(es) found.;

sub callback {
my %entry = @_;
my $entry = %entry;

unless ($found{$entry{url}}) {
print "*** [$entry->{title}]" .
" ($entry->{score})" .
" - [$entry->{id}]n" .
" URL: [$entry->{url}]n";
}

$found{$entry{url}}++;
}

This module provides an easy interface to perform multiple queries to internet services, and wraps them into your own format at once. The results are processed on-the-fly and are returned via callback functions.

Its interfaces resembles that of WWW::Searchs, but implements it in a different fashion. While WWW::Search relies on additional subclasses to parse returned results, OurNet::Query uses site descriptors for search search engine, which makes it much easier to add new backends.

Site descriptors may be written in XML, Template toolkit format, or the .fmt format from the commercial Inforia Quest product.

<<less
Download (0.063MB)
Added: 2006-12-04 License: Perl Artistic License Price:
1054 downloads
phpDirectory 0.0.2

phpDirectory 0.0.2


phpDirectory provides a Web links directory manager. more>>
phpDirectory provides a Web links directory manager.

phpDirectory is a PHP application that allows you to easily run a links directory system on your Web site.

Its features include a search engine, "suggest link", "browse categories", and admin tools.

Each link entry has its own counter, votes, and rating.

The category manager allows you to create/edit/delete categories easily.

<<less
Download (0.027MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
953 downloads
Convert::yEnc::Entry 1.02

Convert::yEnc::Entry 1.02


Convert::yEnc::Entry is a Perl module as an entry in a Convert::yEnc::RC database. more>>
Convert::yEnc::Entry is a Perl module as an entry in a Convert::yEnc::RC database.

SYNOPSIS

use Convert::yEnc::Entry;

$entry = new Convert::yEnc::Entry { size => 10000 };
$entry = new Convert::yEnc::Entry { size => 50000, part => 1 };

$entry = load Convert::yEnc::Entry "10000t10000";
$entry = load Convert::yEnc::Entry "20000t1-20000t1-2";

$ok = $entry->ybegin( { size=>10000 } );
$ok = $entry->ypart ( { begin=>1, end=>10000 } );
$ok = $entry->yend ( { size=>10000 } );

$entry->complete and ...

print "$entryn";

ABSTRACT

An entry in a Convert::yEnc::RC database

Convert::yEnc::Entry manages a single entry in a Convert::yEnc::RC database

<<less
Download (0.055MB)
Added: 2006-08-18 License: Perl Artistic License Price:
1163 downloads
Data::ICal::Entry::Journal 0.12

Data::ICal::Entry::Journal 0.12


Data::ICal::Entry::Journal is a Perl module that represents a journal entry in an iCalendar file. more>>
Data::ICal::Entry::Journal is a Perl module that represents a journal entry in an iCalendar file.

SYNOPSIS

my $vjournal = Data::ICal::Entry::Journal->new();
$vjournal->add_properties(
summary => "Minutes of my party",
description => "I cried because I wanted to.",
# Dat*e*::ICal is not a typo here
dtstart => Date::ICal->new( epoch => time )->ical,
);

$calendar->add_entry($vjournal);

A Data::ICal::Entry::Journal object represents a single journal entry in an iCalendar file. (Note that the iCalendar RFC refers to entries as "components".) It is a subclass of Data::ICal::Entry and accepts all of its methods.

<<less
Download (0.10MB)
Added: 2007-01-17 License: Perl Artistic License Price:
1012 downloads
Data::ICal::Entry::FreeBusy 0.12

Data::ICal::Entry::FreeBusy 0.12


Data::ICal::Entry::FreeBusy is a Perl module that represents blocks of free and busy time in an iCalendar file. more>>
Data::ICal::Entry::FreeBusy is a Perl module that represents blocks of free and busy time in an iCalendar file.

SYNOPSIS

my $vfreebusy = Data::ICal::Entry::FreeBusy->new();
$vfreebusy->add_properties(
organizer => MAILTO:jsmith@host.com,
# Dat*e*::ICal is not a typo here
freebusy => Date::ICal->new( epoch => ... )->ical . / . Date::ICal->new( epoch => ... )->ical,
);

$calendar->add_entry($vfreebusy);

A Data::ICal::Entry::FreeBusy object represents a request for information about free and busy time or a reponse to such a request, in an iCalendar file. (Note that the iCalendar RFC refers to entries as "components".) It is a subclass of Data::ICal::Entry and accepts all of its methods.

METHODS

ical_entry_type

Returns VFREEBUSY, its iCalendar entry name.

optional_unique_properties

According to the iCalendar standard, the following properties may be specified at most one time for a free/busy entry:

contact dtstart dtend duration dtstamp
organizer uid url

optional_repeatable_properties

According to the iCalendar standard, the following properties may be specified any number of times for free/busy entry:

attendee comment freebusy request-status

<<less
Download (0.10MB)
Added: 2007-01-17 License: Perl Artistic License Price:
1011 downloads
Tina POS 0.0.22

Tina POS 0.0.22


Tina POS is a point of sales application designed for touch screens. more>>
Tina POS is a point of sales application designed for touch screens.

Tina POS supports ESC/POS ticket printers, customer displays, and barcode readers.

Its multi-user and has a great backoffice with a product entry form, reports, and charts.
<<less
Download (8.8MB)
Added: 2007-03-26 License: GPL (GNU General Public License) Price:
986 downloads
BeGtkExtras 1.1

BeGtkExtras 1.1


BeGtkExtras contains GtkFieldEntry and GtkCalendarDateEntry. more>>
BeGtkExtras contains GtkFieldEntry and GtkCalendarDateEntry.

GtkFieldEntry from VMWare converted to C.

GtkCalendarDateEntry, a date entry coupled with a popup calendar, based on GtkFieldEntry for slick editing the way a user would expect it.

BeGTKExtra is intended to be a repository for GTK+ widgets that I write/maintain, for now I need a Date Entry widget and really like the way FieldEntry is done in libview but I use plain C and not C++ for my programs, so it will be a port to C of these widgets.

This package is made by Baruch Even and is heavily based on libview from VMWare and GtkDateEntry by Andrea Zagli.

<<less
Download (0.33MB)
Added: 2005-11-24 License: LGPL (GNU Lesser General Public License) Price:
1430 downloads
Data::ICal::Entry::Event 0.12

Data::ICal::Entry::Event 0.12


Data::ICal::Entry::Event is a Perl module that represents an event in an iCalendar file. more>>
Data::ICal::Entry::Event is a Perl module that represents an event in an iCalendar file.

SYNOPSIS

my $vevent = Data::ICal::Entry::Event->new();
$vevent->add_properties(
summary => "my party",
description => "Ill cry if I want to",
# Dat*e*::ICal is not a typo here
dtstart => Date::ICal->new( epoch => time )->ical,
);

$calendar->add_entry($vevent);

$vevent->add_entry($alarm);

A Data::ICal::Entry::Event object represents a single event in an iCalendar file. (Note that the iCalendar RFC refers to entries as "components".) It is a subclass of Data::ICal::Entry and accepts all of its methods.

<<less
Download (0.10MB)
Added: 2007-01-17 License: Perl Artistic License Price:
1011 downloads
Intellidiscs 1.1

Intellidiscs 1.1


Intellidiscs is a Remake of Tron: Deadly Discs for the classic Intellivision console. more>>
Intellidiscs is a Remake of Tron: Deadly Discs for the classic Intellivision console. Its also one of the few, if not the first, Tron freeware games that has nothing to do with light-cycles.

Basically, you run around in an arena fighting off bad guys with your disc. There are four different varieties of bad guy, and one of them has three different varieties of disc. More difficult enemies appear as your score increases, with the most difficult showing up if you can reach 1,000,000 points.

Bad guys enter through doors on the sides of the arena. You can jam these doors open by either hitting them with your disc, or by running into them. If you jam open doors that are opposite each other, you can run in one side and come out the other. This is very important to your survival.

If you jam enough doors, eventually a recognizer will be dispatched to fix them. If you can hit the recognizer when its eye is open, it will stop fixing the doors and leave the arena. Plus, you get lots of points for this.

You can take three hits before you die, and every hit makes you slower! You will eventually recover from damage, regaining your speed as well. Touching the recognizer kills you instantly, so dont do it.

Default controls are the familiar WASD to move, and the outer keys of numpad (1, 2, 3, 4, 6, 7, 8, 9, non-Mac users turn Num Lock on!) throw your disc in any of eight directions. If you press one of the throw keys while your disc is in flight, it will return to you. Discs are harmless when returning. If you move away from your disc as it is flying back, it will never catch up to you, you must stop and catch it. All of the controls can be changed from the main menu.

<<less
Download (2.8MB)
Added: 2007-05-01 License: Freeware Price:
908 downloads
OnlineCourse 0.1

OnlineCourse 0.1


OnlineCourse project is a Zope Product for Online Instruction/Distance Learning. more>>
OnlineCourse project is a Zope Product for Online Instruction/Distance Learning.

OnlineCourse is a Zope Product that allows you to implement a web based distance learning application.

Main features include an online chat classroom, message board, upload of course materials from MSWord .doc files, log of student participation, and provisions for assignment entry, homework entry, and grading.
<<less
Download (0.092MB)
Added: 2006-11-01 License: (FDL) GNU Free Documentation License Price:
1087 downloads
Demokritos 0.3.7

Demokritos 0.3.7


Demokritos is a server implementation of the Atom Publishing Protocol. more>>
Demokritos is a server implementation of the Atom Publishing Protocol.
Demokritos also provides a library that can be used for the development of other Atom-related applications.
Usage:
To run a test server, cd to test directory and run test_server.py
client_test.py in the same directory will run through a sequence of tests on this.
Enhancements:
- Duplicates are now handled in URI minting.
- A feeds updated property after a removal of an entry is now current datetime (not that of the latest entry).
- Posts missing a media type now throw an exception.
- A bug where entry collections were being retrieved from the persistence layer as media collections has been fixed.
<<less
Download (0.70MB)
Added: 2006-03-09 License: GPL (GNU General Public License) Price:
1325 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5