aardvark
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4
Aardvark Topsites PHP 5.2.0
Aardvark Topsites PHP is the premier PHP/SQL topsites script. more>>
Aardvark Topsites PHP is simply the best topsites script available. Aardvark Topsites PHP project is licensed under the GNU General Public License so it will always remain completely free.
Main features:
- Members ranks can be shown on their button.
- New: Stat Buttons, allowing you to customize your buttons and display all kinds of stats on them
- 6 different ranking methods
- Counts unique pageviews, total pageviews, unique hits in, total hits in, unique hits out, and total hits out
- New: Rank daily, weekly, or monthly
- Up/down/neutral arrows
- Customizable categories
- Fully customizeable skins: make your topsites look however you want!
- Simple web-based installer and upgrader
- Multiple pages
- Member login and lost password retrieval
- Seamlessly switches between languages
- Fast, integrated search
- Ad breaks
- Visitors can rate and review members
- Advanced stats and graphs
- Easy to install and maintain
- Powerful admin
- New: Mass mail members
- Best of all, its completely free!
Enhancements:
- A tool to backup database was added in the admin interface.
- A more secure captcha, with a link for users to get a new captcha if the user cant read the first one.
- The gateway page for the Fusion skin was redesigned.
- Sites may be banned by URL, IP address, username, or email address.
- An optional security question is asked on join to block spammers.
- By default, new members must be approved by the admin before they are listed, and changes to the title or URL of a site must be approved by the admin.
- A summary of overall statistics is displayed on the main page.
<<lessMain features:
- Members ranks can be shown on their button.
- New: Stat Buttons, allowing you to customize your buttons and display all kinds of stats on them
- 6 different ranking methods
- Counts unique pageviews, total pageviews, unique hits in, total hits in, unique hits out, and total hits out
- New: Rank daily, weekly, or monthly
- Up/down/neutral arrows
- Customizable categories
- Fully customizeable skins: make your topsites look however you want!
- Simple web-based installer and upgrader
- Multiple pages
- Member login and lost password retrieval
- Seamlessly switches between languages
- Fast, integrated search
- Ad breaks
- Visitors can rate and review members
- Advanced stats and graphs
- Easy to install and maintain
- Powerful admin
- New: Mass mail members
- Best of all, its completely free!
Enhancements:
- A tool to backup database was added in the admin interface.
- A more secure captcha, with a link for users to get a new captcha if the user cant read the first one.
- The gateway page for the Fusion skin was redesigned.
- Sites may be banned by URL, IP address, username, or email address.
- An optional security question is asked on join to block spammers.
- By default, new members must be approved by the admin before they are listed, and changes to the title or URL of a site must be approved by the admin.
- A summary of overall statistics is displayed on the main page.
Download (0.16MB)
Added: 2007-06-10 License: GPL (GNU General Public License) Price:
869 downloads
oz2remind 0.2
oz2remind is a tool to convert OpenZaurus Opie calendar XML files to Remind format. more>>
oz2remind is a tool to convert OpenZaurus Opie calendar XML files to Remind format.
Its a small but useful Perl script to convert the datebook.xml file used by the calendar app in OpenZaurus Opie to Remind format.
About Remind:
Remind is a sophisticated calendar and alarm program. It includes the following features:
- A sophisticated scripting language and intelligent handling of exceptions and holidays.
- Plain-text, PostScript and HTML output.
- Timed reminders and pop-up alarms.
- A friendly graphical front-end for people who dont want to learn the scripting language.
- Facilities for both the Gregorian and Hebrew calendars.
- Support for 12 different languages.
About OpenZaurus:
The OpenZaurus project was created as an alternative Operating System for the Sharp Zaurus Personal Mobile Tool. The original purpose behind the project was to create a system (kernel + root filesystem) which was a bit closer to what the developer community specifically desired. The method by which this was accomplished was simply to use the Sharp ROM as a base and make alterations, bugfixes, additions and even removals, where necessary, to make the package more open.
Shortly after this, it was revamped completely. OpenZaurus was then a Debian based embedded distribution built from source, from the ground up. Given its debian roots, it is quite similar to other embedded Debian-based distributions, such as Familiar for the Ipaq. This means of doing things also facilitates an easy method for users to build their own custom system images.
Current Versions of OpenZaurus are built from the OpenEmbedded Build system, this was again a complete rebuild of the entire distribution from scratch.
<<lessIts a small but useful Perl script to convert the datebook.xml file used by the calendar app in OpenZaurus Opie to Remind format.
About Remind:
Remind is a sophisticated calendar and alarm program. It includes the following features:
- A sophisticated scripting language and intelligent handling of exceptions and holidays.
- Plain-text, PostScript and HTML output.
- Timed reminders and pop-up alarms.
- A friendly graphical front-end for people who dont want to learn the scripting language.
- Facilities for both the Gregorian and Hebrew calendars.
- Support for 12 different languages.
About OpenZaurus:
The OpenZaurus project was created as an alternative Operating System for the Sharp Zaurus Personal Mobile Tool. The original purpose behind the project was to create a system (kernel + root filesystem) which was a bit closer to what the developer community specifically desired. The method by which this was accomplished was simply to use the Sharp ROM as a base and make alterations, bugfixes, additions and even removals, where necessary, to make the package more open.
Shortly after this, it was revamped completely. OpenZaurus was then a Debian based embedded distribution built from source, from the ground up. Given its debian roots, it is quite similar to other embedded Debian-based distributions, such as Familiar for the Ipaq. This means of doing things also facilitates an easy method for users to build their own custom system images.
Current Versions of OpenZaurus are built from the OpenEmbedded Build system, this was again a complete rebuild of the entire distribution from scratch.
Download (0.003MB)
Added: 2006-05-07 License: GPL (GNU General Public License) Price:
1267 downloads
File::VirtualPath 1.011
File::VirtualPath is a portable abstraction of a file/dir/url path. more>>
File::VirtualPath is a portable abstraction of a file/dir/url path.
SYNOPSIS
Content of thin shell "startup.pl":
#!/usr/bin/perl
use strict;
use warnings;
my $root = "/home/johndoe/projects/aardvark";
my $separator = "/";
if( $^O =~ /Win/i ) {
$root = "c:projectsaardvark";
$separator = "";
}
if( $^O =~ /Mac/i ) {
$root = "Documents:projects:aardvark";
$separator = ":";
}
use Aardvark;
Aardvark->main( File::VirtualPath->new( $root, $separator ) );
1;
Content of fat main program "Aardvark.pm"
package Aardvark;
use strict;
use warnings;
use File::VirtualPath;
sub main {
my (undef, $project_dir) = @_;
my $prefs = ≥t_prefs( $project_dir->child_path_obj( config.pl ) );
&do_work( $prefs, $project_dir );
}
sub get_prefs {
my ($project_dir) = @_;
my $real_filename = $project_dir->physical_path_string();
my $prefs = do $real_filename;
defined( $prefs ) or do {
my $virtual_fn = $project_dir->path_string();
die "Cant get Aardvark prefs from file $virtual_fn: $!";
};
return( $prefs );
}
sub do_work {
my ($prefs, $project_dir) = @_;
my ($lbl_a, $lbl_b, $lbl_c) = ($prefs->{a}, $prefs->{b}, $prefs->{c});
my $data_source = $prefs->{sourcefile};
open( SOURCE, $project_dir->physical_child_path_string( $data_source ) );
while( my $line = ) {
my ($a, $b, $c) = split( "t", $line );
print "File contains: $lbl_a=$a, $lbl_b=$b, $lbl_c=$cn";
}
close( SOURCE );
}
1;
Content of settings file "config.pl"
$rh_prefs = {
sourcefile => mydata.txt,
a => name,
b => phone,
c => date,
};
<<lessSYNOPSIS
Content of thin shell "startup.pl":
#!/usr/bin/perl
use strict;
use warnings;
my $root = "/home/johndoe/projects/aardvark";
my $separator = "/";
if( $^O =~ /Win/i ) {
$root = "c:projectsaardvark";
$separator = "";
}
if( $^O =~ /Mac/i ) {
$root = "Documents:projects:aardvark";
$separator = ":";
}
use Aardvark;
Aardvark->main( File::VirtualPath->new( $root, $separator ) );
1;
Content of fat main program "Aardvark.pm"
package Aardvark;
use strict;
use warnings;
use File::VirtualPath;
sub main {
my (undef, $project_dir) = @_;
my $prefs = ≥t_prefs( $project_dir->child_path_obj( config.pl ) );
&do_work( $prefs, $project_dir );
}
sub get_prefs {
my ($project_dir) = @_;
my $real_filename = $project_dir->physical_path_string();
my $prefs = do $real_filename;
defined( $prefs ) or do {
my $virtual_fn = $project_dir->path_string();
die "Cant get Aardvark prefs from file $virtual_fn: $!";
};
return( $prefs );
}
sub do_work {
my ($prefs, $project_dir) = @_;
my ($lbl_a, $lbl_b, $lbl_c) = ($prefs->{a}, $prefs->{b}, $prefs->{c});
my $data_source = $prefs->{sourcefile};
open( SOURCE, $project_dir->physical_child_path_string( $data_source ) );
while( my $line = ) {
my ($a, $b, $c) = split( "t", $line );
print "File contains: $lbl_a=$a, $lbl_b=$b, $lbl_c=$cn";
}
close( SOURCE );
}
1;
Content of settings file "config.pl"
$rh_prefs = {
sourcefile => mydata.txt,
a => name,
b => phone,
c => date,
};
Download (0.014MB)
Added: 2007-08-08 License: Perl Artistic License Price:
807 downloads
mrtg-select 1.0
mrtg-select allows the flexible display of MRTG graphs, chosen by keyword and time span. more>>
mrtg-select allows the flexible display of MRTG graphs, chosen by keyword and time span.
I use MRTG to graph all kinds of stuff, and looking at those graphs on the same page helps me detect correlations. ("Say, Professor -- that spike in CPU temperature came right when the Rapture Index hit a three-year high!")
mrtg-select lets me pick a subset of graphs to be displayed on the same page, based on keyword and time span.
And the best part is that it figures out the keywords automagically just by being pointed at the directory where the graphs live -- theres no config file to update. Licensed under the GPL.
<<lessI use MRTG to graph all kinds of stuff, and looking at those graphs on the same page helps me detect correlations. ("Say, Professor -- that spike in CPU temperature came right when the Rapture Index hit a three-year high!")
mrtg-select lets me pick a subset of graphs to be displayed on the same page, based on keyword and time span.
And the best part is that it figures out the keywords automagically just by being pointed at the directory where the graphs live -- theres no config file to update. Licensed under the GPL.
Download (0.002MB)
Added: 2005-11-16 License: GPL (GNU General Public License) Price:
1440 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above aardvark search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed