paranoia 1.0
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3010
Anti-Paranoia 1.0
Anti-Paranoia is an extension which takes all your doubts and gives you confidence. more>>
Anti-Paranoia is an extension which takes all your doubts and gives you confidence.
Especially if you are working on security, you might get the feeling that your part of something really big and maybe even evil.
How can your extension help me? It will pop up calmative messages for you to feel relaxed while browsing the web.
No, this extension will not spy and destroy your personal data, remember: Everything is good!
<<lessEspecially if you are working on security, you might get the feeling that your part of something really big and maybe even evil.
How can your extension help me? It will pop up calmative messages for you to feel relaxed while browsing the web.
No, this extension will not spy and destroy your personal data, remember: Everything is good!
Download (0.048MB)
Added: 2007-04-05 License: MPL (Mozilla Public License) Price:
938 downloads
Pharago 1.0
Pharago provides a nice Gnome (GTK+) theme. more>>
Pharago provides a nice Gnome (GTK+) theme.
Pharago is a mix of Gonxical for the style and Gnursid for the colours.
There is an alternative menubar for blended window manager themes :
Copy menubar-4blending.png to menubar.png to setup the new menubar
(copy menubar-default.png to menubar.png to get the default one back)
Clearlooks is an engine and it is easy to configure it to have different colour variations I suppose. Pharago is based on Gonxical just like Clarity is (pixmap themes) and it takes more time to change the colours because many pixmaps need to be redesigned !
<<lessPharago is a mix of Gonxical for the style and Gnursid for the colours.
There is an alternative menubar for blended window manager themes :
Copy menubar-4blending.png to menubar.png to setup the new menubar
(copy menubar-default.png to menubar.png to get the default one back)
Clearlooks is an engine and it is easy to configure it to have different colour variations I suppose. Pharago is based on Gonxical just like Clarity is (pixmap themes) and it takes more time to change the colours because many pixmaps need to be redesigned !
Download (0.026MB)
Added: 2007-01-26 License: GPL (GNU General Public License) Price:
1006 downloads
Alan 1.0
Alan project is a Turing machine implementation. more>>
Alan project is a Turing machine implementation.
Alan is an implementation of a Turing machine for educational purposes.
It was created as a programing project at the University of Aplied Sciences Rosenheim.
Features include an easy-to-use GUI and a reusable Turing Machine component. Additionally, Alan contains many example programs for the Turing machine.
<<lessAlan is an implementation of a Turing machine for educational purposes.
It was created as a programing project at the University of Aplied Sciences Rosenheim.
Features include an easy-to-use GUI and a reusable Turing Machine component. Additionally, Alan contains many example programs for the Turing machine.
Download (0.37MB)
Added: 2006-10-25 License: GPL (GNU General Public License) Price:
1095 downloads
LWPx::ParanoidAgent 1.03
LWPx::ParanoidAgent is a Perl subclass of LWP::UserAgent that protects you from harm. more>>
LWPx::ParanoidAgent is a Perl subclass of LWP::UserAgent that protects you from harm.
SYNOPSIS
require LWPx::ParanoidAgent;
my $ua = LWPx::ParanoidAgent->new;
# this is 10 seconds overall, from start to finish. not just between
# socket reads. and it includes all redirects. so attackers telling
# you to download from a malicious tarpit webserver can only stall
# you for $n seconds
$ua->timeout(10);
# setup extra block lists, in addition to the always-enforced blocking
# of private IP addresses, loopbacks, and multicast addresses
$ua->blocked_hosts(
"foo.com",
qr/.internal.company.com$/i,
sub { my $host = shift; return 1 if is_bad($host); },
);
$ua->whitelisted_hosts(
"brad.lj",
qr/^192.168.64.3?/,
sub { ... },
);
# get/set the DNS resolver object thats used
my $resolver = $ua->resolver;
$ua->resolver(Net::DNS::Resolver->new(...));
# and then just like a normal LWP::UserAgent, because it is one.
my $response = $ua->get(http://search.cpan.org/);
...
if ($response->is_success) {
print $response->content; # or whatever
}
else {
die $response->status_line;
}
The LWPx::ParanoidAgent is a class subclassing LWP::UserAgent, but paranoid against attackers. Its to be used when youre fetching a remote resource on behalf of a possibly malicious user.
This class can do whatever LWP::UserAgent can (callbacks, uploads from files, etc), except proxy support is explicitly removed, because in that case you should do your paranoia at your proxy.
Also, the schemes are limited to http and https, which are mapped to LWPx::Protocol::http_paranoid and LWPx::Protocol::https_paranoid, respectively, which are forked versions of the same ones without the "_paranoid". Subclassing them didnt look possible, as they were essentially just one huge function.
This class protects you from connecting to internal IP ranges (unless you whitelist them), hostnames/IPs that you blacklist, remote webserver tarpitting your process (the timeout parameter is changed to be a global timeout over the entire process), and all combinations of redirects and DNS tricks to otherwise tarpit and/or connect to internal resources.
<<lessSYNOPSIS
require LWPx::ParanoidAgent;
my $ua = LWPx::ParanoidAgent->new;
# this is 10 seconds overall, from start to finish. not just between
# socket reads. and it includes all redirects. so attackers telling
# you to download from a malicious tarpit webserver can only stall
# you for $n seconds
$ua->timeout(10);
# setup extra block lists, in addition to the always-enforced blocking
# of private IP addresses, loopbacks, and multicast addresses
$ua->blocked_hosts(
"foo.com",
qr/.internal.company.com$/i,
sub { my $host = shift; return 1 if is_bad($host); },
);
$ua->whitelisted_hosts(
"brad.lj",
qr/^192.168.64.3?/,
sub { ... },
);
# get/set the DNS resolver object thats used
my $resolver = $ua->resolver;
$ua->resolver(Net::DNS::Resolver->new(...));
# and then just like a normal LWP::UserAgent, because it is one.
my $response = $ua->get(http://search.cpan.org/);
...
if ($response->is_success) {
print $response->content; # or whatever
}
else {
die $response->status_line;
}
The LWPx::ParanoidAgent is a class subclassing LWP::UserAgent, but paranoid against attackers. Its to be used when youre fetching a remote resource on behalf of a possibly malicious user.
This class can do whatever LWP::UserAgent can (callbacks, uploads from files, etc), except proxy support is explicitly removed, because in that case you should do your paranoia at your proxy.
Also, the schemes are limited to http and https, which are mapped to LWPx::Protocol::http_paranoid and LWPx::Protocol::https_paranoid, respectively, which are forked versions of the same ones without the "_paranoid". Subclassing them didnt look possible, as they were essentially just one huge function.
This class protects you from connecting to internal IP ranges (unless you whitelist them), hostnames/IPs that you blacklist, remote webserver tarpitting your process (the timeout parameter is changed to be a global timeout over the entire process), and all combinations of redirects and DNS tricks to otherwise tarpit and/or connect to internal resources.
Download (0.013MB)
Added: 2007-03-21 License: Perl Artistic License Price:
947 downloads
PostArabic 1.0.1
PostArabic project is used to provide Arabic shaping for the map display in DCMMS. more>>
PostArabic project is used to provide Arabic shaping for the map display in DCMMS.
The PostArabic package provides Arabic shaping functionality for PostgreSQL. PostArabic is available from http://dcmms.sourceforge.net.
The package adds the following functions to PostgreSQL:
text shape_arabic(text)
text unshape_arabic(text)
text str_reverse(text)
Enhancements:
- This release adds the bidi_reorder() function that provides better results than str_reorder() for numbers embedded in Arabic text.
- In addition, it fixes a build problem on Linux where libarabic.dll was referenced in arabic.sql instead of arabic.so.
<<lessThe PostArabic package provides Arabic shaping functionality for PostgreSQL. PostArabic is available from http://dcmms.sourceforge.net.
The package adds the following functions to PostgreSQL:
text shape_arabic(text)
text unshape_arabic(text)
text str_reverse(text)
Enhancements:
- This release adds the bidi_reorder() function that provides better results than str_reorder() for numbers embedded in Arabic text.
- In addition, it fixes a build problem on Linux where libarabic.dll was referenced in arabic.sql instead of arabic.so.
Download (0.031MB)
Added: 2006-08-15 License: LGPL (GNU Lesser General Public License) Price:
1166 downloads
amarokVis 1.0
amarokVis is a KDE applet for libvisual using opengl. more>>
amarokVis is a KDE applet for libvisual using opengl.
Orginally written to work with amaroks libvisual socket however due to some limitations I just made the input default to alsa.
So any app piping sound through alsa will make the visuals dance. I was going to change the name but meh, not a big deal.
Usage:
Just add it to a panel and watch the fun. If you click the visualization itll bring up a popup box to select from available plugins.
Pretty simple and straightforward.
Beware though some plugins(actors) tend to be buggy and are likely to crash your kicker.
If that happens just restart your kicker and choose another plugin that doesnt.
<<lessOrginally written to work with amaroks libvisual socket however due to some limitations I just made the input default to alsa.
So any app piping sound through alsa will make the visuals dance. I was going to change the name but meh, not a big deal.
Usage:
Just add it to a panel and watch the fun. If you click the visualization itll bring up a popup box to select from available plugins.
Pretty simple and straightforward.
Beware though some plugins(actors) tend to be buggy and are likely to crash your kicker.
If that happens just restart your kicker and choose another plugin that doesnt.
Download (0.62MB)
Added: 2007-03-09 License: GPL (GNU General Public License) Price:
960 downloads
Download (13MB)
Added: 2007-02-08 License: LGPL (GNU Lesser General Public License) Price:
992 downloads
BlankOn 1.0
BlankOn is a Gnome icon theme and are the default icon theme for BlankOn Linux. more>>
BlankOn is a Gnome icon theme and they are the default icon theme for BlankOn Linux.
<<less Download (0.61MB)
Added: 2005-11-17 License: GPL (GNU General Public License) Price:
1441 downloads
SnowIsh 1.0
SnowIsh provides a Mac-inspired icon theme. more>>
SnowIsh provides a Mac-inspired icon theme.
Also greatly inspired by VannillA Cream Icon Set made by djnjpendragon.
Again, all done with inkscape.
Version restrictions:
- Beautiful icons, but the gtk-media-previous-ltr icon is missing from both the PNG and SVG sets (it should be a copy of gtk-media-next-rtl). Also, the Trash icon doesnt show up at large sizes - the fallback is used instead.
Enhancements:
- Add a PNG version (faster)
<<lessAlso greatly inspired by VannillA Cream Icon Set made by djnjpendragon.
Again, all done with inkscape.
Version restrictions:
- Beautiful icons, but the gtk-media-previous-ltr icon is missing from both the PNG and SVG sets (it should be a copy of gtk-media-next-rtl). Also, the Trash icon doesnt show up at large sizes - the fallback is used instead.
Enhancements:
- Add a PNG version (faster)
Download (MB)
Added: 2007-03-02 License: GPL (GNU General Public License) Price:
969 downloads
Clearbox 1.0
Clearbox is a customizable theme for the Metacity Window Manager. more>>
Clearbox is a customizable theme for the Metacity Window Manager.
A small GTK application allow configure the differents theme aspects, preview the theme and save it in the user themes folder.
The options that can be configured in the Clearbox theme are the following ones:
- Topbar style
- Clearbox-out, Clearbox-in or flat
- Gradient intensity (3 levels)
- Frame style
- Square corners or rounded corners
- Border width
- Colorized borders
- Interior outline
- 3D effect borders
- Title position
- Left or center
- Text with shadow
- Controls style
- Simple, with dark frame or with clear frame
- Buttons size
- Buttons gap
- Button menu style
- Arrow or application icon
- Theme colors
- GTK theme colors or custom colors
<<lessA small GTK application allow configure the differents theme aspects, preview the theme and save it in the user themes folder.
The options that can be configured in the Clearbox theme are the following ones:
- Topbar style
- Clearbox-out, Clearbox-in or flat
- Gradient intensity (3 levels)
- Frame style
- Square corners or rounded corners
- Border width
- Colorized borders
- Interior outline
- 3D effect borders
- Title position
- Left or center
- Text with shadow
- Controls style
- Simple, with dark frame or with clear frame
- Buttons size
- Buttons gap
- Button menu style
- Arrow or application icon
- Theme colors
- GTK theme colors or custom colors
Download (0.60MB)
Added: 2005-08-14 License: GPL (GNU General Public License) Price:
1531 downloads
Dataxi 1.0.1
Dataxi project is a collection of tools for developing form-based information systems. more>>
Dataxi project is a collection of tools for developing form-based information systems. Dataxi enables one to quickly build an application based on forms with which the user can access the underlying database in order to query, read, edit and write. Dataxi is the link between the user interface and the database.
Dataxi is an OS and enviroment independent product. It follows HTML and SQL standards to such extend that interoperability with all browsers and database backends should be supported.
Dataxi runs on all major operating systems as is or only with minor changes in ini -files.
The purpose of Dataxi is to take the pain away from the most boring phase in the data access application development: user interface designing and programming. Ones you have defined the layout of the form and location for columns, you are done, unless you prefer setting data validation and output format features and other niceties.
A database is a structured collection of data. It may be anything from a simple shopping list to a picture gallery or the vast amounts of information in a corporate network. To add, access, and process data stored in a computer database, you need a database management system such as MySQL. Since computers are very good at handling large amounts of data, database management plays a central role in computing, as stand-alone utilities, or as parts of other applications.
Enhancements:
- This version works with both PHP 4 and 5.
<<lessDataxi is an OS and enviroment independent product. It follows HTML and SQL standards to such extend that interoperability with all browsers and database backends should be supported.
Dataxi runs on all major operating systems as is or only with minor changes in ini -files.
The purpose of Dataxi is to take the pain away from the most boring phase in the data access application development: user interface designing and programming. Ones you have defined the layout of the form and location for columns, you are done, unless you prefer setting data validation and output format features and other niceties.
A database is a structured collection of data. It may be anything from a simple shopping list to a picture gallery or the vast amounts of information in a corporate network. To add, access, and process data stored in a computer database, you need a database management system such as MySQL. Since computers are very good at handling large amounts of data, database management plays a central role in computing, as stand-alone utilities, or as parts of other applications.
Enhancements:
- This version works with both PHP 4 and 5.
Download (1.3MB)
Added: 2007-04-17 License: GPL (GNU General Public License) Price:
920 downloads
podLoadr 1.0
podLoader allows you to load content from the Web or other desktop files onto your iPod. more>>
podLoader allows you to load content from the Web or other desktop files onto your iPod. Later, for example while traveling, you can check out news from any RSS feed, the weather, or the contents of any file from your desktop.
This application uses the "Notes" feature on third-generation or later touch wheel iPods.
Usage:
In Brief:
- Run podLoadr by double-clicking on podloadr.jar after installing the JRE (or run java -jar podloadr.jar from a command prompt)
- Drag & drop files or links onto the "Files & Links" tab. Browsing or manually typing the file name also works.
- Check some news feeds, add weather zip codes and create a notes on their respective tabs.
- Click the run button (ensure that the iPod is connected and enabled in disk mode).
In Detail:
- In order to load a web page or news feed simply do the following:
- Ensure that your iPod is enabled for disk use. To do this in iTunes:
- Select your iPod under Devices in the Source list.
- Click the Summary tab.
- In the Options section of the Summary pane, click the "Enable disk use" checkbox.
- Note that if the "Manually manage songs and playlists" option is enabled, "Enable disk use" is always enabled or turned on.
- Connect your iPod to your computer as you usually do.
- Exit iTunes - just to be safe.
- Ensure that you have a recent version of the Java runtime (either JDK or JRE) from Sun.
- Run podLoadr by double clicking on podLoadr.jar. Alternatively you can open a command prompt and type java -jar podLoadr.jar
- Note that podLoadr.jar itself can be stored on the ipod and run directly from there. Keep podLoadr.jar and podLoadr.ini together.
- Populate the various tabs in podLoadr.
- Add your custom items to the "Files & Links" tab. This can be done in any of the following ways.
- Drag a file from your desktop or Explorer onto the list
- Drag a link from Internet Explorer or Firefox onto the list (by grabbing the icon in the address box)
- Type the full name of a file in the Name box and click on add
- Click on "Add/Browse" and navigate to the file you need and add it to the list.
- Check off the news feeds that you want from the categorized list.
- Enter the ZIP codes of the weather you want separated by commas.
- Double check the ipod tab to ensure that the drive letter is correct. Or if you have multiple iPods then you can change this setting. (If thats too confusing feel free to send the other iPod my way :-)
To view the note, disconnect your iPod, scroll the menu to Extras, and select Notes. Choose the name the file you created and press the Center button to display the content of the file. You can.t edit the file using iPod, but you can delete it or update it whenever your iPod is connected to your computer.
podLoader uses the "Notes" feature of the iPod to support downloading and offline viewing of online content. Such presentations can be used, for example, as directed lessons or self-paced electronic guided tours. Notes is available on iPod models beginning with third-generation iPod (dock connector) models with the touch wheel.
<<lessThis application uses the "Notes" feature on third-generation or later touch wheel iPods.
Usage:
In Brief:
- Run podLoadr by double-clicking on podloadr.jar after installing the JRE (or run java -jar podloadr.jar from a command prompt)
- Drag & drop files or links onto the "Files & Links" tab. Browsing or manually typing the file name also works.
- Check some news feeds, add weather zip codes and create a notes on their respective tabs.
- Click the run button (ensure that the iPod is connected and enabled in disk mode).
In Detail:
- In order to load a web page or news feed simply do the following:
- Ensure that your iPod is enabled for disk use. To do this in iTunes:
- Select your iPod under Devices in the Source list.
- Click the Summary tab.
- In the Options section of the Summary pane, click the "Enable disk use" checkbox.
- Note that if the "Manually manage songs and playlists" option is enabled, "Enable disk use" is always enabled or turned on.
- Connect your iPod to your computer as you usually do.
- Exit iTunes - just to be safe.
- Ensure that you have a recent version of the Java runtime (either JDK or JRE) from Sun.
- Run podLoadr by double clicking on podLoadr.jar. Alternatively you can open a command prompt and type java -jar podLoadr.jar
- Note that podLoadr.jar itself can be stored on the ipod and run directly from there. Keep podLoadr.jar and podLoadr.ini together.
- Populate the various tabs in podLoadr.
- Add your custom items to the "Files & Links" tab. This can be done in any of the following ways.
- Drag a file from your desktop or Explorer onto the list
- Drag a link from Internet Explorer or Firefox onto the list (by grabbing the icon in the address box)
- Type the full name of a file in the Name box and click on add
- Click on "Add/Browse" and navigate to the file you need and add it to the list.
- Check off the news feeds that you want from the categorized list.
- Enter the ZIP codes of the weather you want separated by commas.
- Double check the ipod tab to ensure that the drive letter is correct. Or if you have multiple iPods then you can change this setting. (If thats too confusing feel free to send the other iPod my way :-)
To view the note, disconnect your iPod, scroll the menu to Extras, and select Notes. Choose the name the file you created and press the Center button to display the content of the file. You can.t edit the file using iPod, but you can delete it or update it whenever your iPod is connected to your computer.
podLoader uses the "Notes" feature of the iPod to support downloading and offline viewing of online content. Such presentations can be used, for example, as directed lessons or self-paced electronic guided tours. Notes is available on iPod models beginning with third-generation iPod (dock connector) models with the touch wheel.
Download (2.6MB)
Added: 2007-05-01 License: Freeware Price:
961 downloads
gonxical 1.0
gonxical provides a Gnome (GTK+) theme. more>>
gonxical provides a Gnome (GTK+) theme.
This theme is based on the Gonx project.
The Gonx project is used to create the user interface of the successor of the Be OS.
<<lessThis theme is based on the Gonx project.
The Gonx project is used to create the user interface of the successor of the Be OS.
Download (0.021MB)
Added: 2007-01-26 License: GPL (GNU General Public License) Price:
1001 downloads
RFind 1.0
RFind it indexes and searches filenames in a directory hierarchy. more>>
RFind indexes the filenames of a given directory, and allows you to quickly search this index with regular expressions. Search-on-typing with more than 500,000 indexed filenames is easily possible.
RFind attempts to be very configurable so that it can be useful to everyone. It features hierarchically presented search results, search-on-typing, and the ability to define rules to execute on mouse click.
Main features:
- Hierarchical presented search results
- Search-on-typing
- Define rules to execute on mouseclick
<<lessRFind attempts to be very configurable so that it can be useful to everyone. It features hierarchically presented search results, search-on-typing, and the ability to define rules to execute on mouse click.
Main features:
- Hierarchical presented search results
- Search-on-typing
- Define rules to execute on mouseclick
Download (0.011MB)
Added: 2005-04-28 License: Public Domain Price:
1639 downloads
goban 1.0
goban replays historic games of go (wei-chi, baduk). more>>
goban replays historic games of go (aka wei-chi and baduk).
It works with xscreensaver, and Gnome.
goban is based on cgoban by Bill Schubert.
<<lessIt works with xscreensaver, and Gnome.
goban is based on cgoban by Bill Schubert.
Download (0.53MB)
Added: 2005-04-25 License: GPL (GNU General Public License) Price:
1647 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 paranoia 1.0 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