static
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 506
Cache::Static 0.9905
Cache::Static is a Perl module used for caching without freshness concerns. more>>
Cache::Static is a Perl module used for caching without freshness concerns.
SYNOPSIS
HTML::Mason instructions
In handler.pl: use Cache::Static;
In any component you where you have a well defined set of dependencies which change the output:
< %init >
my $_cs_deps = [
#file dependencies - only regenerate if a file has changed
file|/path/to/some_configuration_file,
#DBI dependencies - still under development - WONT WORK
#DBI dependencies: note the third argument is a DSN
_DBI|table|mysql:scache_test_db|test_table,
_DBI|db|mysql:scache_test_db,
#not yet implemented:
#column level depends, e.g. "DBI|column|$dsn|$tablename|$columname"
#row depends, e.g. "DBI|row|$dsn|$tablename|$uid_column_name|$uid_value"
#XML::Comma dependencies - only regenerate if a Doc or Store has changed
"_XML::Comma|Doc|$doc_key",
"_XML::Comma|Store|$def|$store",
#time dependencies (WARNING: these are discouraged, see doc/NOTE-time-deps)
time|15s, #every 15 seconds
time|M:15s, #every 15 seconds after the minute
time|H:2m, #every 2 minutes past the hour
time|W:2d3h5m0s, #every Tuesday at 3:05 AM
#modifiers (indicate behavior when the file cannot be found)
file-0|/tmp/foo, #if ! -e /tmp/foo, regenerate
file-1|/tmp/foo, #if ! -e /tmp/foo, serve
file|/tmp/foo, #use config value "dep_file_not_found_returns"
#note modifiers also work on extensions, e.g.
_DBI-1|db|mysql:scache_test_db,
_XML::Comma-0|Store|mm_item|post,
#etc... but modifiers CANNOT be used with times (since they have no
#file backing on disk)
];
#whatever you have in $_cs_deps above...
return if Cache::Static::HTML_Mason_Util::cache_it($r, $m, 1, $_cs_deps);
#...
#rest of init block
#...
< /%init >
<<lessSYNOPSIS
HTML::Mason instructions
In handler.pl: use Cache::Static;
In any component you where you have a well defined set of dependencies which change the output:
< %init >
my $_cs_deps = [
#file dependencies - only regenerate if a file has changed
file|/path/to/some_configuration_file,
#DBI dependencies - still under development - WONT WORK
#DBI dependencies: note the third argument is a DSN
_DBI|table|mysql:scache_test_db|test_table,
_DBI|db|mysql:scache_test_db,
#not yet implemented:
#column level depends, e.g. "DBI|column|$dsn|$tablename|$columname"
#row depends, e.g. "DBI|row|$dsn|$tablename|$uid_column_name|$uid_value"
#XML::Comma dependencies - only regenerate if a Doc or Store has changed
"_XML::Comma|Doc|$doc_key",
"_XML::Comma|Store|$def|$store",
#time dependencies (WARNING: these are discouraged, see doc/NOTE-time-deps)
time|15s, #every 15 seconds
time|M:15s, #every 15 seconds after the minute
time|H:2m, #every 2 minutes past the hour
time|W:2d3h5m0s, #every Tuesday at 3:05 AM
#modifiers (indicate behavior when the file cannot be found)
file-0|/tmp/foo, #if ! -e /tmp/foo, regenerate
file-1|/tmp/foo, #if ! -e /tmp/foo, serve
file|/tmp/foo, #use config value "dep_file_not_found_returns"
#note modifiers also work on extensions, e.g.
_DBI-1|db|mysql:scache_test_db,
_XML::Comma-0|Store|mm_item|post,
#etc... but modifiers CANNOT be used with times (since they have no
#file backing on disk)
];
#whatever you have in $_cs_deps above...
return if Cache::Static::HTML_Mason_Util::cache_it($r, $m, 1, $_cs_deps);
#...
#rest of init block
#...
< /%init >
Download (0.059MB)
Added: 2007-05-28 License: Perl Artistic License Price:
879 downloads
Static IP configurator 1.0
Static IP configurator is a network configurator for static IP address by using kommander. more>>
Static IP configurator is a network configurator for static IP address by using kommander.
<<less Download (0.010MB)
Added: 2005-06-27 License: GPL (GNU General Public License) Price:
1592 downloads
dim_STAT 8.1
dim_STAT project is a performance analysis and monitoring tool for Solaris and Linux (as well all other UNIX) systems. more>>
dim_STAT project is a performance analysis and monitoring tool for Solaris and Linux (as well all other UNIX) systems.
Main features:
- Web based interface
- data storage in a SQL database
- several data views
- interactive (Java) or static (PNG) graphs
- real-time monitoring
- multi-host monitoring
- post analyzing
- statistics integration
- professional reporting with automated features, and more.
<<lessMain features:
- Web based interface
- data storage in a SQL database
- several data views
- interactive (Java) or static (PNG) graphs
- real-time monitoring
- multi-host monitoring
- post analyzing
- statistics integration
- professional reporting with automated features, and more.
Download (57.6MB)
Added: 2007-06-15 License: GPL (GNU General Public License) Price:
534 downloads
ELF statifier 1.6.11
ELF statifier create from dynamically linked executables and all its libraries one file. more>>
ELF statifier create from dynamically linked executables and all its libraries one file. This file can be copied and run on another machine without need to drag all its libraries.
Dynamically linked executables are smaller then statically linked. From the other side dynamically linked executables use shared libraries compiled in PIC (position independend code) which is slower than "normal" one.
Files, created by statifier ("pseudo-static") combine disadvantages of both of them:
Huge - much bigger than statically linked
Still use PIC code
So, why one will use it ?
Ok, "pseudo-static" files have some advantages too:
Everything in one file - so distributing is simple
Same file can be used for computers with different libraries versions
Faster startup
But all these one can got with usual static files.
So, why use statifier and huge "pseudo-static" executables instead of static ?
there is no source code available
there is no compiler (or build-chain) available
static link does not work or its not obvious how do it
to preserve memory layout - static link will change it and may "wake-up" hidden bugs
for "permanent link" LD_PRELOAD library into executable
Supported platforms
linux x86
linux x86_64
linux alpha
<<lessDynamically linked executables are smaller then statically linked. From the other side dynamically linked executables use shared libraries compiled in PIC (position independend code) which is slower than "normal" one.
Files, created by statifier ("pseudo-static") combine disadvantages of both of them:
Huge - much bigger than statically linked
Still use PIC code
So, why one will use it ?
Ok, "pseudo-static" files have some advantages too:
Everything in one file - so distributing is simple
Same file can be used for computers with different libraries versions
Faster startup
But all these one can got with usual static files.
So, why use statifier and huge "pseudo-static" executables instead of static ?
there is no source code available
there is no compiler (or build-chain) available
static link does not work or its not obvious how do it
to preserve memory layout - static link will change it and may "wake-up" hidden bugs
for "permanent link" LD_PRELOAD library into executable
Supported platforms
linux x86
linux x86_64
linux alpha
Download (0.095MB)
Added: 2007-07-09 License: GPL (GNU General Public License) Price:
839 downloads
smalloc 1.0
smalloc (Static memory buffer malloc) is an ideal memory manager for Realtime Linux Kernel modules. more>>
smalloc short from Static memory buffer malloc, is an ideal memory manager for Realtime Linux Kernel modules that cant use dynamic memory offered by kmalloc because of the non-realtime nature of kmalloc.
Like malloc(), smalloc() doles out memory to client code. Unlike malloc, however, smalloc takes a static memory buffer (as an initialization parameter). It is this buffer that smalloc manages when doling out memory to client code.
This design makes smalloc ideal for use inside a Realtime Linux kernel module. It also makes it much easire to port userspace code that relies on malloc() in C or operator new() in C++ for memory management to a realtime kernel module.
For example:
(the below is linux kernel code)
< code >
#include "smalloc.h"
#include < linux/slab.h >
#define MEMPOOLSZ (1024*1024*1024)
char *buf;
...
buf = kmalloc(MEMPOOLSZ, GFP_KERNEL); /* 1 megabyte buffer in kernel
module.. */
smalloc_set_memory_pool(buf, sizeof(buf));
...
MyStruct *s;
s = smalloc(sizeof(MyStruct)); /* example of code that uses this
static memory buffer */
< /code >
The above example is a typical usage pattern of smalloc.
<<lessLike malloc(), smalloc() doles out memory to client code. Unlike malloc, however, smalloc takes a static memory buffer (as an initialization parameter). It is this buffer that smalloc manages when doling out memory to client code.
This design makes smalloc ideal for use inside a Realtime Linux kernel module. It also makes it much easire to port userspace code that relies on malloc() in C or operator new() in C++ for memory management to a realtime kernel module.
For example:
(the below is linux kernel code)
< code >
#include "smalloc.h"
#include < linux/slab.h >
#define MEMPOOLSZ (1024*1024*1024)
char *buf;
...
buf = kmalloc(MEMPOOLSZ, GFP_KERNEL); /* 1 megabyte buffer in kernel
module.. */
smalloc_set_memory_pool(buf, sizeof(buf));
...
MyStruct *s;
s = smalloc(sizeof(MyStruct)); /* example of code that uses this
static memory buffer */
< /code >
The above example is a typical usage pattern of smalloc.
Download (0.007MB)
Added: 2006-03-22 License: Public Domain Price:
1314 downloads
Webminstats 0.10.6
Webminstats is a basic system static logging application that graphs the results. more>>
Webminstats is a basic system static logging application that graphs the results. Its first use is system analysis.
Currently it uses webmin as a base web server and tools package.
The basic design is for a system that can have modules add and removed as easily as webmin itself, well almost.
The current modules are cpu, custom, disk, filesopen, firewall, generic, internet, irq, lm_sensors, load, mem, mysql, network, ping, process, samba, services, snmp, snort, ups, users.
<<lessCurrently it uses webmin as a base web server and tools package.
The basic design is for a system that can have modules add and removed as easily as webmin itself, well almost.
The current modules are cpu, custom, disk, filesopen, firewall, generic, internet, irq, lm_sensors, load, mem, mysql, network, ping, process, samba, services, snmp, snort, ups, users.
Download (0.13MB)
Added: 2007-08-04 License: GPL (GNU General Public License) Price:
812 downloads
aircrack 2.41
aircrack is a 802.11 sniffer and WEP/WPA key cracker. more>>
aircrack is a 802.11 sniffer and WEP/WPA key cracker.
It consists of: airodump (an 802.11 packet capture program), aireplay (an 802.11 packet injection program), aircrack (static WEP and WPA-PSK cracking), and airdecap (decrypts WEP/WPA capture files).
Enhancements:
- airodump: show probing clients as "not associated"
- airodump: dont substract the noise level unless madwifi
- airodump: fixed channel hopping with old orinoco
- airmon.sh: added detection of the zd1211 driver
<<lessIt consists of: airodump (an 802.11 packet capture program), aireplay (an 802.11 packet injection program), aircrack (static WEP and WPA-PSK cracking), and airdecap (decrypts WEP/WPA capture files).
Enhancements:
- airodump: show probing clients as "not associated"
- airodump: dont substract the noise level unless madwifi
- airodump: fixed channel hopping with old orinoco
- airmon.sh: added detection of the zd1211 driver
Download (0.077MB)
Added: 2005-11-28 License: GPL (GNU General Public License) Price:
18823 downloads
Netswitch 0.1
Netswitch was designed for people who often move and need different network configurations. more>>
Netswitch project was designed for people who often move and need different network configurations.
You define network profiles and netswitch updates your network configuration according to them. It runs perfectly on Debian, must work on Ubuntu and should work on every Linux distribution.
Installation:
install with
$make install
uninstall with
$make uninstall
or
$make deinstall
Enhancements:
- This is the first version.
- It supports static and dynamic (DHCP) configuration.
- It can also use a proxy and update the Firefox configuration for all users on the system.
<<lessYou define network profiles and netswitch updates your network configuration according to them. It runs perfectly on Debian, must work on Ubuntu and should work on every Linux distribution.
Installation:
install with
$make install
uninstall with
$make uninstall
or
$make deinstall
Enhancements:
- This is the first version.
- It supports static and dynamic (DHCP) configuration.
- It can also use a proxy and update the Firefox configuration for all users on the system.
Download (0.082MB)
Added: 2006-11-07 License: BSD License Price:
1084 downloads
Standalonecomplex 1.3
Standalonecomplex is a banner scanner used for profiling subnets. more>>
Standalonecomplex is a banner scanner used for profiling subnets. Standalonecomplex project has built in nmap support as well as static port profiling.
Usage:
./standalonecomplex [-h] [-c < file >] [-r < range >] [-l < log >]
-h : print this screen.
-v : display only vulnerable hosts.
-c < file > : configuration file.
-l < log > : file to log output to (default is stdout).
-r < range > : ip range to scan.
<<lessUsage:
./standalonecomplex [-h] [-c < file >] [-r < range >] [-l < log >]
-h : print this screen.
-v : display only vulnerable hosts.
-c < file > : configuration file.
-l < log > : file to log output to (default is stdout).
-r < range > : ip range to scan.
Download (0.004MB)
Added: 2006-01-17 License: Freely Distributable Price:
1375 downloads
mysqlRadius 1.71
mysqlRadius is the world favorite Cistron 1.6.6 (and other) radius server manager. more>>
mysqlRadius is the world favorite Cistron 1.6.6 (and other) radius server manager. mysqlRadius can manage 1 or 100 RADIUS servers without a hiccup including redundant backup servers that transparently provide mysql accounting data via mysqlRadacct aux application.
Our mysqlISP component systems focus is on a very stable telco quality ISP services via static configuration of servers from mySQL, but with mySQL not required to be live.
<<lessOur mysqlISP component systems focus is on a very stable telco quality ISP services via static configuration of servers from mySQL, but with mySQL not required to be live.
Download (0.082MB)
Added: 2006-03-13 License: GPL (GNU General Public License) Price:
1320 downloads
mysqlApache 1.46
mysqlApache is a MySQL database backend and browser based frontend for managing large numbers of Apache web servers. more>>
mysqlApache is a MySQL database backend and browser based frontend for managing large numbers of Apache web servers (each of more than a 1000 virtual and IP-based web sites).
It is part of the OpenISP project and works if you like with mysqlBind, mysqlISP, mysqlIPM, and mysqlSendmail.
Our mysqlISP component systems focus is on a very stable telco quality ISP services via static configuration of servers from mySQL, but with mySQL not required to be live.
<<lessIt is part of the OpenISP project and works if you like with mysqlBind, mysqlISP, mysqlIPM, and mysqlSendmail.
Our mysqlISP component systems focus is on a very stable telco quality ISP services via static configuration of servers from mySQL, but with mySQL not required to be live.
Download (0.13MB)
Added: 2006-03-07 License: GPL (GNU General Public License) Price:
1330 downloads
Oxalis 0.1
Oxalis is web site editor. more>>
Oxalis is web site editor.
Oxalis project is created for editing static web sites.
Main features:
- Markdown syntax for writing pages
- templates
- site management
- upload to server via FTP
- it is free software
<<lessOxalis project is created for editing static web sites.
Main features:
- Markdown syntax for writing pages
- templates
- site management
- upload to server via FTP
- it is free software
Download (0.051MB)
Added: 2006-12-20 License: GPL (GNU General Public License) Price:
1060 downloads
Synergiser 1.2 RC1
Synergiser is a Content Management System (CMS) that does not rely on a database. more>>
Synergiser is a Content Management System (CMS) that does not rely on a database.
It features a simple blog system, TinyMCE editors for all relevant sections, a module architecture, simple menu and poll modules, a settings manager for module settings and template/locale, a Page File Manager for managing static pages, and a template system with definable regions.
<<lessIt features a simple blog system, TinyMCE editors for all relevant sections, a module architecture, simple menu and poll modules, a settings manager for module settings and template/locale, a Page File Manager for managing static pages, and a template system with definable regions.
Download (0.64MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
839 downloads
Class::MakeMethods::Template::Generic 1.01
Class::MakeMethods::Template::Generic Perl module contains templates for common meta-method types. more>>
Class::MakeMethods::Template::Generic Perl module contains templates for common meta-method types.
SYNOPSIS
package MyObject;
use Class::MakeMethods (
Template::Hash:new => [ new ],
Template::Hash:scalar => [ foo ]
Template::Static:scalar => [ bar ]
);
package main;
my $obj = MyObject->new( foo => "Foozle", bar => "Bozzle" );
print $obj->foo();
$obj->bar("Bamboozle");
This package provides a variety of abstract interfaces for constructors and accessor methods, which form a common foundation for meta-methods provided by the Hash, Scalar, Flyweight, Static, PackageVar, and ClassVar implementations.
Generally speaking, the Generic meta-methods define calling interfaces and behaviors which are bound to differently scoped data by each of those subclasses.
new Constructor
There are several types of hash-based object constructors to choose from.
Each of these methods creates and returns a reference to a new blessed instance. They differ in how their (optional) arguments are interpreted to set initial values, and in how they operate when called as class or instance methods.
<<lessSYNOPSIS
package MyObject;
use Class::MakeMethods (
Template::Hash:new => [ new ],
Template::Hash:scalar => [ foo ]
Template::Static:scalar => [ bar ]
);
package main;
my $obj = MyObject->new( foo => "Foozle", bar => "Bozzle" );
print $obj->foo();
$obj->bar("Bamboozle");
This package provides a variety of abstract interfaces for constructors and accessor methods, which form a common foundation for meta-methods provided by the Hash, Scalar, Flyweight, Static, PackageVar, and ClassVar implementations.
Generally speaking, the Generic meta-methods define calling interfaces and behaviors which are bound to differently scoped data by each of those subclasses.
new Constructor
There are several types of hash-based object constructors to choose from.
Each of these methods creates and returns a reference to a new blessed instance. They differ in how their (optional) arguments are interpreted to set initial values, and in how they operate when called as class or instance methods.
Download (0.15MB)
Added: 2007-06-18 License: Perl Artistic License Price:
858 downloads
FlightFeather 0.3.3
FlightFeathers goal is social networking for everyone. more>>
FlightFeathers goal is "social networking for everyone". This means that anyone should have a chance to run a popular social networking site -- on minimal hardware, and without wasting bandwidth.
FlightFeathers design has reflected its goal from the very beginning. Whenever the systems state changes, FlightFeather generates static HTML pages. Pure read operations -- usually about 90% of the total -- do not require the application to run at all.
FlightFeathers sister project -- Flightdeck-UI -- likewise uses this Relative Static technique (i.e. the application-generated dynamic data appears as static pages to the Web server). The author also presented these concepts at LinuxWorld San Francisco 2006.
FlightFeather does not use a separate SQL database. In-memory data structures and Berkeley DB augment the static HTML pages to maintain a consistent state. The overall approach may be termed LAP -- a variation on the highly effective LAMP platform. LAMP stands for Linux, Apache, MySQL and Perl/Python/PHP (although there can be further variations).
FlightFeather drops the "M" from this formula, in favor of capturing as many system state changes as possible into complete, static HTML documents. Apache can then serve these documents by itself, while FlightFeather waits in the background.
Enhancements:
- This release modifies the way the FlightFeather server loads the configuration, protocol, session, and storage modules on startup.
- The actual loading process now takes place after all options have been parsed.
- If the "-c" or "--command" option is present, the server does not import these modules at all, since they are not required.
- The new implementation also fixes a bug that caused the test versions of the above modules to always load, in addition to any modules specified on the command line.
<<lessFlightFeathers design has reflected its goal from the very beginning. Whenever the systems state changes, FlightFeather generates static HTML pages. Pure read operations -- usually about 90% of the total -- do not require the application to run at all.
FlightFeathers sister project -- Flightdeck-UI -- likewise uses this Relative Static technique (i.e. the application-generated dynamic data appears as static pages to the Web server). The author also presented these concepts at LinuxWorld San Francisco 2006.
FlightFeather does not use a separate SQL database. In-memory data structures and Berkeley DB augment the static HTML pages to maintain a consistent state. The overall approach may be termed LAP -- a variation on the highly effective LAMP platform. LAMP stands for Linux, Apache, MySQL and Perl/Python/PHP (although there can be further variations).
FlightFeather drops the "M" from this formula, in favor of capturing as many system state changes as possible into complete, static HTML documents. Apache can then serve these documents by itself, while FlightFeather waits in the background.
Enhancements:
- This release modifies the way the FlightFeather server loads the configuration, protocol, session, and storage modules on startup.
- The actual loading process now takes place after all options have been parsed.
- If the "-c" or "--command" option is present, the server does not import these modules at all, since they are not required.
- The new implementation also fixes a bug that caused the test versions of the above modules to always load, in addition to any modules specified on the command line.
Download (0.037MB)
Added: 2007-02-10 License: GPL (GNU General Public License) Price:
987 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above static 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