stop dog barking behavior
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1250
Yellow Dog Linux 5.0.2
Yellow Dog Linux is the Premier Linux Operating System for PowerPC. more>>
Yellow Dog Linux is the Premier Linux Operating System for PowerPC.
Proven world-wide as the preferred Linux OS for the Power architecture, v4.1 brings Terra Soft into its 8th year of Power Linux development and support. Yellow Dog Linux v4.1 marks a returning point in Terra Softs effort to again provide a leading desktop Linux OS.
Yellow Dog Linux combines the preferred desktops KDE and Gnome with the latest sound and graphic card support, leading (but not bleeding) edge kernels and stable, functional compilers for code development. And of course, the foundation applications and servers expected of all modern Linux operatings systems for web, database, email, and network services.
What will you do with your PowerMac after Apple switches to Intel?
We have an answer--Faster, more stable, and far more efficient as a desktop OS, Yellow Dog Linux is a solid replacement (not just an alternative) to OSX. Breath new life into your PowerPC G3 and G4, giving it a second wind as a personal workstation, or a new function as a web, email, or data server. Want to see how your G5 runs Linux? You may dual-boot both OSX and Yellow Dog Linux or take the leap and run Yellow Dog Linux alone, taking advantage of the multitude of included, freely available, and commercial applications.
Main features:
New or Improved Device Support
- Backlit keys.
- PCMCIA cell phone and modem support.
- Support for Atheros wi-fi cards.
- Dual head config via the GUI.
- Install direct to and boot from FireWire drives.
- USB device auto-mount under both KDE & GNOME.
- Greatly improved sound support.
- Graphical Up2Date package install and update tool.
- Support for the latest Apple Power Books.
- Beta support for Apple G5 PowerMacs with dual core CPUs.
- Beta Extreme driver will be available shortly after release, via YDL.net Enhanced accounts.
Enhancements:
- We are pleased to announce the release of Yellow Dog Linux 5.0.2, a single Install DVD with support for the Apple G4 and G5 computers, Sony PS3, and IBM System p servers, including the JS20/21, OpenPower, and current POWER5 systems. Yellow Dog Linux 5.0.2 offers: kernel 2.6.22-rc4; SDK v2.0 for Cell BE; more than 70 bug fixes and updates; continued support for both 32-bit and 64-bit systems; beta IBM System p support. The IBM Software Development Toolkit (SDK) for Cell Broadband Engine (Cell BE) is a complete package of tools which allows developers to program optimized applications for platforms built upon the Cell BE. The SDK is composed of development tool chains, software libraries, and sample source.
<<lessProven world-wide as the preferred Linux OS for the Power architecture, v4.1 brings Terra Soft into its 8th year of Power Linux development and support. Yellow Dog Linux v4.1 marks a returning point in Terra Softs effort to again provide a leading desktop Linux OS.
Yellow Dog Linux combines the preferred desktops KDE and Gnome with the latest sound and graphic card support, leading (but not bleeding) edge kernels and stable, functional compilers for code development. And of course, the foundation applications and servers expected of all modern Linux operatings systems for web, database, email, and network services.
What will you do with your PowerMac after Apple switches to Intel?
We have an answer--Faster, more stable, and far more efficient as a desktop OS, Yellow Dog Linux is a solid replacement (not just an alternative) to OSX. Breath new life into your PowerPC G3 and G4, giving it a second wind as a personal workstation, or a new function as a web, email, or data server. Want to see how your G5 runs Linux? You may dual-boot both OSX and Yellow Dog Linux or take the leap and run Yellow Dog Linux alone, taking advantage of the multitude of included, freely available, and commercial applications.
Main features:
New or Improved Device Support
- Backlit keys.
- PCMCIA cell phone and modem support.
- Support for Atheros wi-fi cards.
- Dual head config via the GUI.
- Install direct to and boot from FireWire drives.
- USB device auto-mount under both KDE & GNOME.
- Greatly improved sound support.
- Graphical Up2Date package install and update tool.
- Support for the latest Apple Power Books.
- Beta support for Apple G5 PowerMacs with dual core CPUs.
- Beta Extreme driver will be available shortly after release, via YDL.net Enhanced accounts.
Enhancements:
- We are pleased to announce the release of Yellow Dog Linux 5.0.2, a single Install DVD with support for the Apple G4 and G5 computers, Sony PS3, and IBM System p servers, including the JS20/21, OpenPower, and current POWER5 systems. Yellow Dog Linux 5.0.2 offers: kernel 2.6.22-rc4; SDK v2.0 for Cell BE; more than 70 bug fixes and updates; continued support for both 32-bit and 64-bit systems; beta IBM System p support. The IBM Software Development Toolkit (SDK) for Cell Broadband Engine (Cell BE) is a complete package of tools which allows developers to program optimized applications for platforms built upon the Cell BE. The SDK is composed of development tool chains, software libraries, and sample source.
Download (MB)
Added: 2007-06-15 License: GPL (GNU General Public License) Price:
571 downloads
TRIPP 0.2 Alpha
TRIPP is a utility to rewrite incoming and outgoing IP packets. more>>
TRIPP is a utility to rewrite incoming and outgoing IP packets. Since it can rewrite both headers and payload, it can be used to configure the tcp/ip stack behavior in order to perform various tasks mainly intended for network tests, simulations and development.
It is configured via a small rule-based language, which allows the user to intercept packets, set arbitrary header values, increment or decrement numeric header fields, set an arbitrary payload, rewrite parts of the payload, or fragment, multiply, or drop packets.
TRIPP project is totally user-level and doesnt require any kernel module.
<<lessIt is configured via a small rule-based language, which allows the user to intercept packets, set arbitrary header values, increment or decrement numeric header fields, set an arbitrary payload, rewrite parts of the payload, or fragment, multiply, or drop packets.
TRIPP project is totally user-level and doesnt require any kernel module.
Download (0.20MB)
Added: 2006-06-15 License: GPL (GNU General Public License) Price:
1226 downloads
Benchmark::Forking 0.99
Benchmark::Forking is a Perl module to run benchmarks in separate processes. more>>
Benchmark::Forking is a Perl module to run benchmarks in separate processes.
SYNOPSIS
use Benchmark::Forking qw( timethis timethese cmpthese );
timethis ($count, "code");
timethese($count, {
Name1 => sub { ...code1... },
Name2 => sub { ...code2... },
});
cmpthese($count, {
Name1 => sub { ...code1... },
Name2 => sub { ...code2... },
});
Benchmark::Forking->enabled(0); # Stop using forking feature
...
Benchmark::Forking->enabled(1); # Begin using forking again
The Benchmark::Forking module changes the behavior of the standard Benchmark module, running each piece of code to be timed in a separate forked process. Because each child exits after running its timing loop, the computations it performs cant propogate back to affect subsequent test cases.
This can make benchmark comparisons more accurate, because the separate test cases are mostly isolated from side-effects caused by the others. Benchmark scripts typically dont depend on those side-effects, so in most cases you can simply use or require this module at the top of your existing code without having to change anything else. (A few key exceptions are noted in "BUGS".)
<<lessSYNOPSIS
use Benchmark::Forking qw( timethis timethese cmpthese );
timethis ($count, "code");
timethese($count, {
Name1 => sub { ...code1... },
Name2 => sub { ...code2... },
});
cmpthese($count, {
Name1 => sub { ...code1... },
Name2 => sub { ...code2... },
});
Benchmark::Forking->enabled(0); # Stop using forking feature
...
Benchmark::Forking->enabled(1); # Begin using forking again
The Benchmark::Forking module changes the behavior of the standard Benchmark module, running each piece of code to be timed in a separate forked process. Because each child exits after running its timing loop, the computations it performs cant propogate back to affect subsequent test cases.
This can make benchmark comparisons more accurate, because the separate test cases are mostly isolated from side-effects caused by the others. Benchmark scripts typically dont depend on those side-effects, so in most cases you can simply use or require this module at the top of your existing code without having to change anything else. (A few key exceptions are noted in "BUGS".)
Download (0.006MB)
Added: 2007-04-30 License: Perl Artistic License Price:
907 downloads
DOG Data Organizer 0.4.2
DOG Data Organizer provides a bookmark organizer for various bookmark types. more>>
DOG Data Organizer provides a bookmark organizer for various bookmark types.
DOG is a personal knowledge manager based on topic maps. It currently specializes in managing bookmarks.
It imports and exports Netscape, Mozilla, and KDE2 (XBEL) bookmark files, and it imports KDE1 bookmarks and Windows IE Favorites.
<<lessDOG is a personal knowledge manager based on topic maps. It currently specializes in managing bookmarks.
It imports and exports Netscape, Mozilla, and KDE2 (XBEL) bookmark files, and it imports KDE1 bookmarks and Windows IE Favorites.
Download (0.42MB)
Added: 2007-03-12 License: GPL (GNU General Public License) Price:
960 downloads
Now Playin Lite 1.0
Now Playin is a Kopete now listening script, lite version, by Amy Brodzik. more>>
Now Playin is a Kopete now listening script, "lite" version, by Amy Brodzik.
This script does pretty much what the original did with these options set:
* Status prefix: "Now Listening: "
* No changing the status to away
* Set the away message
* Do not set the avatar
There is no config dialog in this version because I do not know Kommander.
This script ONLY changes your status message to show the song youre listening to. It does not change your nickname or your avatar. If you want those features, go get the full version above or edit the script. I have removed the code for other features that this script had for the sake of simplicity. If you want those features back, get the version at the URL above.
I modified and trimmed this script because I wanted to change the behavior--for example, now it clears your status message when you hit Stop. I hope someone finds this trimmed-down version useful.
I also disabled logging to the log.txt file by default.
I know Kopete has a "now playing" plug-in, but it doesnt work at all with certain types of files, like tracker modules.
<<lessThis script does pretty much what the original did with these options set:
* Status prefix: "Now Listening: "
* No changing the status to away
* Set the away message
* Do not set the avatar
There is no config dialog in this version because I do not know Kommander.
This script ONLY changes your status message to show the song youre listening to. It does not change your nickname or your avatar. If you want those features, go get the full version above or edit the script. I have removed the code for other features that this script had for the sake of simplicity. If you want those features back, get the version at the URL above.
I modified and trimmed this script because I wanted to change the behavior--for example, now it clears your status message when you hit Stop. I hope someone finds this trimmed-down version useful.
I also disabled logging to the log.txt file by default.
I know Kopete has a "now playing" plug-in, but it doesnt work at all with certain types of files, like tracker modules.
Download (0.002MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
839 downloads
C-Dogs SDL Port 0.4
C-Dogs is an arcade shoot-em-up which lets players work alone and co-operativly during missions. more>>
C-Dogs SDL is a port of the old DOS arcade game C-Dogs to modern operating systems utilising the SDL Media Libraries. In theory C-Dogs SDL should be able to run on Windows, MacOS X, BeOS and the other systems supported by SDL.
Genererally, the more UNIX like a system is, the greater the chance of C-Dogs working (MacOS X and BeOS people, I mean you guys).
C-Dogs SDL was ported to SDL by Jeremy Chin and Lucas Martin-King, using Gentoo Linux as their development environment.
C-Dogs is an arcade shoot-em-up which lets players work alone and co-operativly during missions, and against each other in the "dogfight" deathmatch mode. The DOS version of C-Dogs came with several built in missions and dogfight maps, this version is no exception.
The author of the DOS version of C-Dogs was Ronny Wester. See the "official" homepage for more details. We would like to thank him for releasing the C-Dogs sources to the public.
<<lessGenererally, the more UNIX like a system is, the greater the chance of C-Dogs working (MacOS X and BeOS people, I mean you guys).
C-Dogs SDL was ported to SDL by Jeremy Chin and Lucas Martin-King, using Gentoo Linux as their development environment.
C-Dogs is an arcade shoot-em-up which lets players work alone and co-operativly during missions, and against each other in the "dogfight" deathmatch mode. The DOS version of C-Dogs came with several built in missions and dogfight maps, this version is no exception.
The author of the DOS version of C-Dogs was Ronny Wester. See the "official" homepage for more details. We would like to thank him for releasing the C-Dogs sources to the public.
Download (0.36MB)
Added: 2007-07-07 License: GPL (GNU General Public License) Price:
847 downloads
TuxGuardian 0.5
TuxGuardian is an application-based firewall. more>>
TuxGuardian is an application-based firewall. TuxGuardian was developed after the observation that Linux security applications were not tailored for lay users. With TuxGuardian youll be able to implement access control policies to the network resources in order to identify and control every application that tries to access the network.
All this means that now you can make your machine secure by controlling and forbidding transmission and reception of data by unauthorized applications.
TuxGuardian makes use of the latest security mechanisms included in the Linux kernel 2.6, such as the LSM framework, and is really simple to use (thats the intention!).
TuxGuardian is free software distributed under the GNU GPL, which means that you can help too!.
TuxGuardian can be used in the next situations:
If you want to protect you computer against spywares, trojans and other evil pieces of software;
If you want to have an additional layer of protection working on a per-application basis,
besides a packet-filtering firewall or other low level security mechanisms;
If you want to stop backdoors and rootkits which modify the expected behavior of your applications from accessing the network;
If you want to implement the internal security of your network (this is specially useful since ordinary firewalls usually only take care of external threats);
If you want to implement an extra security layer in your network, in addition to the one provided by institutional firewalls and gateways;
Main features:
- Detects unauthorized applications trying to act like a client or a server;
- Operates with or without user intervention;
- Verifies the applications integrity so that maliciously modified software wont be able to send or receive data through the network;
- Uses a three-layered architecture of independent modules, which eases the task of addings new features and functionality;
<<lessAll this means that now you can make your machine secure by controlling and forbidding transmission and reception of data by unauthorized applications.
TuxGuardian makes use of the latest security mechanisms included in the Linux kernel 2.6, such as the LSM framework, and is really simple to use (thats the intention!).
TuxGuardian is free software distributed under the GNU GPL, which means that you can help too!.
TuxGuardian can be used in the next situations:
If you want to protect you computer against spywares, trojans and other evil pieces of software;
If you want to have an additional layer of protection working on a per-application basis,
besides a packet-filtering firewall or other low level security mechanisms;
If you want to stop backdoors and rootkits which modify the expected behavior of your applications from accessing the network;
If you want to implement the internal security of your network (this is specially useful since ordinary firewalls usually only take care of external threats);
If you want to implement an extra security layer in your network, in addition to the one provided by institutional firewalls and gateways;
Main features:
- Detects unauthorized applications trying to act like a client or a server;
- Operates with or without user intervention;
- Verifies the applications integrity so that maliciously modified software wont be able to send or receive data through the network;
- Uses a three-layered architecture of independent modules, which eases the task of addings new features and functionality;
Download (0.064MB)
Added: 2006-07-10 License: GPL (GNU General Public License) Price:
1201 downloads
RDFStore::Parser::SiRPAC 0.50
RDFStore::Parser::SiRPAC is a Perl module that implements a streaming RDF Parser as a direct implementation of XML::Parser::Expa more>>
RDFStore::Parser::SiRPAC is a Perl module that implements a streaming RDF Parser as a direct implementation of XML::Parser::Expat.
SYNOPSIS
use RDFStore::Parser::SiRPAC;
use RDFStore::NodeFactory;
my $p=new RDFStore::Parser::SiRPAC(
ErrorContext => 2,
Handlers => {
Init => sub { print "INITn"; },
Final => sub { print "FINALn"; },
Assert => sub { print "STATEMENT - @_n"; }
},
NodeFactory => new RDFStore::NodeFactory() );
$p->parsefile(http://www.gils.net/bsr-gils.rdfs);
$p->parsefile(http://www.gils.net/rdf/bsr-gils.rdfs);
$p->parsefile(/some/where/my.rdf);
$p->parsefile(file:/some/where/my.rdf);
$p->parse(*STDIN); #parse stream but with *blocking* Expat (see below example for n-blocking parsing using XML::Parse::ExpatNB)
use RDFStore::Parser::SiRPAC;
use RDFStore::NodeFactory;
my $pstore=new RDFStore::Parser::SiRPAC(
ErrorContext => 2,
Style => RDFStore::Parser::Styles::RDFStore::Model,
NodeFactory => new RDFStore::NodeFactory(),
store => {
persistent => 1,
seevalues => 1,
options => { Name => /tmp/test }
}
);
my $rdfstore_model = $pstore->parsefile(http://www.gils.net/bsr-gils.rdfs);
#using the expat no-blocking feature (generally for large XML streams) - see XML::Parse::Expat(3)
my $rdfstore_stream_model = $pstore->parsestream(*STDIN);
This module implements a Resource Description Framework (RDF) streaming parser completely in Perl using the XML::Parser::Expat(3) module. The actual RDF parsing happens using an instance of XML::Parser::Expat with Namespaces option enabled and start/stop and char handlers set. The RDF specific code is based on the modified version of SiRPAC of Sergey Melnik in Java; a lot of changes and adaptations have been done to actually run it under Perl. Expat options may be provided when the RDFStore::Parser::SiRPAC object is created. These options are then passed on to the Expat object on each parse call.
Exactly like XML::Parser(3) the behavior of the parser is controlled either by the Style entry elsewhere in this document and/or the Handlers entry elsewhere in this document options, or by the setHandlers entry elsewhere in this document method. These all provide mechanisms for RDFStore::Parser::SiRPAC to set the handlers needed by Expat. If neither Style nor Handlers are specified, then parsing just checks the RDF document syntax against the W3C RDF Raccomandation . When underlying handlers get called, they receive as their first parameter the Expat object, not the Parser object.
To see some examples about how to use it look at the sections below and in the samples and utils directory coming with this software distribution.
E.g. With RDFStore::Parser::SiRPAC you can easily write an rdfingest.pl script to do something like this:
fetch -o - -q http://dmoz.org/rdf/content.rdf.u8.gz |
gunzip - |
sed -f dmoz.content.sed | rdfingest.pl -
<<lessSYNOPSIS
use RDFStore::Parser::SiRPAC;
use RDFStore::NodeFactory;
my $p=new RDFStore::Parser::SiRPAC(
ErrorContext => 2,
Handlers => {
Init => sub { print "INITn"; },
Final => sub { print "FINALn"; },
Assert => sub { print "STATEMENT - @_n"; }
},
NodeFactory => new RDFStore::NodeFactory() );
$p->parsefile(http://www.gils.net/bsr-gils.rdfs);
$p->parsefile(http://www.gils.net/rdf/bsr-gils.rdfs);
$p->parsefile(/some/where/my.rdf);
$p->parsefile(file:/some/where/my.rdf);
$p->parse(*STDIN); #parse stream but with *blocking* Expat (see below example for n-blocking parsing using XML::Parse::ExpatNB)
use RDFStore::Parser::SiRPAC;
use RDFStore::NodeFactory;
my $pstore=new RDFStore::Parser::SiRPAC(
ErrorContext => 2,
Style => RDFStore::Parser::Styles::RDFStore::Model,
NodeFactory => new RDFStore::NodeFactory(),
store => {
persistent => 1,
seevalues => 1,
options => { Name => /tmp/test }
}
);
my $rdfstore_model = $pstore->parsefile(http://www.gils.net/bsr-gils.rdfs);
#using the expat no-blocking feature (generally for large XML streams) - see XML::Parse::Expat(3)
my $rdfstore_stream_model = $pstore->parsestream(*STDIN);
This module implements a Resource Description Framework (RDF) streaming parser completely in Perl using the XML::Parser::Expat(3) module. The actual RDF parsing happens using an instance of XML::Parser::Expat with Namespaces option enabled and start/stop and char handlers set. The RDF specific code is based on the modified version of SiRPAC of Sergey Melnik in Java; a lot of changes and adaptations have been done to actually run it under Perl. Expat options may be provided when the RDFStore::Parser::SiRPAC object is created. These options are then passed on to the Expat object on each parse call.
Exactly like XML::Parser(3) the behavior of the parser is controlled either by the Style entry elsewhere in this document and/or the Handlers entry elsewhere in this document options, or by the setHandlers entry elsewhere in this document method. These all provide mechanisms for RDFStore::Parser::SiRPAC to set the handlers needed by Expat. If neither Style nor Handlers are specified, then parsing just checks the RDF document syntax against the W3C RDF Raccomandation . When underlying handlers get called, they receive as their first parameter the Expat object, not the Parser object.
To see some examples about how to use it look at the sections below and in the samples and utils directory coming with this software distribution.
E.g. With RDFStore::Parser::SiRPAC you can easily write an rdfingest.pl script to do something like this:
fetch -o - -q http://dmoz.org/rdf/content.rdf.u8.gz |
gunzip - |
sed -f dmoz.content.sed | rdfingest.pl -
Download (0.47MB)
Added: 2006-06-15 License: GPL (GNU General Public License) Price:
1226 downloads
Sawdog 2.4
Sawdog is a suite of scripts that informs the system operators of mission critical servers in the case of a failure. more>>
Sawdog (Simple Active Watch-DOG) is a suite of scripts that informs the system operators of mission critical servers in the case of a failure.
A set of small executables (i.e. expect scripts) are executed, and if one executable fails, it sends an email or an SMS to the sysop. There are 3 states known to sawdog: alive, unknown, and dead. Only certain state transitions trigger a notification.
On a Web interface, the states of all hosts are visible. So far, there are scripts to check for DNS, FTP, HTTP, HTTPS, ICMP, IMAP, MS SQL, MySQL, Notes, NTP, POP3, PostgreSQL, SMB, SMTP, SNMP, SSH, telnet, TWS, VNM, and Webmin.
<<lessA set of small executables (i.e. expect scripts) are executed, and if one executable fails, it sends an email or an SMS to the sysop. There are 3 states known to sawdog: alive, unknown, and dead. Only certain state transitions trigger a notification.
On a Web interface, the states of all hosts are visible. So far, there are scripts to check for DNS, FTP, HTTP, HTTPS, ICMP, IMAP, MS SQL, MySQL, Notes, NTP, POP3, PostgreSQL, SMB, SMTP, SNMP, SSH, telnet, TWS, VNM, and Webmin.
Download (0.081MB)
Added: 2006-09-25 License: GPL (GNU General Public License) Price:
1125 downloads
Particle Reality 1.0
Particle Reality is an extremely versatile Java particle engine. more>>
Particle Reality is an extremely versatile Java particle engine, based on the ideas of the excellent commercial particle animation software Particle Illusion by wondertouch.
Particle Reality allows you to define all aspects of particle and particle emitter behavior over their entire lifetime in XML, allowing for a very flexible particle system.
<<lessParticle Reality allows you to define all aspects of particle and particle emitter behavior over their entire lifetime in XML, allowing for a very flexible particle system.
Download (MB)
Added: 2006-01-20 License: BSD License Price:
1394 downloads
Relations::Query 0.93
Relations::Query is a Perl Object for building queries with DBI/DBD::mysql. more>>
Relations::Query is a Perl Object for building queries with DBI/DBD::mysql.
SYNOPSIS
# Relations::Query Script that creates some queries.
use Relations::Query;
$query = new Relations::Query(-select => {fife => barney},
-from => {green_teeth => moogoo},
-where => "flotsam>jetsam",
-group_by => "denali",
-having => {fortune => cookie},
-order_by => [was,is,will],
-limit => 1);
$get_query = $query->get();
$query->set(-select => {clean => sparkle},
-from => {lean => book},
-where => "fighting is between courage and chaos",
-limit => 123);
$set_query = $query->get();
$get_add_query = $query->get_add(-select => {mean => dog},
-where => "running is null",
-having => {kitties=> on_tv},
-limit => [9678]);
$query = to_string({select => this,
from => that});
<<lessSYNOPSIS
# Relations::Query Script that creates some queries.
use Relations::Query;
$query = new Relations::Query(-select => {fife => barney},
-from => {green_teeth => moogoo},
-where => "flotsam>jetsam",
-group_by => "denali",
-having => {fortune => cookie},
-order_by => [was,is,will],
-limit => 1);
$get_query = $query->get();
$query->set(-select => {clean => sparkle},
-from => {lean => book},
-where => "fighting is between courage and chaos",
-limit => 123);
$set_query = $query->get();
$get_add_query = $query->get_add(-select => {mean => dog},
-where => "running is null",
-having => {kitties=> on_tv},
-limit => [9678]);
$query = to_string({select => this,
from => that});
Download (0.010MB)
Added: 2006-09-02 License: Perl Artistic License Price:
1147 downloads
Jabberlang 0.2
Jabberlang is a client XMPP/Jabber library for Erlang to implement scalable fault-tolerant XMPP/Jabber agents. more>>
Jabberlang is a client XMPP and Jabber library for Erlang to implement scalable fault-tolerant XMPP/Jabber agents.
The first version has been presented during Erlang User Conference (EUC 2004). For now, it still only supports a minimal subset of the Jabber/XMPP protocol but many changes are planned.
Enhancements:
- This version fixes several problems and improves the behavior of Jabberlang.
- The connection now fails when the expat library fails to load.
- A bug has been fixed regarding the name of the host used in the library, so the "to" attribute in the stream is now set correctly.
<<lessThe first version has been presented during Erlang User Conference (EUC 2004). For now, it still only supports a minimal subset of the Jabber/XMPP protocol but many changes are planned.
Enhancements:
- This version fixes several problems and improves the behavior of Jabberlang.
- The connection now fails when the expat library fails to load.
- A bug has been fixed regarding the name of the host used in the library, so the "to" attribute in the stream is now set correctly.
Download (0.98MB)
Added: 2005-11-23 License: GPL (GNU General Public License) Price:
1430 downloads
Title Save 0.1d
Title Save is a Firefox extension that replicates IEs default behavior when saving a webpage. more>>
Title Save is a Firefox extension that replicates IEs default behavior when saving a webpage, placing the pages title as filename.
Also, if the page is saved as "Complete", the corresponding URL is inserted as an HTML comment at the top of the file.
<<lessAlso, if the page is saved as "Complete", the corresponding URL is inserted as an HTML comment at the top of the file.
Download (0.005MB)
Added: 2007-06-21 License: MPL (Mozilla Public License) Price:
860 downloads
std_utils 0.7.5
std_utils is a small library of utility functions and classes. more>>
std_utils is a small library of utility functions and classes.
std_utils library supports string operations such as a stripper of leading or trailing characters and tokenizer, and a configuration file parser.
Enhancements:
- A type to throw exceptions on cConfig was added.
- An isKey() function was added to cConfig.
- The documentation was completed. cLog was removed as you can get the same behavior using fstream with "flush" at the end, which is more efficient.
- The deprecated gettok() was removed.
- A reentrant version of gettok was included to avoid copies.
- "stdu" was added as an alias to the "std_util" namespace.
<<lessstd_utils library supports string operations such as a stripper of leading or trailing characters and tokenizer, and a configuration file parser.
Enhancements:
- A type to throw exceptions on cConfig was added.
- An isKey() function was added to cConfig.
- The documentation was completed. cLog was removed as you can get the same behavior using fstream with "flush" at the end, which is more efficient.
- The deprecated gettok() was removed.
- A reentrant version of gettok was included to avoid copies.
- "stdu" was added as an alias to the "std_util" namespace.
Download (0.20MB)
Added: 2006-01-06 License: GPL (GNU General Public License) Price:
1390 downloads
BlackBox 0.70.1
Blackbox is that fast, light window manager you have been looking for without all those annoying library dependancies. more>>
Blackbox is that fast, light window manager you have been looking for without all those annoying library dependancies.
If you have a C++ compiler and the X Window System you can compile and use it.
Enhancements:
- fix compilation on OpenBSD and Mac OS X
- documentation updates to data/README.menu
- fix bt::Timer to make sure it still works after daylight-savings changes
- fix horizontal text alignment by adding a small indent to all text
- fix sunken gradient rendering: the colors are no longer inverted, and the correct bevel is drawn
- add bt::XDG::BaseDir, which is an implementation of the freedesktop.org basedir-spec version 0.6
- make bt::Pen able to recover from cache faults
- silence messages from bt::PixmapCache about the cache maximum being exceeded
- add bt::Rect::inside(), which ensures that one rectangle is inside the other
- fix bt::Resource to do nothing if filename arguments are empty
- fix bt::Resource::merge() to stop overriding existing entries (it should only add new ones)
- add bt::Texture::textureResource() overload that returns a default texture if the resource cannot be found
- add bt::dirname(), which returns the directory part of a file path
- add bt::mkdirhier(), which is equivalent to mkdir -m mode -p path
- add bt::tolower(), which returns a string with all characters lowercase
- add the "Center Placement" window placement policy, which places all new windows in the center of the screen
- add "Shade Window with Mouse Wheel" and "Toolbar Actions with Mouse Wheel" configuration options
- add window-to-window snapping support. This feature is off by default, you need to set session.windowSnapThreshold to a positive number in your ~/.blackboxrc.
- add support for piped menus. The output of a command can be used to create the blackbox menu. This is done by prepending the pipe character, |, to session.menuFile in ~/.blackboxrc or to [include] filenames.
- [nop] menu entries are now drawn disabled
- fix "Focus Last Window on Workspace" behavior to stop preferring windows that occupy all workspaces
- window placement takes windows with Desktop and Dialog types into consideration and does the appropriate thing (instead of placing them normally)
- remove 1 pixel gaps between windows when doing smart placement
- allow users to override the styles rootCommand in their ~/.blackboxrc
- fix default colors used by blackbox when no style is found
- allow the Toolbar to be raised and lowered with Alt+LeftMouseButton and Alt+MiddleMouseButton, respectively
- fix maximized+shaded windows from disappearing when restarting blackbox
- each windows windowmenu can be accessed now with Mod4+RightMouseButton
- fix fullscreen support to ignore aspect ratios set by applications (specifically, this should fix movie players that are currently displaying 16:9 video on a 4:3 screen)
- fix support for _NET_MOVERESIZE_WINDOW, normally sent from pagers
- fix focus problems caused by applications that try to fake fullscreen by setting focus to an override-redirect window (e.g. rdekstop)
<<lessIf you have a C++ compiler and the X Window System you can compile and use it.
Enhancements:
- fix compilation on OpenBSD and Mac OS X
- documentation updates to data/README.menu
- fix bt::Timer to make sure it still works after daylight-savings changes
- fix horizontal text alignment by adding a small indent to all text
- fix sunken gradient rendering: the colors are no longer inverted, and the correct bevel is drawn
- add bt::XDG::BaseDir, which is an implementation of the freedesktop.org basedir-spec version 0.6
- make bt::Pen able to recover from cache faults
- silence messages from bt::PixmapCache about the cache maximum being exceeded
- add bt::Rect::inside(), which ensures that one rectangle is inside the other
- fix bt::Resource to do nothing if filename arguments are empty
- fix bt::Resource::merge() to stop overriding existing entries (it should only add new ones)
- add bt::Texture::textureResource() overload that returns a default texture if the resource cannot be found
- add bt::dirname(), which returns the directory part of a file path
- add bt::mkdirhier(), which is equivalent to mkdir -m mode -p path
- add bt::tolower(), which returns a string with all characters lowercase
- add the "Center Placement" window placement policy, which places all new windows in the center of the screen
- add "Shade Window with Mouse Wheel" and "Toolbar Actions with Mouse Wheel" configuration options
- add window-to-window snapping support. This feature is off by default, you need to set session.windowSnapThreshold to a positive number in your ~/.blackboxrc.
- add support for piped menus. The output of a command can be used to create the blackbox menu. This is done by prepending the pipe character, |, to session.menuFile in ~/.blackboxrc or to [include] filenames.
- [nop] menu entries are now drawn disabled
- fix "Focus Last Window on Workspace" behavior to stop preferring windows that occupy all workspaces
- window placement takes windows with Desktop and Dialog types into consideration and does the appropriate thing (instead of placing them normally)
- remove 1 pixel gaps between windows when doing smart placement
- allow users to override the styles rootCommand in their ~/.blackboxrc
- fix default colors used by blackbox when no style is found
- allow the Toolbar to be raised and lowered with Alt+LeftMouseButton and Alt+MiddleMouseButton, respectively
- fix maximized+shaded windows from disappearing when restarting blackbox
- each windows windowmenu can be accessed now with Mod4+RightMouseButton
- fix fullscreen support to ignore aspect ratios set by applications (specifically, this should fix movie players that are currently displaying 16:9 video on a 4:3 screen)
- fix support for _NET_MOVERESIZE_WINDOW, normally sent from pagers
- fix focus problems caused by applications that try to fake fullscreen by setting focus to an override-redirect window (e.g. rdekstop)
Download (0.63MB)
Added: 2005-11-03 License: GPL (GNU General Public License) Price:
1456 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 stop dog barking behavior 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