moved
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1228
Move 0.2
Move can help you move files or whole directories without loosing your AmaroK statistics (playcounter, score, etc.). more>>
Move can help you move files or whole directories without loosing your amaroK statistics (playcounter, score, etc.).
It also works with audio files which are not yet in your collection (f.ex. download folder).
Tested with amaroK 1.4 and Sqlite database, should work with MySQL and PostgreSQL too.
<<lessIt also works with audio files which are not yet in your collection (f.ex. download folder).
Tested with amaroK 1.4 and Sqlite database, should work with MySQL and PostgreSQL too.
Download (0.004MB)
Added: 2006-06-06 License: GPL (GNU General Public License) Price:
1239 downloads
mod_alias
mod_alias is an Apache module for mapping different parts of the host filesystem in the document tree, and URL redirection. more>>
mod_alias is an Apache module for mapping different parts of the host filesystem in the document tree, and URL redirection.
The directives contained in this module allow for manipulation and control of URLs as requests arrive at the server. The Alias and ScriptAlias directives are used to map between URLs and filesystem paths. This allows for content which is not directly under the DocumentRoot to be served as part of the web document tree. The ScriptAlias directive has the additional effect of marking the target directory as containing only CGI scripts.
The Redirect directives are used to instruct clients to make a new request with a different URL. They are often used when a resource has moved to a new location.
A more powerful and flexible set of directives for manipulating URLs is contained in the mod_rewrite module.
<<lessThe directives contained in this module allow for manipulation and control of URLs as requests arrive at the server. The Alias and ScriptAlias directives are used to map between URLs and filesystem paths. This allows for content which is not directly under the DocumentRoot to be served as part of the web document tree. The ScriptAlias directive has the additional effect of marking the target directory as containing only CGI scripts.
The Redirect directives are used to instruct clients to make a new request with a different URL. They are often used when a resource has moved to a new location.
A more powerful and flexible set of directives for manipulating URLs is contained in the mod_rewrite module.
Download (MB)
Added: 2007-05-05 License: The Apache License Price:
906 downloads
slaxmod1 0.9a
slaxmod1 is some modules for www.slax.org. more>>
slaxmod1 is some modules for www.slax.org. From this version modifications can be used with other distros. (Read info on site.)
It changes things such as:
-removing some entries from konqueror.
-Assigns c, d, and so on, for hdd partitions and cd rom.
-different launch menu, organised as directories with shortcuts.
-bigger image for starting launch (k) menu
-and some other changes.
Ill update it soon to work with slaxmod 6rc2.
Hope youll like this experiment.
Enhancements:
- set up for 6.0.rc2 slax version
- kde is in /usr now, so moved files, and changed path to $KDEDIR from /opt/kde
<<lessIt changes things such as:
-removing some entries from konqueror.
-Assigns c, d, and so on, for hdd partitions and cd rom.
-different launch menu, organised as directories with shortcuts.
-bigger image for starting launch (k) menu
-and some other changes.
Ill update it soon to work with slaxmod 6rc2.
Hope youll like this experiment.
Enhancements:
- set up for 6.0.rc2 slax version
- kde is in /usr now, so moved files, and changed path to $KDEDIR from /opt/kde
Download (MB)
Added: 2007-04-25 License: BSD License Price:
917 downloads
KMediaGrab 0.3
KMediagrab is a media grabber and encoder built on top of mplayer/mencoder. more>>
KMediagrab is a media grabber and encoder built on top of mplayer/mencoder. It can grab and encode a DVD at the same time (e.g., creating a divx or a videocd file for instance), record a movie or your favourite TV program from your TV-card, or translate a video file from one format to another (e.g., create a realplayer file from a .wmv one).
Enhancements:
- Added subtitles support
- fixed tv frame sizes
- moved from divx4 to xvid
<<lessEnhancements:
- Added subtitles support
- fixed tv frame sizes
- moved from divx4 to xvid
Download (0.53MB)
Added: 2005-06-16 License: GPL (GNU General Public License) Price:
1591 downloads
Guarded Memory Move 0.6
Guarded Memory Move tool is useful for studying buffer overflows and catching them together with a good stack image. more>>
Guarded Memory Move project gets handy when you have to study buffer overflows and you need to catch them together with a "good" stack image. When a stack overflow has been exploited, the back trace is already gone together with good information about parameters and local variables, that are of vital importance when trying to understand how the attacker is trying to work out the exploit. The GMM library uses dynamic function call interception to catch the most common functions that are used by attackers to exploit stack buffers.
The GMM library uses the LD_PRELOAD capability and offers two services to the user. First of all, it avoids buffer overflow to allow the attacker to execute shell-code on your machine. Second, in case where an exploit is detected, the stack content is saved and a segmentation fault is triggered. The resulting core dump will then have all the necessary information to debug the exploit and fix the software. Internally, the library insert itself between the application and the glibc library and intercept functions that might lead to buffer overflow exploits. Before calling the glibc core function, the GMM layer saves part of the stack frame above the caller to a temporary location in its frame.
It also stores the previous three return addresses in its local storage before calling the glibc core function. When the core function returns, the GMM code samples again the previously recorded return addresses and, if they differ, it restores the previously saved stack frame and issue a segmentation fault. This with a clean stack frame, so that it can be inspected with a debugger. While other solutions exist to detect buffer overflow exploits, like for example StackGuard and StackShield, those differs from GMM in many ways. They live as gcc patches and do require you to rebuild your application to use their functionalities. The good of this approach is that every single function is protected against buffer overflows.
The bad of this solution is that every single function is protected against buffer overflows. That is, performance regression on the whole application, even if this is not really a huge problem when hunting for buffer overflows. Another solution similar to GMM is LibSafe, but it does not save and restore the stack frame by making it unusable for debugging. But lets see how GMM differs from the above listed solutions. First of all, GMM works everywhere there are stack frames and the gcc and glibc duo. That means that it is not limited to i386 only. And now the real reason for the GMM existence.
Enhancements:
- GCCs __builtin_return_address and __builtin_frame_address seems to return garbage instead of NULL at the last frame. This release fixes the problem.
<<lessThe GMM library uses the LD_PRELOAD capability and offers two services to the user. First of all, it avoids buffer overflow to allow the attacker to execute shell-code on your machine. Second, in case where an exploit is detected, the stack content is saved and a segmentation fault is triggered. The resulting core dump will then have all the necessary information to debug the exploit and fix the software. Internally, the library insert itself between the application and the glibc library and intercept functions that might lead to buffer overflow exploits. Before calling the glibc core function, the GMM layer saves part of the stack frame above the caller to a temporary location in its frame.
It also stores the previous three return addresses in its local storage before calling the glibc core function. When the core function returns, the GMM code samples again the previously recorded return addresses and, if they differ, it restores the previously saved stack frame and issue a segmentation fault. This with a clean stack frame, so that it can be inspected with a debugger. While other solutions exist to detect buffer overflow exploits, like for example StackGuard and StackShield, those differs from GMM in many ways. They live as gcc patches and do require you to rebuild your application to use their functionalities. The good of this approach is that every single function is protected against buffer overflows.
The bad of this solution is that every single function is protected against buffer overflows. That is, performance regression on the whole application, even if this is not really a huge problem when hunting for buffer overflows. Another solution similar to GMM is LibSafe, but it does not save and restore the stack frame by making it unusable for debugging. But lets see how GMM differs from the above listed solutions. First of all, GMM works everywhere there are stack frames and the gcc and glibc duo. That means that it is not limited to i386 only. And now the real reason for the GMM existence.
Enhancements:
- GCCs __builtin_return_address and __builtin_frame_address seems to return garbage instead of NULL at the last frame. This release fixes the problem.
Download (0.41MB)
Added: 2007-04-24 License: GPL (GNU General Public License) Price:
914 downloads
Grave 0.4
Grave is an MP3 play-list editor and an interface tool to the Sensory Science RaveMP MP2000 Digital Media Player. more>>
Grave is an MP3 play-list editor and an interface tool to the Sensory Science RaveMP MP2000 Digital Media Player. Grave is made with the GTK+ toolkit and the Gnome libraries. It allows you to create and edit play-lists. The play-lists are stored as text files and can be used with most (software) MP3 players (i.e. XMMS).
The part interacting with the RaveMP (hardware) MP3 player can up and download single files, or complete play lists. You can browse files that are stored on the player and download them to your PC. You can upload a complete play list, or select single files in the file browser and upload those to the player.
Grave works fine without an RaveMP media player.
Main features:
- MP3 files can be selected in a file browser and then added either to an existing play-list, or a new play-list will be created from scratch. Songs can be removed, moved up, moved down, moved to the end or to the beginning of the play-list. If available, the ID3 tag of the MP3 file will be displayed when the file is selected. Single songs can be played with an external MP3 player.
<<lessThe part interacting with the RaveMP (hardware) MP3 player can up and download single files, or complete play lists. You can browse files that are stored on the player and download them to your PC. You can upload a complete play list, or select single files in the file browser and upload those to the player.
Grave works fine without an RaveMP media player.
Main features:
- MP3 files can be selected in a file browser and then added either to an existing play-list, or a new play-list will be created from scratch. Songs can be removed, moved up, moved down, moved to the end or to the beginning of the play-list. If available, the ID3 tag of the MP3 file will be displayed when the file is selected. Single songs can be played with an external MP3 player.
Download (0.12MB)
Added: 2006-05-12 License: GPL (GNU General Public License) Price:
1262 downloads
otetsudaiqt 0.1 b1
Otetsudaiqt is a bonsai collection management software for *nix systems. more>>
Otetsudaiqt is a bonsai collection management software for *nix systems, it helps you to manage your trees, your pots and your pictures.
Main features:
- It keeps a list of your trees with their characteristics. For each tree, you can apply "events" which will be remembered or add pictures. Pictures can be resized and moved to a repository while the original may be saved in another place if you wish. At any time, you can get the history of a tree which presents in one page all the characteristics of the tree and list in chronological order all the pictures or events applied to it.
- It can keep a list of your pots if you wish. Free pots can be choosen when rempotting a tree, can have pictures and the history of each pot can be obtained.
- Successfull compilation and use on Mac Os X has been reported! UPDATE : A (french only) installer for Mac Os is now available.
- Dont be fooled by the 0.1 version, it is already quite usable, and I do use it !
<<lessMain features:
- It keeps a list of your trees with their characteristics. For each tree, you can apply "events" which will be remembered or add pictures. Pictures can be resized and moved to a repository while the original may be saved in another place if you wish. At any time, you can get the history of a tree which presents in one page all the characteristics of the tree and list in chronological order all the pictures or events applied to it.
- It can keep a list of your pots if you wish. Free pots can be choosen when rempotting a tree, can have pictures and the history of each pot can be obtained.
- Successfull compilation and use on Mac Os X has been reported! UPDATE : A (french only) installer for Mac Os is now available.
- Dont be fooled by the 0.1 version, it is already quite usable, and I do use it !
Download (4.0MB)
Added: 2005-05-24 License: GPL (GNU General Public License) Price:
1613 downloads
core2 1.0.1
core2 is a library that extends the ECMAScript built-in objects. more>>
core2 project is a library that extends the ECMAScript built-in objects: Array, Boolean, Date, Error, Function, Number, Object, and String.
Main features:
- work with any ECMA-262 compliant hosts
- simple to use
- same API everywhere (JavaScript, JScript, ActonScript, etc.)
- fully tested (with ASTUce framework)
- code reflection (GetObjectPath, getConstructorName, getConstructorPath)
- code introspection (_global.ToSource, toSource)
Enhancements:
- Moved from 10 to 28 tested hosts.
- More tests on browsers (Firefox and Safari) and operating systems (Linux Mandrake, Linux Ubuntu, and Mac OS X).
- Firefox 1.5 array methods are now a run-time patch and available to any hosts.
- Some unused code has been removed and bugs fixed.
<<lessMain features:
- work with any ECMA-262 compliant hosts
- simple to use
- same API everywhere (JavaScript, JScript, ActonScript, etc.)
- fully tested (with ASTUce framework)
- code reflection (GetObjectPath, getConstructorName, getConstructorPath)
- code introspection (_global.ToSource, toSource)
Enhancements:
- Moved from 10 to 28 tested hosts.
- More tests on browsers (Firefox and Safari) and operating systems (Linux Mandrake, Linux Ubuntu, and Mac OS X).
- Firefox 1.5 array methods are now a run-time patch and available to any hosts.
- Some unused code has been removed and bugs fixed.
Download (0.20MB)
Added: 2006-01-10 License: MPL (Mozilla Public License) Price:
1382 downloads
KSalomon 0.1.7 beta
KSalomon is a new vocabulary trainer for Kde 3 (Linux). more>>
KSalomon is a new vocabulary trainer for Kde 3 (Linux). The project is open source software written using the Qt and KDE Libraries.
The program is based on the "Leitner" learning system:
The vocabulary is stored in a card index box which can contain several vocabulary files. Words that have been answered correctly on first attempt are moved into a higher folder, where they are asked less often each time.
The number of folders, as well as the time the vocabulary should stay locked is configurable. Words that havent been answered correctly stay in the folder, or, if they already were in a higher folder, are being moved back down.
Main features:
- Multiple correct answers possible
- Easy and fast way to enter words, synonyms, ..., mouse is not needed
- The possibility to record and play sounds for every word, description and example
- Pictures can be added to words
- LaTeX support for e.g. mathematic expressions
- Highly configurable
- You can specify a font for every language
- Special characters can be entered using configurable key combinations
- You can assign different colours to parts of speech
- Supports the kvtml file format
Version restrictions:
- printing support
- Documentation
- Learning mode
Enhancements:
- Added some documentation, viewable via "hints".
- Mainly bugfixing since 0.1.6.
<<lessThe program is based on the "Leitner" learning system:
The vocabulary is stored in a card index box which can contain several vocabulary files. Words that have been answered correctly on first attempt are moved into a higher folder, where they are asked less often each time.
The number of folders, as well as the time the vocabulary should stay locked is configurable. Words that havent been answered correctly stay in the folder, or, if they already were in a higher folder, are being moved back down.
Main features:
- Multiple correct answers possible
- Easy and fast way to enter words, synonyms, ..., mouse is not needed
- The possibility to record and play sounds for every word, description and example
- Pictures can be added to words
- LaTeX support for e.g. mathematic expressions
- Highly configurable
- You can specify a font for every language
- Special characters can be entered using configurable key combinations
- You can assign different colours to parts of speech
- Supports the kvtml file format
Version restrictions:
- printing support
- Documentation
- Learning mode
Enhancements:
- Added some documentation, viewable via "hints".
- Mainly bugfixing since 0.1.6.
Download (1.6MB)
Added: 2007-04-03 License: GPL (GNU General Public License) Price:
935 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
Melys 0.1.17
Melys is a MIDI sequencer application for ALSA. more>>
Melys is a MIDI sequencer application for ALSA. It records, plays back, and saves to a MIDI file or to an XML-based format. There is a track view where you can arrange parts using drag-and-drop and a piano-roll view where the same can be done with notes. There is also a graphical tempo view where the tempo of the song can be changed. Multiple files can be open at once, and notes can be dragged between them. It is written in C language and uses the GNOME/Gtk+ widget libraries.
Main features:
- A track view with drag and drop re-arrangement and copying of track parts
- A piano roll view where notes can be freely moved and copied.
- Multiple files and multiple views of the same file can be open at once and elements moved or copied between them. All related views update when one is changed.
- Tracks can be recorded and overdubbed.
- Files can be read and saved as Midi or in a text MDML format.
Enhancements:
- README: Updated for release 0.1.17.
- Makefile: Modified fordist to remove cfiles.
- widgets/melysview.m: Removed printf
<<lessMain features:
- A track view with drag and drop re-arrangement and copying of track parts
- A piano roll view where notes can be freely moved and copied.
- Multiple files and multiple views of the same file can be open at once and elements moved or copied between them. All related views update when one is changed.
- Tracks can be recorded and overdubbed.
- Files can be read and saved as Midi or in a text MDML format.
Enhancements:
- README: Updated for release 0.1.17.
- Makefile: Modified fordist to remove cfiles.
- widgets/melysview.m: Removed printf
Download (0.21MB)
Added: 2006-07-26 License: GPL (GNU General Public License) Price:
1186 downloads
PloneDeepTrashcan 0.1
PloneDeepTrashcan is a project which allows contents to be trashed in a repository. more>>
PloneDeepTrashcan is a project which allows contents to be trashed in a repository.
PloneDeepTrashcan keeps documents that were trashed (not deleted) in a central trashcan.
PloneDeepTrashcan keeps a reference to the original folder for all content moved to its trashcan. The reference is not kept for content moved to the member trashcan by PloneTrashcan, but it is simple to extend PloneTrashcan in this direction.
Besides the usual "cut", "copy", "paste" and "delete", users have the possibility to "trash" content. Trashing content will put it in the deep trashcan.
As all trashed documents for all users are kept in one deep trashcan, access is restricted by the "DeepTrashcan: Recover content" permission.
The "contents" tab of the trashcan has a "recover" action. Selecting multiple documents and clicking on "recover" will recover them to their original place after confirmation. Documents that dont have a reference to the original folder they were deleted from can not be recovered like this, but have to be copied and pasted.
How does it work?
Documents are cut and pasted to and from the trashcan, preserving their workflow state and security settings. The trashcan and its content is by default only visible to the Manager. We keep an Archetypes reference to the original folder.
Enhancements:
- Fixing member folder trashing.
- removed test code that would raise "Not referencable" in case
<<lessPloneDeepTrashcan keeps documents that were trashed (not deleted) in a central trashcan.
PloneDeepTrashcan keeps a reference to the original folder for all content moved to its trashcan. The reference is not kept for content moved to the member trashcan by PloneTrashcan, but it is simple to extend PloneTrashcan in this direction.
Besides the usual "cut", "copy", "paste" and "delete", users have the possibility to "trash" content. Trashing content will put it in the deep trashcan.
As all trashed documents for all users are kept in one deep trashcan, access is restricted by the "DeepTrashcan: Recover content" permission.
The "contents" tab of the trashcan has a "recover" action. Selecting multiple documents and clicking on "recover" will recover them to their original place after confirmation. Documents that dont have a reference to the original folder they were deleted from can not be recovered like this, but have to be copied and pasted.
How does it work?
Documents are cut and pasted to and from the trashcan, preserving their workflow state and security settings. The trashcan and its content is by default only visible to the Manager. We keep an Archetypes reference to the original folder.
Enhancements:
- Fixing member folder trashing.
- removed test code that would raise "Not referencable" in case
Download (0.036MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
985 downloads
Mount.app 3.1
Mountapp is a dockapp for mounting and unmounting filesystems. more>>
Mountapp is a dockapp for mounting and unmounting filesystems. Mount.app is especially useful for removable volumes like CD-ROMs, ZIP(tm) disks, and floppies.
One click to mount, unmount, eject. GUI configuration, automatically configures "user" and "owner" mounts from /etc/fstab.
Enhancements:
- The source has been moved from CVS to Mercurial.
- Some user-supplied patches have been applied.
<<lessOne click to mount, unmount, eject. GUI configuration, automatically configures "user" and "owner" mounts from /etc/fstab.
Enhancements:
- The source has been moved from CVS to Mercurial.
- Some user-supplied patches have been applied.
Download (0.096MB)
Added: 2007-02-08 License: GPL (GNU General Public License) Price:
990 downloads
Lefromoma 0.3
Lefromoma is a simple mame frontend written in python focused on cabinets. more>>
Lefromoma is a simple mame frontend written in python focused on cabinets.
Features: fullscreen, snapshots, roms-, favorites-list (alphabetical) & ignore list, scaling of a game. All text in game names between () is stripped in the favorites list (revision/version numbers etc), it makes the list prettier. There are 3 wav-files included, a "start up" sound, a "start game" sound and a button sound.
The script creates 4 new directories in your rom directory: complete, favorites, ignore and scaling. They are filled with symlinks (this doesnt take up much space, dont worry). When you add a game to the favorites the symlink from the complete dir is moved to the favorites and visa versa.
If you move a game to the ignore directory (that is, the symlink will be moved there), you will have to remove it yourself again. (might change in the future). You can change the scaling of the game in the frontend. The scaling dir is used to write the default scaling for a game (gamerom_2 or gamerom_1)
Lefromoma is developed and tested on Fedora Core 5, other GNU/linux distro should work too (other distros not tested though).
<<lessFeatures: fullscreen, snapshots, roms-, favorites-list (alphabetical) & ignore list, scaling of a game. All text in game names between () is stripped in the favorites list (revision/version numbers etc), it makes the list prettier. There are 3 wav-files included, a "start up" sound, a "start game" sound and a button sound.
The script creates 4 new directories in your rom directory: complete, favorites, ignore and scaling. They are filled with symlinks (this doesnt take up much space, dont worry). When you add a game to the favorites the symlink from the complete dir is moved to the favorites and visa versa.
If you move a game to the ignore directory (that is, the symlink will be moved there), you will have to remove it yourself again. (might change in the future). You can change the scaling of the game in the frontend. The scaling dir is used to write the default scaling for a game (gamerom_2 or gamerom_1)
Lefromoma is developed and tested on Fedora Core 5, other GNU/linux distro should work too (other distros not tested though).
Download (0.51MB)
Added: 2006-10-18 License: Freely Distributable Price:
1101 downloads
Blue Moon 2.9
Blue Moon project is a Blue Moon solitaire for Unix. more>>
Blue Moon project is a Blue Moon solitaire for Unix.
This 52-card solitaire starts with the entire deck shuffled and dealt out in four rows.
The aces are then moved to the left end of the layout, making 4 initial free spaces.
You may move to a space only the card that matches the left neighbor in suit, and is one greater in rank. Kings are high, so no cards may be placed to their right (they create dead spaces).
When no moves can be made, cards still out of sequence are reshuffled and dealt face up after the ends of the partial sequences, leaving a card space after each sequence, so that each row looks like a partial sequence followed by a space, followed by enough cards to make a row of 14.
A moments reflection will show that this game cannot take more than 13 deals.
A good score is 1-3 deals, 4-7 is average, 8 or more is poor.
Enhancements:
- Changes since the initial release have been in the packaging.
<<lessThis 52-card solitaire starts with the entire deck shuffled and dealt out in four rows.
The aces are then moved to the left end of the layout, making 4 initial free spaces.
You may move to a space only the card that matches the left neighbor in suit, and is one greater in rank. Kings are high, so no cards may be placed to their right (they create dead spaces).
When no moves can be made, cards still out of sequence are reshuffled and dealt face up after the ends of the partial sequences, leaving a card space after each sequence, so that each row looks like a partial sequence followed by a space, followed by enough cards to make a row of 14.
A moments reflection will show that this game cannot take more than 13 deals.
A good score is 1-3 deals, 4-7 is average, 8 or more is poor.
Enhancements:
- Changes since the initial release have been in the packaging.
Download (0.012MB)
Added: 2006-11-15 License: GPL (GNU General Public License) Price:
625 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 moved 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