band saw
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 130
Band Saw 0.3.0
Band Saw is a syslog monitoring program for the GNOME desktop. more>>
Band Saw is a syslog monitoring program for the GNOME desktop. Band Saw project allows the user to setup filters that define which messages should generate alerts.
Combined with syslogs remote logging functionality it provides a scalable and easily deployed monitoring solution.
How does it work?
Band Saw is really quite simple; it monitors messages that are fed to it from a suitably configured syslog server, looking out for messages that contain text that the administrator is interested in. Any log message that matches the administrators filters will be brought to the users attention via a dialog box that pops up on screen.
Because syslog itself supports propagating messages between seperate computers, with syslog and Band Saw you can easily monitor a large number of computers for critical errors.
<<lessCombined with syslogs remote logging functionality it provides a scalable and easily deployed monitoring solution.
How does it work?
Band Saw is really quite simple; it monitors messages that are fed to it from a suitably configured syslog server, looking out for messages that contain text that the administrator is interested in. Any log message that matches the administrators filters will be brought to the users attention via a dialog box that pops up on screen.
Because syslog itself supports propagating messages between seperate computers, with syslog and Band Saw you can easily monitor a large number of computers for critical errors.
Download (0.18MB)
Added: 2006-03-09 License: GPL (GNU General Public License) Price:
1325 downloads
libband 0.01
LibBand is a simple library wrapper which is useful if you want to limit the bandwidth used by a program. more>>
LibBand is a simple library wrapper written in assembly and C (but I plan to rewrite everything in C) useful if you want to limit the bandwidth used by a program.
It simply overrides some libc functions, using the LD_PRELOAD environment variable, and puts some pauses in the program to clamp the bandwidth at the specified value, for both upload and download operations.
You just have to set UPLOAD_BAND and DOWNLOAD_BAND and run your program, for example:
export LD_PRELOAD=/replace-with-the-path/to/libband.so
export UPLOAD_BAND=1024
export DOWNLOAD_BAND=8192
ftp somewhere.com
The bandwidth must be expressed in bytes/s, and so in the above example, we want the upload band clamped at 1.0 kb/s, the download band at 8.0 kb/s.
Theres a small utility in the scripts/ directory, called lb: you can use it to set everything and start your program from a nice whiptail/dialog environment.
You need NASM to build the binary (but dont worry, a pre-assembled version is included in the package).
Just type "make" to compile, and "make install" to install the library.
Remember that $HOME/lib is the default installation directory, so you usually have to export LD_PRELOAD by using:
export LD_PRELOAD=$HOME/lib/libband.so
The "lb" script is configured to work with this path, but you may change it by editing the script itself (search for the LIBPATH variable).
Please note that at the moment libBand DOESNT WORK with multithreaded and _graphic_ applications.
Enhancements:
- We keep track of sockets by wrapping socket(), accept() and close(). The old fstat() mechanism has been obsoleted.
<<lessIt simply overrides some libc functions, using the LD_PRELOAD environment variable, and puts some pauses in the program to clamp the bandwidth at the specified value, for both upload and download operations.
You just have to set UPLOAD_BAND and DOWNLOAD_BAND and run your program, for example:
export LD_PRELOAD=/replace-with-the-path/to/libband.so
export UPLOAD_BAND=1024
export DOWNLOAD_BAND=8192
ftp somewhere.com
The bandwidth must be expressed in bytes/s, and so in the above example, we want the upload band clamped at 1.0 kb/s, the download band at 8.0 kb/s.
Theres a small utility in the scripts/ directory, called lb: you can use it to set everything and start your program from a nice whiptail/dialog environment.
You need NASM to build the binary (but dont worry, a pre-assembled version is included in the package).
Just type "make" to compile, and "make install" to install the library.
Remember that $HOME/lib is the default installation directory, so you usually have to export LD_PRELOAD by using:
export LD_PRELOAD=$HOME/lib/libband.so
The "lb" script is configured to work with this path, but you may change it by editing the script itself (search for the LIBPATH variable).
Please note that at the moment libBand DOESNT WORK with multithreaded and _graphic_ applications.
Enhancements:
- We keep track of sockets by wrapping socket(), accept() and close(). The old fstat() mechanism has been obsoleted.
Download (0.022MB)
Added: 2005-09-14 License: GPL (GNU General Public License) Price:
1502 downloads
Fruit Land 1.13
Fruit Land is a nice and simple puzzle game. more>>
Fruit Land is the first PC-game that has been produced by MesSoft and you can get it for free! The game was programmed in C using DJGPP, RHIDE and Allegro. The first version of the game appeared in 1998 on the MSX, an old 8-bit home-computer and was fully coded in assembly language.
The graphics were done by Patrick Smeets and Jorrith Schaap composed the music. The game was published by STUFF, a group that produces the diskmagazine FutureDisk, which means at least 250 people have the game.
The PC-version of Fruit Land is not a straight conversion of the MSX-version, only the graphics and the level-data were ripped out of it. The game totally been reprogrammed in C without looking at the original Z80 Assembly source (which wasnt possible because I lost the source of the game) and it only took me less than 2 weeks to complete the game.
The only things that are missing in the PC-version are the musics and the sound-effects. Maybe Ill release a second version if someones kind enough to send me some midi-songs and samples...
Some technical information about the game. The game uses MODE-X with a resolution of 256*224. Thats pretty weird (at least for PC), but since the first version of game was done on an MSX (which has a resolution of 256*212) this was the easiest way to do it. Offcourse I could scale all images, but then the images become very ugly.
Anyway, I was very happy when I saw that resolution in the Allegro-documention because it made things easier for me. The graphics were ripped from the MSX-version, the only tricky thing about it was that I had to hack the game to get the right palette (I lost the original source code...).
<<lessThe graphics were done by Patrick Smeets and Jorrith Schaap composed the music. The game was published by STUFF, a group that produces the diskmagazine FutureDisk, which means at least 250 people have the game.
The PC-version of Fruit Land is not a straight conversion of the MSX-version, only the graphics and the level-data were ripped out of it. The game totally been reprogrammed in C without looking at the original Z80 Assembly source (which wasnt possible because I lost the source of the game) and it only took me less than 2 weeks to complete the game.
The only things that are missing in the PC-version are the musics and the sound-effects. Maybe Ill release a second version if someones kind enough to send me some midi-songs and samples...
Some technical information about the game. The game uses MODE-X with a resolution of 256*224. Thats pretty weird (at least for PC), but since the first version of game was done on an MSX (which has a resolution of 256*212) this was the easiest way to do it. Offcourse I could scale all images, but then the images become very ugly.
Anyway, I was very happy when I saw that resolution in the Allegro-documention because it made things easier for me. The graphics were ripped from the MSX-version, the only tricky thing about it was that I had to hack the game to get the right palette (I lost the original source code...).
Download (0.26MB)
Added: 2005-08-11 License: GPL (GNU General Public License) Price:
1537 downloads
Vanila 0.1
Vanila is a VERY basic SuperKaramba theme. more>>
Vanila is a VERY basic SuperKaramba theme. I made it from an idea I saw on a screen shot I saw somewhere ages ago. Clicking on various bits open new themes - i.e. Click on CPU to see detailed info on your proc. Click on Net to see upload and download daily amounts.
Ink relies on a program called Ink being installed and you having a printer that Ink can talk to.
Oh yeah - the close buttons on the sub-themes dont work. I dont know how to do that but if anyone has any idea or cares to mod it so it works....
<<lessInk relies on a program called Ink being installed and you having a printer that Ink can talk to.
Oh yeah - the close buttons on the sub-themes dont work. I dont know how to do that but if anyone has any idea or cares to mod it so it works....
Download (0.002MB)
Added: 2006-07-11 License: GPL (GNU General Public License) Price:
1200 downloads
Umbra 0.11
Umbra is a simple graphical role-playing game. more>>
Umbra project is a simple graphical role-playing game.
Umbra is a simple computer role-playing game, written in Python. The world is randomly-generated for new play every time, but there is an eventual goal and storyline.
It was heavily influenced by rogue-like games, Alternate Reality, console RPGs, and the works of H.P. Lovecraft and Clark Ashton Smith.
Umbra is set after a Lovecraftian apocalypse - the ancient god Mogth has risen from ages of deathlike slumber, conquered the world, thrown down civilization, and now man huddles in primitive communities, scattered and dying out. You play a band of heroes who will attempt to free humanity!
<<lessUmbra is a simple computer role-playing game, written in Python. The world is randomly-generated for new play every time, but there is an eventual goal and storyline.
It was heavily influenced by rogue-like games, Alternate Reality, console RPGs, and the works of H.P. Lovecraft and Clark Ashton Smith.
Umbra is set after a Lovecraftian apocalypse - the ancient god Mogth has risen from ages of deathlike slumber, conquered the world, thrown down civilization, and now man huddles in primitive communities, scattered and dying out. You play a band of heroes who will attempt to free humanity!
Download (MB)
Added: 2007-01-04 License: BSD License Price:
1024 downloads
Balayer 0.1
Balayer is yet another web browser. more>>
Only HTML, text and images are rendered. It has the peculiarity to be entirely written in Python, though based on many C-written pieces.
The idea of it came because I like Operas way of browsing, but it is too buggy on Linux, so when I saw someone had written a HTML rendering widget with rather few dependencies, I decided to write my own web browser.
This has led me to write other software pieces that are needed to run balayer for the most part: python-gdkinput, python-cschtml, gladepyc. The latter was independant from Balayer at start, but finally I decided that Balayer would be a good demonstration for it; At the same time, I had to implement features in gladepyc to implement Balayer, so they both benefitted from each other.
Main features:
- Single window navigation: web pages are displayed in a notebook rather than in separate Windows.
- Clicking on a link displays the new page systematically in a new tab, and does not focus it automatically. This is to ease parallel loading of pages.
- Non-blocking loading: you can continue viewing pages while documents and images are loading.
- Bookmark manager: shows and manage separate bookmark trees for each supported bookmark format. No native bookmark format, it uses others. Planned: Opera, Lynx, Netscape.
- Should be quite fast and light (memory and disk footprint); At least it is on my host.
<<lessThe idea of it came because I like Operas way of browsing, but it is too buggy on Linux, so when I saw someone had written a HTML rendering widget with rather few dependencies, I decided to write my own web browser.
This has led me to write other software pieces that are needed to run balayer for the most part: python-gdkinput, python-cschtml, gladepyc. The latter was independant from Balayer at start, but finally I decided that Balayer would be a good demonstration for it; At the same time, I had to implement features in gladepyc to implement Balayer, so they both benefitted from each other.
Main features:
- Single window navigation: web pages are displayed in a notebook rather than in separate Windows.
- Clicking on a link displays the new page systematically in a new tab, and does not focus it automatically. This is to ease parallel loading of pages.
- Non-blocking loading: you can continue viewing pages while documents and images are loading.
- Bookmark manager: shows and manage separate bookmark trees for each supported bookmark format. No native bookmark format, it uses others. Planned: Opera, Lynx, Netscape.
- Should be quite fast and light (memory and disk footprint); At least it is on my host.
Download (0.023MB)
Added: 2007-06-27 License: GPL (GNU General Public License) Price:
849 downloads
JAMin 0.95.0
JAMin is the JACK Audio Connection Kit (JACK) Audio Mastering interface. more>>
JAMin is the JACK Audio Connection Kit (JACK) Audio Mastering interface. JAMin is an open source application designed to perform professional audio mastering of stereo input streams.
JAMin project uses LADSPA for digital signal processing (DSP).
Main features:
- Linear filters
- JACK I/O
- 30 band graphic EQ
- 1023 band hand drawn EQ with parametric controls
- Spectrum analyser
- 3 band peak compressor
- Lookahead brickwall limiter
- Multiband stereo processing
- Presets and scenes
- Loudness maximiser
<<lessJAMin project uses LADSPA for digital signal processing (DSP).
Main features:
- Linear filters
- JACK I/O
- 30 band graphic EQ
- 1023 band hand drawn EQ with parametric controls
- Spectrum analyser
- 3 band peak compressor
- Lookahead brickwall limiter
- Multiband stereo processing
- Presets and scenes
- Loudness maximiser
Download (0.98MB)
Added: 2006-02-09 License: GPL (GNU General Public License) Price:
1356 downloads
libDSP 5.0.2
libDSP is C++ class library of common digital signal processing functions. more>>
libDSP project is C++ class library of common digital signal processing functions. There is also a wrapper for the C language.
Current (vector) functions:
- Float to integer conversion with rounding
- Addition (real, complex)
- Subtraction (real, complex)
- Multiply (real, complex)
- Division (real, complex)
- 1/x (real)
- Absolute value (real)
- Square root (real)
- Zero (real, complex)
- Set (real, complex)
- Clip (real)
- Copy (real, complex)
- Convolution (real)
- Correlation (real)
- Autocorrelation (real)
- Dot product (real)
- Min and Max (real)
- Mean (real)
- Median (real)
- Negate (real)
- Normalization (real)
- Product (real)
- Reverse
- Scale to -1..1 and 0..1 (real)
- Sort (real)
- Standard deviation (real)
- Sum (real)
- Square (real)
- Integer-Float and Float-Integer conversion: 8, 12, 16, 24, 32 bits (real)
- Cartesian-Polar and Polar-Cartesian conversion
- Cross correlation (real)
- Energy (real)
- Magnitude
- Power
- Phase
- Decimation
- Interpolation
- RMS (real)
- Variance (real)
- Peak level in dB (real)
- Window functions: Bartlett, Blackman, Blackman-Harris, Cosine tapered, Exponential, Flat-top, Generic cosine, Hamming, Hanning, Kaiser, Kaiser-Bessel, Tukey, Dolph-Chebyshev
- Mix (real)
- Spatialize (real)
- Interleave/Deinterleave (real)
- Rebuffer
- Deg-Rad and Rad-Deg conversion
- FIR filter
- IIR filter
- DFT, DCT, DST
- FFT filter
- Multirate decimation/interpolation with FFT, FIR and IIR filters
- Frequency band flipping
- Hankel
<<lessCurrent (vector) functions:
- Float to integer conversion with rounding
- Addition (real, complex)
- Subtraction (real, complex)
- Multiply (real, complex)
- Division (real, complex)
- 1/x (real)
- Absolute value (real)
- Square root (real)
- Zero (real, complex)
- Set (real, complex)
- Clip (real)
- Copy (real, complex)
- Convolution (real)
- Correlation (real)
- Autocorrelation (real)
- Dot product (real)
- Min and Max (real)
- Mean (real)
- Median (real)
- Negate (real)
- Normalization (real)
- Product (real)
- Reverse
- Scale to -1..1 and 0..1 (real)
- Sort (real)
- Standard deviation (real)
- Sum (real)
- Square (real)
- Integer-Float and Float-Integer conversion: 8, 12, 16, 24, 32 bits (real)
- Cartesian-Polar and Polar-Cartesian conversion
- Cross correlation (real)
- Energy (real)
- Magnitude
- Power
- Phase
- Decimation
- Interpolation
- RMS (real)
- Variance (real)
- Peak level in dB (real)
- Window functions: Bartlett, Blackman, Blackman-Harris, Cosine tapered, Exponential, Flat-top, Generic cosine, Hamming, Hanning, Kaiser, Kaiser-Bessel, Tukey, Dolph-Chebyshev
- Mix (real)
- Spatialize (real)
- Interleave/Deinterleave (real)
- Rebuffer
- Deg-Rad and Rad-Deg conversion
- FIR filter
- IIR filter
- DFT, DCT, DST
- FFT filter
- Multirate decimation/interpolation with FFT, FIR and IIR filters
- Frequency band flipping
- Hankel
Download (0.21MB)
Added: 2006-11-08 License: GPL (GNU General Public License) Price:
1091 downloads
ManiacMarble3D 2.0.2
ManiacMarble3D is the ultimate marble game. more>>
ManiacMarble3D is the ultimate marble game.
ManiacMarble3D is a remake of a well known game concept. The player has to guide a marble from the start to a target point in a 3D environment. The tricky part of the game is the constant fight against the gravity because the marble has to be moved across small platforms in the sky.
The soundtrack was performed by "the famous band Lasch".
<<lessManiacMarble3D is a remake of a well known game concept. The player has to guide a marble from the start to a target point in a 3D environment. The tricky part of the game is the constant fight against the gravity because the marble has to be moved across small platforms in the sky.
The soundtrack was performed by "the famous band Lasch".
Download (13.9MB)
Added: 2007-08-10 License: Freeware Price:
805 downloads
AudioTT 1.4.2
AudioTT is ID3 tag editor, which is FREE to use. more>>
AudioTT is ID3 tag editor, which is FREE to use.
AudioTT supports both ID3 tags (ID3v1 and ID3v2). Editing ID3 tags by this application is very easy and saves your time, beacause it allows you to edit a heap of MP3 files at once.
This function is useful especialy for those who own a big collection of MP3s. Imagine that you have a discography of the QUEEN - it means hundreds of MP3 files. It would be silly to edit ID3 tag of each file separately. Therefore you may load the whole dicography to AudioTT, then write QUEEN to the Band item of ID3 tag and press Save/F12.
If you do so, AudioTT will write QUEEN as a Band to all files of your discography. In exactly the same way you may edit all the items of ID3 tag (Year, Album, Pictures, Official web site of the band/artist...).
AudioTT contains a panel, which shows the detailed information of MP3 files. It contains also another panel, which dynamicaly creates statistic for all your MP3s, which are in that moment loaded into AudioTT (Total time, Average time, Average bitrate, Average sampling rate...). If you are not interested in these information, you may simply hide the panels...
Pictures of jpeg, gif and other types represents a form of binary data similar to audio, video or text data. ID3 tag version 2 (ID3v2) has been proposed so it can contain any type of data. Therefore the new version of AudioTT is now able to handle pictures data. It means that AudioTT is now able to store any count of pictures into ID3 tag. Moreover you can specify a picture by selecting a type (Front cover, Band logotype, ...) and inserting an arbitrary comment.
This all is possible to do with a new tool - Pictures manager. It allows you also to export all images to external files (jpeg, png, gif), remove all images from MP3... This all can be done at one mose click! However, dont forget that adding too many images into ID3 tags might rapidly increase size of your MP3 files!
Main features:
- support of MP3 file format
- support of ID3v1 and ID3v2 tags
- support of 39 items of ID3 tag version 2
- full support of "Pictures", "Comments" ...
- ability to read, edit and save hundreds ID3 tags at once
- comprehensive MP3 details panel
- dynamic creation of MP3s statistic
- multilingual
- multi/cross platform
<<lessAudioTT supports both ID3 tags (ID3v1 and ID3v2). Editing ID3 tags by this application is very easy and saves your time, beacause it allows you to edit a heap of MP3 files at once.
This function is useful especialy for those who own a big collection of MP3s. Imagine that you have a discography of the QUEEN - it means hundreds of MP3 files. It would be silly to edit ID3 tag of each file separately. Therefore you may load the whole dicography to AudioTT, then write QUEEN to the Band item of ID3 tag and press Save/F12.
If you do so, AudioTT will write QUEEN as a Band to all files of your discography. In exactly the same way you may edit all the items of ID3 tag (Year, Album, Pictures, Official web site of the band/artist...).
AudioTT contains a panel, which shows the detailed information of MP3 files. It contains also another panel, which dynamicaly creates statistic for all your MP3s, which are in that moment loaded into AudioTT (Total time, Average time, Average bitrate, Average sampling rate...). If you are not interested in these information, you may simply hide the panels...
Pictures of jpeg, gif and other types represents a form of binary data similar to audio, video or text data. ID3 tag version 2 (ID3v2) has been proposed so it can contain any type of data. Therefore the new version of AudioTT is now able to handle pictures data. It means that AudioTT is now able to store any count of pictures into ID3 tag. Moreover you can specify a picture by selecting a type (Front cover, Band logotype, ...) and inserting an arbitrary comment.
This all is possible to do with a new tool - Pictures manager. It allows you also to export all images to external files (jpeg, png, gif), remove all images from MP3... This all can be done at one mose click! However, dont forget that adding too many images into ID3 tags might rapidly increase size of your MP3 files!
Main features:
- support of MP3 file format
- support of ID3v1 and ID3v2 tags
- support of 39 items of ID3 tag version 2
- full support of "Pictures", "Comments" ...
- ability to read, edit and save hundreds ID3 tags at once
- comprehensive MP3 details panel
- dynamic creation of MP3s statistic
- multilingual
- multi/cross platform
Download (0.34MB)
Added: 2006-02-27 License: Freeware Price:
1410 downloads
Alsa-Nyser 0.9
Alsa-Nyser is an Real Time Audio Analyser that displays several informations about sound. more>>
Alsa-Nyser is an Real Time Audio Analyser that displays several informations about sound. These informations are:
Signals of the chanels
Phase of sound in 1D and 2D representation
Spectrum in full band
Spectrum in 1/3 octavia displaying frequency in Stereo or Mono reducted sound
Frequency of the peak signal (2 peaks frequency in stereo mode)
Stereo Meters
For the moment, each of the specifications described can be displayed by the program in real time. But I have to work (and compare) on the reality of what is displayed (calculated) by the soft considering the theory of sound analysis. There is still work on the frequency analyser and real meters level displaying (peak and mean levels).
<<lessSignals of the chanels
Phase of sound in 1D and 2D representation
Spectrum in full band
Spectrum in 1/3 octavia displaying frequency in Stereo or Mono reducted sound
Frequency of the peak signal (2 peaks frequency in stereo mode)
Stereo Meters
For the moment, each of the specifications described can be displayed by the program in real time. But I have to work (and compare) on the reality of what is displayed (calculated) by the soft considering the theory of sound analysis. There is still work on the frequency analyser and real meters level displaying (peak and mean levels).
Download (0.057MB)
Added: 2006-08-03 License: GPL (GNU General Public License) Price:
1180 downloads
IRC to MSN gateway 0.1
This is the IRC gateway for Microsoft(tm) Messenger. more>>
This is the IRC gateway for Microsoft(tm) Messenger.
You probably wonder what this is and why I wrote this. Some more information can be found in the DESIGN document that is included in this package.
This software is written by Johannes Verelst and is licensed through the GPL license (http://www.gnu.org/licenses/gpl.html).
Note that this is pre-alpha code, it probably does a bit that you want, but dont email me bugreports or feature requests. It is under heavy development.
If this program doesnt run try to install corectly all required perl modules yourself.
The idea for this program came when I was getting annoyed by the fact that I had to use different programs for both IRC and MSN. Since I dont know of any good MSN clients that can do IRC too (on unix, ofcourse), I started thinking about the other way around: an IRC client that can do MSN.
When I saw a piece of software written by Adam Swann that allows easy connectivity to MSN with perl, I decided to write an IRC server in perl that would connect to MSN for you. This is the result.
<<lessYou probably wonder what this is and why I wrote this. Some more information can be found in the DESIGN document that is included in this package.
This software is written by Johannes Verelst and is licensed through the GPL license (http://www.gnu.org/licenses/gpl.html).
Note that this is pre-alpha code, it probably does a bit that you want, but dont email me bugreports or feature requests. It is under heavy development.
If this program doesnt run try to install corectly all required perl modules yourself.
The idea for this program came when I was getting annoyed by the fact that I had to use different programs for both IRC and MSN. Since I dont know of any good MSN clients that can do IRC too (on unix, ofcourse), I started thinking about the other way around: an IRC client that can do MSN.
When I saw a piece of software written by Adam Swann that allows easy connectivity to MSN with perl, I decided to write an IRC server in perl that would connect to MSN for you. This is the result.
Download (0.009MB)
Added: 2006-06-16 License: GPL (GNU General Public License) Price:
1229 downloads
Eengredient 0.1
Eengredient is a program that you will detect which E is save, which E is normal, and which E is dangerous. more>>
Eengredient is a program that you will detect which E is save, which E is normal, and which E is dangerous. In many products you can saw in ingredients E. You sea E110, E101, E472. This are ingredients, but not all is safe for you health.
Eengredient is a program that you will detect which E is save, which E is normal, and which E is dangerous.
<<lessEengredient is a program that you will detect which E is save, which E is normal, and which E is dangerous.
Download (0.23MB)
Added: 2007-06-18 License: GPL (GNU General Public License) Price:
858 downloads
Sitback 0.5.3p3
Sitback is actual just another tar/gzip interface. more>>
Sitback is actual just another tar/gzip interface. It evolved from a bash-script I wrote to handle automated backups on Linux fileservers.
The script worked ok, but it soon proved difficult and tiresome to make local modifications to the script to handle various problems or differences.
I began searching the web to find a suitable backup tool, and came up with some candidates. But none of them did exactly what I wanted, or they were just too big and filled with features that I did not need.
One of the things I needed was a way of reporting the result of a backup to office peoples So a printed report, readable by non-nerds was required.
In the end, I desided that a homebrew system was required and began to put this little tool together..
Tar has been, and is, one of the best archiving utilities around, at least on small and medium scale systems (which are what I work on), so I saw no reason to abandon tar.
It is known to be stable and produce error-free archives, why should I then start all over and invent another file-storage protocol ?
Sitback works like a kind of super-intelligent script. Just tell it what you want to backup and where to put it.. Sitback takes care of the rest, including finding the tools needed, which compression to use (if you want that), how to handle the archive device, etc. etc.
Sitback will take care of checking the files, verify the archive and maintain a little database, so that you very quickly can find out on which tape a certain file is located, without using the tape.
Sitback can run a single backup operation, or you can ask it to fork into the background and do automated backups (this is where the printed report is nice to have; no report.. or report says ERROR ..then call for support).
Sitback has a graphic interface based on ncurses, when you run it directly from the shell. Do not worry if you do not have ncurses. Sitback works fine without.
If you run Sitback as a daemon making scheduled backups, no interface is available, but the logfile contains all important messages.
Enhancements:
- Fixed bug with mail-sending.. Message body contained standalone linefeeds, violating the standard.
- Now using stat64 (if available) to allow for large files (larger than 2GB) in the backup.
<<lessThe script worked ok, but it soon proved difficult and tiresome to make local modifications to the script to handle various problems or differences.
I began searching the web to find a suitable backup tool, and came up with some candidates. But none of them did exactly what I wanted, or they were just too big and filled with features that I did not need.
One of the things I needed was a way of reporting the result of a backup to office peoples So a printed report, readable by non-nerds was required.
In the end, I desided that a homebrew system was required and began to put this little tool together..
Tar has been, and is, one of the best archiving utilities around, at least on small and medium scale systems (which are what I work on), so I saw no reason to abandon tar.
It is known to be stable and produce error-free archives, why should I then start all over and invent another file-storage protocol ?
Sitback works like a kind of super-intelligent script. Just tell it what you want to backup and where to put it.. Sitback takes care of the rest, including finding the tools needed, which compression to use (if you want that), how to handle the archive device, etc. etc.
Sitback will take care of checking the files, verify the archive and maintain a little database, so that you very quickly can find out on which tape a certain file is located, without using the tape.
Sitback can run a single backup operation, or you can ask it to fork into the background and do automated backups (this is where the printed report is nice to have; no report.. or report says ERROR ..then call for support).
Sitback has a graphic interface based on ncurses, when you run it directly from the shell. Do not worry if you do not have ncurses. Sitback works fine without.
If you run Sitback as a daemon making scheduled backups, no interface is available, but the logfile contains all important messages.
Enhancements:
- Fixed bug with mail-sending.. Message body contained standalone linefeeds, violating the standard.
- Now using stat64 (if available) to allow for large files (larger than 2GB) in the backup.
Download (MB)
Added: 2005-09-26 License: GPL (GNU General Public License) Price:
1489 downloads
The Worlds Best Band Name Generator 1.03
The Worlds Best Band Name Generator produces randomly generated band names. more>>
The Worlds Best Band Name Generator produces randomly generated band names.
The Worlds Best Band Name Generator can generate band names like "Ungratefully Swallowed" and "The Bridgeheads" and "Throwaway Deceptiveness".
The visitor can refresh the names dynamically without refreshing the page by using a small AJAX script.
The generator uses combinations of nouns, adjectives, and adverbs that lend themselves well to band name creation, so most of the names actually sound realistic.
The script is easy to install and modify.
You can download the Worlds Best Band Name Generator for FREE to add to your own web site.
If you really like the Words Best Band Name Generator, please link to this page so other people can find it.
<<lessThe Worlds Best Band Name Generator can generate band names like "Ungratefully Swallowed" and "The Bridgeheads" and "Throwaway Deceptiveness".
The visitor can refresh the names dynamically without refreshing the page by using a small AJAX script.
The generator uses combinations of nouns, adjectives, and adverbs that lend themselves well to band name creation, so most of the names actually sound realistic.
The script is easy to install and modify.
You can download the Worlds Best Band Name Generator for FREE to add to your own web site.
If you really like the Words Best Band Name Generator, please link to this page so other people can find it.
Download (0.45MB)
Added: 2005-12-02 License: Freeware Price:
1425 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 band saw 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