Main > Free Download Search >

Free browscap 0.02 software for linux

browscap 0.02

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 232
HTTP::Browscap 0.02

HTTP::Browscap 0.02


HTTP::Browscap is a Perl module that can parse and search browscap.ini files. more>>
HTTP::Browscap is a Perl module that can parse and search browscap.ini files.

SYNOPSIS

use HTTP::Browscap;

my $capable = browscap();

if( $capable->{wap} ) {
output_WAP();
}

if( $capable->{css} > 1 ) {
# Browser can handle CSS2
}

# OO interface
my $BC = HTTP::Browscap->new( browscap.ini );

$capable = $BC->match( $ENV{HTTP_USER_AGENT} );

ABSTRACT

Browscap.ini is a file, introduced with Microsofts IIS, that lists the User-Agent strings that different browsers send, and various capabilities of those browsers. This module parses browscap.ini and allows you to find the capability definitions for a given browser.

Starting with Microsofts IIS, a browscap.ini file was used to list the capabilities of various browsers. Using the User-Agent string that a browser sends in the HTTP request, the capabilities of a browser are retrieved. If an exact match of the User-Agent string isnt found, wild-card expantion is done. If all fails, a default browser definition is used.

There are limits the usefulness of browscap.ini. It only detects if a browser has a certain capability, but not if this capability has been deactivated or if its a buggy implementation. In particular, most CSS and JavaScript implementations will make you scream.

<<less
Download (0.009MB)
Added: 2007-06-09 License: Perl Artistic License Price:
875 downloads
crosssum 0.02

crosssum 0.02


crosssum is a puzzle game to design and play cross sum games. more>>
crosssum project is a puzzle game to design and play cross sum games.

A cross sum puzzle is similar to a cross word puzzle, only the clues are the sums of sequences of single-digit numbers.

When in playing mode, you change the numbers by clicking on the square you wish to change. The number for the square is dependent on the position in the square that you click. Verifying play mode is identical to play except erroneous answers are highlighted.

In desiging mode you can change a square from an answer square to a blank square by clicking on it. One click toggles it. When you finished designing, use ^r to compute a puzzle for the board Squares are mirrored, if you want to override this press CTRL
while you click

The rules are:
1. Sums must be formed from strings of [1,9] with no dups
2. The grey squares are the answers, numbers above the diagonal are the answers for the sum to the right numbers below the diagonal are the answers for the sum below.

<<less
Download (0.012MB)
Added: 2006-12-27 License: GPL (GNU General Public License) Price:
1033 downloads
Blog::Simple 0.02

Blog::Simple 0.02


Blog::Simple is a Perl extension for the creation of a simple weblog (blogger) system. more>>
Blog::Simple is a Perl extension for the creation of a simple weblog (blogger) system.

SYNOPSIS

use Blog::Simple;

my $sbO = Blog::Simple->new(); $sbO->create_index(); #generally only needs to be called once

my $content="

blah blah blah in XHTM"p"

Better when done in XHTM"p""; my $title = some title; my $author = a.n. author; my $email = anaouthor@somedomain.net; my $smmry = blah blah; $sbO->add($title,$author,$email,$smmry,$content);

$sbO->render_current(blog_test.xsl,3); $sbO->render_all(blog_test.xsl);

$sbO->remove(08);

<<less
Download (0.007MB)
Added: 2006-09-14 License: Perl Artistic License Price:
1135 downloads
Brcontrol 0.02

Brcontrol 0.02


Brcontrol is a set of patches to allow some interaction between a IDS and a firewall. more>>
Brcontrol is a set of patches to allow some interaction between a IDS and a firewall (currently snort and linux netfilter). It will help in the creation of aggresive honeypots or other advanced firewall and ids configurations. In can also work as bridge.
<<less
Download (0.015MB)
Added: 2006-07-01 License: GPL (GNU General Public License) Price:
1210 downloads
Simpla 0.02

Simpla 0.02


