Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.074.935 Times

List Bullets Inline Css freeware
Filter: All | Freeware | Demo
 

List Bullets Inline Css

< 1 2 3 4 5 > 
Added: May 13, 2010 | Visits: 1.672

List::Maker List::Maker is a Perl module that can generate more sophisticated lists than just $a..$b. SYNOPSIS use List::Maker; @list = < 1..10 >; # (1,2,3,4,5,6,7,8,9,10) @list = < 10..1 >; # (10,9,8,7,6,5,4,3,2,1) @list = < 1,3,..10 > # (1,3,5,7,9) @list = < 1..10 x 2 > # (1,3,5,7,9) @list = <...



Platforms: *nix

License: Freeware Size: 7.17 KB Download (159): List::Maker Download

Added: October 05, 2010 | Visits: 933

Inline::SLang::Changes Inline::SLang::Changes is a Perl module with changes to previous versions of the module. Inline::SLang lets you write Perl subroutines in S-Lang. It dynamically translates the parameters and return values into native data types for both languages (or into Perl classes that are used to represent...





Platforms: *nix

License: Freeware Size: 112.64 KB Download (96): Inline::SLang::Changes Download

Added: November 19, 2010 | Visits: 954

List::Search List::Search is a Perl module for fast searching of sorted lists. SYNOPSIS use List::Search qw( list_search nlist_search custom_list_search ); # Create a list to search my @list = sort qw( bravo charlie delta ); # Search for a value, returns the index of first match print list_search(...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (88): List::Search Download

Added: September 11, 2010 | Visits: 965

List::Util List::Util Perl module contains a selection of general-utility list subroutines. SYNOPSIS use List::Util qw(first max maxstr min minstr reduce shuffle sum); List::Util contains a selection of subroutines that people have expressed would be nice to have in the perl core, but the usage would...


Platforms: *nix

License: Freeware Size: 44.03 KB Download (102): List::Util Download

Added: July 03, 2010 | Visits: 1.844

PHP Generic Access Control List PHP Generic Access Control List is a PHP class that offers Web developers a simple, yet immensely powerful "drop in" permission system for their current Web-based applications..


Platforms: *nix

License: Freeware Size: 2.6 MB Download (103): PHP Generic Access Control List Download

Added: February 18, 2010 | Visits: 997

XMMS Album List XMMS Album List is a Unix application for loading directories of audio files into XMMS, similar in concept to the Winamp plugin AlbumList. XMMS Album List is written in Perl using Gtk2-Perl, MP3::Info, and Xmms::Perl (the latter being available on CPAN). This is my first application using GTK+,...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (93): XMMS Album List Download

Added: February 24, 2010 | Visits: 851

List::RewriteElements List::RewriteElements is a Perl module that can create a new list by rewriting elements of a first list. SYNOPSIS use List::RewriteElements; Constructor Simplest case: Input from array, output to STDOUT. $lre = List::RewriteElements->new( { list => @source, body_rule => sub { my...


Platforms: *nix

License: Freeware Size: 26.62 KB Download (98): List::RewriteElements Download

Added: May 22, 2010 | Visits: 1.448

List::Compare List::Compare is a Perl module to compare elements of two or more lists. SYNOPSIS The bare essentials: @Llist = qw(abel abel baker camera delta edward fargo golfer); @Rlist = qw(baker camera delta delta edward fargo golfer hilton); $lc = List::Compare->new(@Llist, @Rlist);...


Platforms: *nix

License: Freeware Size: 184.32 KB Download (100): List::Compare Download

Added: October 03, 2010 | Visits: 753

List::Comprehensions List::Comprehensions is a Perl module that allows for list comprehensions in Perl. SYNOPSIS use List::Comprehensions; use warnings; my @res = (); @res = comp1 { [ @_ ] } [0..4], [0..4], [0..4]; no warnings once; @res = comp2 { [$i, $j, $k] } i => [0..4], j => [0..4], k => [0..4];...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (96): List::Comprehensions Download

Added: September 16, 2010 | Visits: 1.123

Notes List Notes List is a simple and easy way to take Notes. - Change SIZE (width and height) - tun on/off the background image - Auto save notes. IPmonitor KDE-Look.org Community Portal for KDE Themes Wallpapers Icons Sounds Screenshots Schemes Skins Skinz Screensavers Splash Screens K-Jofol IceWM...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (94): Notes List Download

Added: January 01, 2010 | Visits: 1.346

ADDRESS LIST print web.de dict one slide ADDRESS LIST print web.de dict one slide allows users of web.de can print up to 85 addresses on one sheet of paper! If you use the printing function of web.de, you get a lot of pages to print but never all informations stored before. It is much more convenient to have all informations on one...


Platforms: *nix

License: Freeware Size: 1.3 MB Download (103): ADDRESS LIST print web.de dict one slide Download

Added: March 06, 2010 | Visits: 1.365

Mailing List Mailing List project is a Web-based, full-featured mailing list and newsletter system. Users can subscribe and unsubscribe themselves. Email confirmation is used for new subscriptions. The list of subscribers to a list can be imported and exported. Installation: - copy all files to your web...


Platforms: *nix

License: Freeware Size: 184.32 KB Download (112): Mailing List Download

Added: November 09, 2010 | Visits: 1.093

MKDoc::Text::Structured::Inline MKDoc::Text::Structured::Inline is a Perl module to convert text to HTML without handling block-level tags. SYNOPSIS my $text = some_structured_text(); my $this = MKDoc::Text::Structured::Inline::process ($text); my $that = MKDoc::Text::Structured::Inline::process_entities_only ($text);.


Platforms: *nix

License: Freeware Size: 14.34 KB Download (100): MKDoc::Text::Structured::Inline Download

Added: August 12, 2010 | Visits: 804

Inline::Ruby Inline::Ruby module can help you write Perl subroutines and classes in Ruby. SYNOPSIS print "9 + 16 = ", add(9, 16), "n"; print "9 - 16 = ", subtract(9, 16), "n"; use Inline Ruby; __END__ __Ruby__ def add(a, b) a + b end def subtract(a, b) a - b end The Inline::Ruby module...


Platforms: *nix

License: Freeware Size: 25.6 KB Download (86): Inline::Ruby Download

Added: February 07, 2010 | Visits: 955

Inline::Filters Inline::Filters Perl module contains common source code filters for Inline Modules. Inline::Filters provides common source code filters to Inline Language Modules. Unless youre an Inline module developer, you can just read the next section. Supported Filters This section describes each...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (98): Inline::Filters Download

Added: March 17, 2010 | Visits: 667

Inline::Struct Inline::Struct is a Perl module that manipulate C structures directly from Perl. SYNOPSIS use Inline C => Config => Structs => [Foo]; my $obj = Inline::Struct::Foo->new; $obj->num(10); $obj->str("Hello"); myfunc($obj); __END__ __C__ struct Foo { int num; char *str; }; void...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (93): Inline::Struct Download

Added: June 15, 2010 | Visits: 1.057

Inline::CPP Inline::CPP is a Perl module that can write Perl subroutines and classes in C++. SYNOPSIS use Inline CPP; print "9 + 16 = ", add(9, 16), "n"; print "9 - 16 = ", subtract(9, 16), "n"; __END__ __CPP__ int add(int x, int y) { return x + y; } int subtract(int x, int y) { return x -...


Platforms: *nix

License: Freeware Size: 24.58 KB Download (90): Inline::CPP Download

Added: August 07, 2010 | Visits: 1.028

Dir::List Dir::List is a Perl module, that provides you with various information about a specified directory. For example, it can obtain the user and group of files, the sizes of sub-directories, the filetype, and accessibility. Caching functionality is available. Whats New in This Release: - The...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (112): Dir::List Download

Added: May 07, 2010 | Visits: 11.571

Password List Generator Password List Generator is a good tool to create passwords list with makepasswd and save to file.. Password List Generator KDE-Apps.org Community Portal for KDE Applications Software Office Multimedia Graphic Network Printing Education Games Development Administration Scientific Security...


Platforms: *nix

License: Freeware Size: 32.77 KB Download (330): Password List Generator Download

Added: January 08, 2010 | Visits: 1.023

Inline::Java::PerlInterpreter Inline::Java::PerlInterpreter is a Perl module used to call Perl directly from Java using Inline::Java. SYNOPSIS import org.perl.inline.java.* ; class HelpMePerl { static private InlineJavaPerlInterpreter pi = null ; public HelpMePerl() throws InlineJavaException { } static private...


Platforms: *nix

License: Freeware Size: 94.21 KB Download (105): Inline::Java::PerlInterpreter Download

< 1 2 3 4 5 >