stable doors
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 686
stabilize 0.1
stabilize is a tool for stabilizing shaking movies. more>>
stabilize is a tool for stabilizing shaking movies.
Sometimes videos are recorded with a free hand, which produces shaky movies.
This program compares each frame with previous frames and tries to find out to which offset it should shift that frame to make the movie more stable.
Usage
Compile it:
$ g++ -o stabilize stabilize.cpp -Llib -lavformat -lavcodec -lz -I/usr/include/ffmpeg/
Run it:
$ ./stabilize test.avi | ffmpeg -f imagepipe -img pnm -i - -sameq output.avi
<<lessSometimes videos are recorded with a free hand, which produces shaky movies.
This program compares each frame with previous frames and tries to find out to which offset it should shift that frame to make the movie more stable.
Usage
Compile it:
$ g++ -o stabilize stabilize.cpp -Llib -lavformat -lavcodec -lz -I/usr/include/ffmpeg/
Run it:
$ ./stabilize test.avi | ffmpeg -f imagepipe -img pnm -i - -sameq output.avi
Download (8.3MB)
Added: 2006-09-04 License: GPL (GNU General Public License) Price:
1149 downloads
wine-doors 0.1
Wine doors is an application designed to assist users in obtaining, installing, uninstalling and working with wine applications. more>>
Wine-doors is an application designed to assist users in obtaining, installing, uninstalling and working around the caveats associated with wine applications.
Although wine doors is intended to be a replacement for winetools it is not limited to release cycles for the applications available to install, instead a web service will be provided, this web service will serve XML Pack Lists and Application Packs as well as various other resources.
Using a web service to connect users to applications means the service can be community managed thus splitting application installation and configuration from the user interface used to install the applications.
<<lessAlthough wine doors is intended to be a replacement for winetools it is not limited to release cycles for the applications available to install, instead a web service will be provided, this web service will serve XML Pack Lists and Application Packs as well as various other resources.
Using a web service to connect users to applications means the service can be community managed thus splitting application installation and configuration from the user interface used to install the applications.
Download (2.5MB)
Added: 2007-07-06 License: GPL (GNU General Public License) Price:
850 downloads
Secure back door 0.5
Secure Back Door (SBD) is a tool that provides ultra-secure and minimal access to a computer. more>>
Secure Back Door (SBD) is a tool that provides ultra-secure and minimal access to a computer, which allows you to run a single command based on a one time key. It is good if you dont want to have an SSH server running all the time, and only want to start it when needed. Because it has only a few lines of code, it is hoped that it will be less susceptible to security exploits than a program like SSH.
The protocol is detailed to an extent in the text file PROTOCOL, I will update it with more details as I have time, but the most important details are included already.
If you are a crypt analysis, or just like a challenge, I appreciate anyone who is willing to look through the protocol and/or code and point out possible security implications and flaws in design!
Enhancements:
- Fixed a few minor compiler warnings
- Updated license year to 2005
- Uncommented execution code in sbdd, so now sbdd will execute incoming commands
- Updated README documentation for compilation
<<lessThe protocol is detailed to an extent in the text file PROTOCOL, I will update it with more details as I have time, but the most important details are included already.
If you are a crypt analysis, or just like a challenge, I appreciate anyone who is willing to look through the protocol and/or code and point out possible security implications and flaws in design!
Enhancements:
- Fixed a few minor compiler warnings
- Updated license year to 2005
- Uncommented execution code in sbdd, so now sbdd will execute incoming commands
- Updated README documentation for compilation
Download (0.025MB)
Added: 2006-07-12 License: GPL (GNU General Public License) Price:
1200 downloads
Sanefile 1.05
Sanefile is a tool to easily and quickly clean and change a large number of filenames. more>>
Sanefile is a tool to easily and quickly clean and change a large number of filenames. The idea started when I started “ripping” my own CD’s and the filenames were all different and full of errors. When I started getting TV downloads from other sources, the issue became a problem.
I had to find an efficient way of changing a large number of filenames. Sanefile was the result. Simple, single-purpose and very efficient at it with total exploitation of Tcl’s rich Regular Expression capabilities.
What this tool is NOT: spy-ware, spam-ware, virus or any other crappy stuff.
With Sanefile, you can use the full power of regular expressions. For instance, imagine that you want to filter off all files starting with a A. To use the just A would remove from the list all the files with A in it. Not the solution. If you use ^A (Carat and A) it means that it has to match A only at the beginning of the text.
More examples:
^text matches "text" in the beginning of the name
text$ matches "text" in the END of the filename
. matches ANY character
[ ] range indicator as in:
[a-z] matches ONE letter "a" to "z"
[a-zA-Z] matches ONE letter "a" to "z" and "A" to "Z"
[0-9] matches ONE digit
[^range] (caret) matches if NOT in the range as in:
[^0-9] matches if it is NOT a digit
* operator for repetition
.* matches everything
[0-9]* multiple digits
[^a-zA-Z0-9]* a bunch of everything BUT a letter or digit
escape operator
t tab
( when you want to match (
. when you want to match .
when you want to match (RARELY DONE! Think why.)
() used to group expressions
ab* a followed with multiple bs
(ab)* multiple ab (different from above!)
^Doors.*([A-Z][0-9]*).*.mp3$ Matches all files starting with Doors, have somewhere in the middle a letter followed by digits and end in ".mp3"
<<lessI had to find an efficient way of changing a large number of filenames. Sanefile was the result. Simple, single-purpose and very efficient at it with total exploitation of Tcl’s rich Regular Expression capabilities.
What this tool is NOT: spy-ware, spam-ware, virus or any other crappy stuff.
With Sanefile, you can use the full power of regular expressions. For instance, imagine that you want to filter off all files starting with a A. To use the just A would remove from the list all the files with A in it. Not the solution. If you use ^A (Carat and A) it means that it has to match A only at the beginning of the text.
More examples:
^text matches "text" in the beginning of the name
text$ matches "text" in the END of the filename
. matches ANY character
[ ] range indicator as in:
[a-z] matches ONE letter "a" to "z"
[a-zA-Z] matches ONE letter "a" to "z" and "A" to "Z"
[0-9] matches ONE digit
[^range] (caret) matches if NOT in the range as in:
[^0-9] matches if it is NOT a digit
* operator for repetition
.* matches everything
[0-9]* multiple digits
[^a-zA-Z0-9]* a bunch of everything BUT a letter or digit
escape operator
t tab
( when you want to match (
. when you want to match .
when you want to match (RARELY DONE! Think why.)
() used to group expressions
ab* a followed with multiple bs
(ab)* multiple ab (different from above!)
^Doors.*([A-Z][0-9]*).*.mp3$ Matches all files starting with Doors, have somewhere in the middle a letter followed by digits and end in ".mp3"
Download (0.007MB)
Added: 2006-12-11 License: Artistic License Price:
1047 downloads
mOEvIEs 1.15-STABLE
mOEvIEs is a low-dependency movie database program. more>>
mOEvIEs is a low-dependency movie database program.
mOEvIEs is easy to use, and doesnt require a database server to be installed like most programs do.
<<lessmOEvIEs is easy to use, and doesnt require a database server to be installed like most programs do.
Download (0.045MB)
Added: 2006-11-18 License: GPL (GNU General Public License) Price:
1071 downloads
Althea 0.5.7
Althea IMAP (Internet Message Access Protocol) e-mail client for X Windows. more>>
Althea IMAP (Internet Message Access Protocol) e-mail client for X Windows. The design goal was a stable e-mail client with the richness of usability of Microsofts Outlook, Qualcomms Eudora, and Cyrusofts Mulberry.
Installation:
Type the following commands:
# unzip and untar althea-x.x.x.tgz
tar xvzf althea-x.x.x.tgz
# make and install the program
make
make install
<<lessInstallation:
Type the following commands:
# unzip and untar althea-x.x.x.tgz
tar xvzf althea-x.x.x.tgz
# make and install the program
make
make install
Download (0.35MB)
Added: 2006-05-17 License: GPL (GNU General Public License) Price:
1257 downloads
snake5 1.1.0
Snake is an experimental algorithm for exchanging information in a dynamic growing network. more>>
Snake is an experimental algorithm for exchanging information in a dynamic growing network, where a sender and receiver must stay synchronized despite the changing distance. snake5 is a communication algorithm for exchanging information between nodes in a dynamic changing network
Settings:
- Update speed and frequency
- Listen to a node in the signal mode
- Sliders changing appearance in the topology mode
- Stretch folding animation (YES/NO)
- Draw lines between the nodes (YES/NO)
- Makes the nodes twiddle (visualize data in a node)
Press t to switch to the signal mode. You see the wavelet table over time from octave 0 (top) to octave 11 (bottom). The red signal indicates the current folding-distance (odist).
Wait until the signals in all the different octaves (vertical) become stable and repetitive. At that point the system has learned the pattern.
Now increase the distance of sender and receiver using folding (+ and -). The signal stays stable, despite the increased distance (*). If the signal quality should degrade then decrease the distance again by folding or wait until the system stabilizes itself.
<<lessSettings:
- Update speed and frequency
- Listen to a node in the signal mode
- Sliders changing appearance in the topology mode
- Stretch folding animation (YES/NO)
- Draw lines between the nodes (YES/NO)
- Makes the nodes twiddle (visualize data in a node)
Press t to switch to the signal mode. You see the wavelet table over time from octave 0 (top) to octave 11 (bottom). The red signal indicates the current folding-distance (odist).
Wait until the signals in all the different octaves (vertical) become stable and repetitive. At that point the system has learned the pattern.
Now increase the distance of sender and receiver using folding (+ and -). The signal stays stable, despite the increased distance (*). If the signal quality should degrade then decrease the distance again by folding or wait until the system stabilizes itself.
Download (1.1MB)
Added: 2006-01-05 License: GPL (GNU General Public License) Price:
1387 downloads
Untangle Gateway Platform 5.0.1
Untangle Gateway Platform is a Linux-based network gateway with pluggable modules for network applications. more>>
Untangle Gateway Platform is a Linux-based network gateway with pluggable modules for network applications like spam blocking, Web filtering, anti-virus, anti-spyware, intrusion prevention, VPN, SSL VPN, firewall, and more.
Enhancements:
- Bugfixes from 5.0.0-beta; this release is stable.
<<lessEnhancements:
- Bugfixes from 5.0.0-beta; this release is stable.
Download (MB)
Added: 2007-08-04 License: GPL (GNU General Public License) Price:
517 downloads
DoceboLMS 3.0.6
DodeboLMS (previously Spaghettilearning) is an e-learning platform for distance learning. more>>
DodeboLMS (previously "Spaghettilearning") is an e-learning platform for distance learning. DoceboLMS project supports SCORM 1.2, the e-learning international standard.
You can manage different learning models, from collaborative learning to self learning.
Enhancements:
- This version fix several bugs.
- Now the 3.0.x family is really stable and works with PHP 4, PHP 5, and MySQL 3.2.x, 4, and 5.
<<lessYou can manage different learning models, from collaborative learning to self learning.
Enhancements:
- This version fix several bugs.
- Now the 3.0.x family is really stable and works with PHP 4, PHP 5, and MySQL 3.2.x, 4, and 5.
Download (MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
872 downloads
XBlockOut 1.1.5
XBlockOut is an excellent 3D game of Tetris/Block Dropping. more>>
XBlockOut is an excellent 3D game of Tetris/Block Dropping. It has nice graphics, offers great information support and it is very stable.
The player must place 3D pieces by translations and rotations in order to fill the game floor. The game is realtime and the speed increases with the player skill.
Whats XBL doesnt have yet:
Obstacles, goals, ...
Multi-player game.
Really fun sounds.
Every one can contribute to this game.
Enhancements:
- This release adds a missing shape.
<<lessThe player must place 3D pieces by translations and rotations in order to fill the game floor. The game is realtime and the speed increases with the player skill.
Whats XBL doesnt have yet:
Obstacles, goals, ...
Multi-player game.
Really fun sounds.
Every one can contribute to this game.
Enhancements:
- This release adds a missing shape.
Download (0.13MB)
Added: 2007-01-29 License: GPL (GNU General Public License) Price:
998 downloads
HardWall Firewall 15 Stable-7
HardWall Firewall is an iptables firewall script that provides port forwarding, packet filtering, stateful packet inspection. more>>
HardWall Firewall is an iptables firewall script that provides port forwarding, packet filtering, stateful packet inspection, port redirection, masquerading, SNAT, DNAT, NAT, and bridging.
HardWall Firewall functions as both a workstation firewall and an IP forwarding firewall.
Enhancements:
- Updated: The Reserved IP Address list in the main config file
- Added: Example Bridge (rc) startup script in the contrib directory
<<lessHardWall Firewall functions as both a workstation firewall and an IP forwarding firewall.
Enhancements:
- Updated: The Reserved IP Address list in the main config file
- Added: Example Bridge (rc) startup script in the contrib directory
Download (0.033MB)
Added: 2007-04-01 License: GPL (GNU General Public License) Price:
939 downloads
KDE 4.2.88 Beta / 4.2.3 Stable
The K Desktop Environment, for UNIX/Linux based systems more>>
KDE 4.2.88 Beta / 4.2.3 Stable brings you a powerful graphical desktop environment which is useful for Unix workstations. It combines ease of use, contemporary functionality and outstanding graphical design with the technological superiority of the Unix operating system. It is an Internet project and truly open in every sense.
Development takes place on the Internet and is discussed on the mailing lists and USENET news groups to which we invite and welcome everyone. No single group, company or organization controls the sources. All sources are open to everyone and may be distributed and modified by anyone subject to the well known GNU licenses.
<<less Download (0KB)
Added: 2005-09-21 License: GPL Price: FREE
11 downloads
Intellidiscs 1.1
Intellidiscs is a Remake of Tron: Deadly Discs for the classic Intellivision console. more>>
Intellidiscs is a Remake of Tron: Deadly Discs for the classic Intellivision console. Its also one of the few, if not the first, Tron freeware games that has nothing to do with light-cycles.
Basically, you run around in an arena fighting off bad guys with your disc. There are four different varieties of bad guy, and one of them has three different varieties of disc. More difficult enemies appear as your score increases, with the most difficult showing up if you can reach 1,000,000 points.
Bad guys enter through doors on the sides of the arena. You can jam these doors open by either hitting them with your disc, or by running into them. If you jam open doors that are opposite each other, you can run in one side and come out the other. This is very important to your survival.
If you jam enough doors, eventually a recognizer will be dispatched to fix them. If you can hit the recognizer when its eye is open, it will stop fixing the doors and leave the arena. Plus, you get lots of points for this.
You can take three hits before you die, and every hit makes you slower! You will eventually recover from damage, regaining your speed as well. Touching the recognizer kills you instantly, so dont do it.
Default controls are the familiar WASD to move, and the outer keys of numpad (1, 2, 3, 4, 6, 7, 8, 9, non-Mac users turn Num Lock on!) throw your disc in any of eight directions. If you press one of the throw keys while your disc is in flight, it will return to you. Discs are harmless when returning. If you move away from your disc as it is flying back, it will never catch up to you, you must stop and catch it. All of the controls can be changed from the main menu.
<<lessBasically, you run around in an arena fighting off bad guys with your disc. There are four different varieties of bad guy, and one of them has three different varieties of disc. More difficult enemies appear as your score increases, with the most difficult showing up if you can reach 1,000,000 points.
Bad guys enter through doors on the sides of the arena. You can jam these doors open by either hitting them with your disc, or by running into them. If you jam open doors that are opposite each other, you can run in one side and come out the other. This is very important to your survival.
If you jam enough doors, eventually a recognizer will be dispatched to fix them. If you can hit the recognizer when its eye is open, it will stop fixing the doors and leave the arena. Plus, you get lots of points for this.
You can take three hits before you die, and every hit makes you slower! You will eventually recover from damage, regaining your speed as well. Touching the recognizer kills you instantly, so dont do it.
Default controls are the familiar WASD to move, and the outer keys of numpad (1, 2, 3, 4, 6, 7, 8, 9, non-Mac users turn Num Lock on!) throw your disc in any of eight directions. If you press one of the throw keys while your disc is in flight, it will return to you. Discs are harmless when returning. If you move away from your disc as it is flying back, it will never catch up to you, you must stop and catch it. All of the controls can be changed from the main menu.
Download (2.8MB)
Added: 2007-05-01 License: Freeware Price:
908 downloads
NowListening 1.0
NowListening is just a simple NowListening script for Kopete. more>>
NowListening is just a simple NowListening script for Kopete.
Usage:
Simply run the script. First time it will ask you for a default name, pic and how do you want to show your name while playing. In case you have Kopete closed it will open it up for you.
HOWTO for display name:
%artist: for showing current artist.
%album: for showing current album.
%title: for showing current title.
%track: for showing current track number.
%genre: for showing current genre listening.
For example: "Alex (%artist - %track because %genre rules!)" will show
Alex (the Doors - Peace Frog because Rock rules!)
<<lessUsage:
Simply run the script. First time it will ask you for a default name, pic and how do you want to show your name while playing. In case you have Kopete closed it will open it up for you.
HOWTO for display name:
%artist: for showing current artist.
%album: for showing current album.
%title: for showing current title.
%track: for showing current track number.
%genre: for showing current genre listening.
For example: "Alex (%artist - %track because %genre rules!)" will show
Alex (the Doors - Peace Frog because Rock rules!)
Download (0.008MB)
Added: 2006-09-04 License: GPL (GNU General Public License) Price:
1145 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
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 stable doors 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