Simpla project is a concept language for child education. more>>
Simpla project is a concept language for child education.
Simpla is a basic concept language for use in teaching children and adults with no programming experience or computer knowledge whatsoever.
The intent is to have a language which is capable of many basic scripting language tasks without adding excess complexity.
Still a barely working alpha, and Ive got contributor code to include. Added variable declaration, an improved variable parser (thanks to Richard Nolan for the explanation, and a whole lot of cleanup.
Enhancements:
- 0.02 - remains Alpha.
- Variable declatation now works, parsing of lines works (too well), code reorganization (again)
<<less
Download (0.001MB)
Added: 2006-10-31 License: Artistic License Price:
1089 downloads
XcplayC 0.02

XcplayC 0.02


XcplayC is a text-GUI for XMMS based on xcplay. more>>
XcplayC is an ncurses-based GUI for XMMS, based on xcplay.

It is useful if you wish to control and XMMS process when you dont have access to the X11 GUI.
<<less
Download (0.017MB)
Added: 2005-05-10 License: GPL (GNU General Public License) Price:
1627 downloads
StealIt 0.02

StealIt 0.02


StealIt is a service menu to take ownership on selected file/directory. more>>
StealIt is a service menu to take ownership on selected file/directory.

It is often annoying to have no rights on files created by other users or uploaded with samba or created by apache process.
<<less
Download (MB)
Added: 2006-09-29 License: GPL (GNU General Public License) Price:
1121 downloads
B::Tree 0.02

B::Tree 0.02


B::Tree is a simplified version of B::Graph for demonstration. more>>
B::Tree is a simplified version of B::Graph for demonstration.

SYNOPSIS

perl -MO=Tree program | dot -Tps > tree.ps

This is a very cut-down version of B::Graph; it generates minimalist tree graphs of the op tree of a Perl program, merely connecting the op nodes and labelling each node with the type of op.

It was written as an example of how to write compiler modules for "Professional Perl", but Ive found it extremely useful for creating simple op tree graphs for use in presentations on Perl internals.

It requires the CPAN GraphViz module and the GraphViz package from http://www.research.att.com/sw/tools/graphviz/. It takes no options.

<<less
Download (0.002MB)
Added: 2007-06-26 License: Perl Artistic License Price:
856 downloads
Wily 0.02

Wily 0.02


Wily is a Perl extension for interfacing with Wily. more>>
Wily is a Perl extension for interfacing with Wily.

SYNOPSIS

use Wily;
use Wily::Message;

# opens a file in wily and exits when the window is destroyed

my $wily = Wily->new();
my $win = $wily->win(/tmp/file_to_edit, 1);
$win->set_callback(Wily::Message::WEdestroy, sub {exit;});
$win->attach(Wily::Message::WEdestroy);
$wily->event_loop();

Provides a reasonably high level OO interface to wily. A lower level interface is available via Wily::RPC, and an even lower level one through Wily::Message and Wily::Connect.

The actual windows in wily are represented by Wily::Win objects.

<<less
Download (0.021MB)
Added: 2007-05-10 License: Perl Artistic License Price:
898 downloads
OzDB 0.02

OzDB 0.02


OzDB is a database Perl interface module for OzBot. more>>
OzDB is a database Perl interface module for OzBot.

SYNOPSIS

use OzDB;

The OzDB Perl module handles authentication and access control for the OzBot based utility bots. The basic database format is the authentication schema. This is based on a numerical ordering authentication system. If the users Authentication level is higher than that of the commands authentication level then the user is authenticated for the command and the commands special arguments will be returned to the function.

This is useful for BACKEND authentication only, where the usernames are entered by an already physically or password authorized connection. This is for information purposes, and is not to be used as an actual database such as MySQL or PgSQL. This is written to faciliate developers with rudimentary information storage and any protected information, including passwords, should not be stored in this database. It is simply a method to allow applications to store and retrieve data in an arbitrary and extensible format with special delimiters.

METHODS

$obj->authenticate("authuser.db", "authcmd.db", "$name", "$command");
$obj->add_user("$authuserdb", "$authcmddb", "$name", "$authlevel");

<<less
Download (0.012MB)
Added: 2007-05-15 License: Perl Artistic License Price:
892 downloads
mooseekd 0.02

mooseekd 0.02


mooseekd is a partial fork of Museek+, containing only the standalone daemon needed to connect to the Soulseek P2P network. more>>
mooseekd project is a partial fork of Museek+, containing only the standalone daemon needed to connect to the Soulseek P2P network. Naming has been changed so as not to clash with an existing Museek+/museekd installation.

The goal of the fork is to provide a means of having only the daemon installed, without the dependencies on libxml++/glibmm, leaving it with only GLib (using GMarkup instead of libxml++) as a major dependency.

<<less
Download (0.46MB)
Added: 2006-07-29 License: GPL (GNU General Public License) Price:
1182 downloads
TechnoBar 0.02

TechnoBar 0.02


TechnoBar is an extension which provides the ultimate Technorati reverse browsing experience. more>>
TechnoBar is an extension which provides the ultimate Technorati reverse browsing experience.

Techno(rati)Bar provides the ultimate "reverse" browsing experience by showing live Technorati content as sidebar on the web pages youre browsing.

TechnoBar will show blogs that link to the current site while browsing and open blogs by clicking on the sidebar entry.

<<less
Download (0.019MB)
Added: 2007-04-18 License: MPL (Mozilla Public License) Price:
919 downloads
PerlIO 0.02

PerlIO 0.02


PerlIO is a Perl module created to load on demand PerlIO layers and root of PerlIO::* name space. more>>
PerlIO is a Perl module created to load on demand PerlIO layers and root of PerlIO::* name space.

SYNOPSIS

open($fh,":utf8", "data.utf");
print F $out;
close(F);

open(F, "<<less
Download (0.014MB)
Added: 2007-05-14 License: Perl Artistic License Price:
893 downloads
Search::Glimpse 0.02

Search::Glimpse 0.02


Search::Glimpse is a Perl extension to communicate with Glimpse server. more>>
Search::Glimpse is a Perl extension to communicate with Glimpse server.

SYNOPSIS

use Search::Glimpse;

my $glimpse = Search::Glimpse->new;

my @results = $glimpse->search("search this string");

ABSTRACT

This module is an extension to use glimpse server from Perl.

Quick hack to connect to glimpse server.

new

Creates a new glimpse object.

search

Search on a glimpse object

hits

Returns the number of hits...

files

Returns the number of files...

<<less
Download (0.004MB)
Added: 2007-04-05 License: Perl Artistic License Price:
933 downloads
WSDL::Generator 0.02

WSDL::Generator 0.02


WSDL::Generator is a Perl module to generate wsdl file automagically. more>>
WSDL::Generator is a Perl module to generate wsdl file automagically.

SYNOPSIS

use WSDL::Generator;
my $wsdl = WSDL::Generator->new($init);
Foo->a_method($param};
print $wsdl->get(Foo);

You know folks out there who use another language than Perl (huh?) and you want to release a SOAP server for them

1/ thats very kind of you
2/ you need to generate a wsdl file
3/ this module can help

Because Perl is dynamically typed, it is a fantastic language to write SOAP clients, but that makes perl not-so-easy to use as SOAP server queried by statically typed languages such as Delphi, Java, C++, VB...

These languages need a WSDL file to communicate with your server.
The WSDL file contains all the data structure definition necessary to interact with the server.

It contains also the namespace and URL as well.

<<less
Download (0.67MB)
Added: 2007-06-14 License: Perl Artistic License Price:
865 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5