for hours together
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1616
Rush Hour Puzzle Solver 0.2.7
Rush Hour Puzzle Solver project is a Rush Hour puzzle solver that illustrates the solution with PostScript. more>>
Rush Hour Puzzle Solver project is a Rush Hour puzzle solver that illustrates the solution with PostScript.
Rush Hour Puzzle Solver is a small C++ program that reads a Rush Hour board from a text file and produces a nice PostScript file that shows the shortest solution.
<<lessRush Hour Puzzle Solver is a small C++ program that reads a Rush Hour board from a text file and produces a nice PostScript file that shows the shortest solution.
Download (0.45MB)
Added: 2006-12-20 License: Freely Distributable Price:
1058 downloads
Chaussette 1.0
Chaussette is a PHP/MySQL Web group calendar using Ajax. With it, friends can share events and chat together. more>>
Chaussette is a MySQL/PHP Web group calendar using Ajax.
With it, friends can share events and chat together.
<<lessWith it, friends can share events and chat together.
Download (2.6MB)
Added: 2006-05-10 License: GPL (GNU General Public License) Price:
1262 downloads
A Simple TimeSheet 2.1
A Simple TimeSheet (ASTS) allows a group of people to record the hours spent working on a variety of projects. more>>
A Simple TimeSheet (ASTS) allows a group of people to record the hours spent working on a variety of projects. For each project, the hours can be divided into a number of different tasks. There are global projects and tasks but also personal projects and tasks for each user.
The main aim is to provide tools which are easy for the user to install and manage.
The tools will be implemented with as few external dependencies as possible. They will not, for example, depend on a database for storage but use flat files (maybe XML format) instead. ASTS, for example, requires just perl and the CGI and Date::Calc perl modules.
More sophisticated versions of the tools may be added in the future.
Enhancements:
- Custom data fields can be defined.
- Project and task lists can now include separators.
- Bugs were fixed.
- The documentation was updated.
<<lessThe main aim is to provide tools which are easy for the user to install and manage.
The tools will be implemented with as few external dependencies as possible. They will not, for example, depend on a database for storage but use flat files (maybe XML format) instead. ASTS, for example, requires just perl and the CGI and Date::Calc perl modules.
More sophisticated versions of the tools may be added in the future.
Enhancements:
- Custom data fields can be defined.
- Project and task lists can now include separators.
- Bugs were fixed.
- The documentation was updated.
Download (0.021MB)
Added: 2007-08-06 License: Artistic License Price:
811 downloads

jEdit for Unix 4.3pre12
a programmers text editor written in Java more>> jEdit is a mature programmers text editor with hundreds (counting the time developing plugins) of person-years of development behind it. To download, install, and set up jEdit as quickly and painlessly as possible, go to the Quick Start page.
While jEdit beats many expensive development tools for features and ease of use, it is released as free software with full source code, provided under the terms of the GPL 2.0.
The core of jEdit was originally by Slava Pestov. Now the jEdit core, together with a large collection of plugins is maintained by a world-wide developer team.
Some of jEdits features include:
Written in Java, so it runs on Mac OS X, OS/2, Unix, VMS and Windows.
Built-in macro language; extensible plugin architecture. Dozens of macros and plugins available.
Plugins can be downloaded and installed from within jEdit using the plugin manager feature.
Auto indent, and syntax highlighting for more than 130 languages.
Supports a large number of character encodings including UTF8 and Unicode.
Folding for selectively hiding regions of text.
Word wrap.
Highly configurable and customizable.
Every other feature, both basic and advanced, you would expect to find in a text editor.<<less
Download (2.41MB)
Added: 2009-04-17 License: Freeware Price: Free
194 downloads
Together with Gikoneko 0.1.2.4
Together with Gikoneko allows users to show Gikoneko, a famous mascot of 2ch everywhere in firefox. more>>
Together with Gikoneko allows users to show Gikoneko, a famous mascot of 2ch everywhere in firefox.
Show Gikoneko, a famous mascot of 2ch everywhere in firefox. Materials used are Shirasus works. No English version available.
You cannot enable both Together with Foxkeh and this at the same time.
<<lessShow Gikoneko, a famous mascot of 2ch everywhere in firefox. Materials used are Shirasus works. No English version available.
You cannot enable both Together with Foxkeh and this at the same time.
Download (0.038MB)
Added: 2007-03-31 License: MPL (Mozilla Public License) Price:
940 downloads
MOS 6502 Simulator
MOS 6502 Simulator is sort of an emulator for a 6502 chip. more>>
MOS 6502 Simulator is sort of an emulator for a 6502 chip. Theres virtually nothing apart from the CPU (minus BCD operations). It also bears no heed to instruction timings.
Whilst (apart from those two things) it successfully simulates the CPU there were a few design flaws, which led me not to continue with it:
- I wrote it in C++.
As the 6502 had no dedicated IO bus, everything was done via memory. I had the idea of having a pure virtual class which provided a generic interface, then as I wrote devices to sit in the memory space, they could just override portions of it, or trap on writes or something.
Whilst writing this, I kept getting the feeling I should have written it in asm instead Especially for manipulating flags and rotates and stuff. (as I could have just rotated AL, for example, rather than the mess I have in the C++ code.
- Sloppy instruction decoding.
I originally set out to decode the instructions properly, but there were lots of exceptions to the system used (esp. if I intended to support the 65C02 for example). This decended into a massive switch statement. I almost considered splitting it up to smaller files, and just #include them in the middle, just to make it more managable.
Also, as they are not in numerical order (grouped according to type, or addressing mode, cant remember atm) it wouldnt compile to a jump table. Does with optimisation on though.
The main thing that prompted me to write this was I found my BBC-B in the loft, and felt a pang of nostalgia for the hours wasted hunched over it in the lowest resolution text mode (IIRC mode 7 to save ram). I had the idea of writing a NES or BBC emulator, however it didnt get that far.
It has a pretty simple image format. The file must be >= 65536 bytes (64k) and that is simply the memory image for the system (16-bit address bus). There is a strange sort of ASCII text display at 0x200, which is ok enough for spewing a string to. As it was just thrown together in the space of 6 hours or so (took a long time to do the switch statement) its not very thouroughly documented, but hey.
<<lessWhilst (apart from those two things) it successfully simulates the CPU there were a few design flaws, which led me not to continue with it:
- I wrote it in C++.
As the 6502 had no dedicated IO bus, everything was done via memory. I had the idea of having a pure virtual class which provided a generic interface, then as I wrote devices to sit in the memory space, they could just override portions of it, or trap on writes or something.
Whilst writing this, I kept getting the feeling I should have written it in asm instead Especially for manipulating flags and rotates and stuff. (as I could have just rotated AL, for example, rather than the mess I have in the C++ code.
- Sloppy instruction decoding.
I originally set out to decode the instructions properly, but there were lots of exceptions to the system used (esp. if I intended to support the 65C02 for example). This decended into a massive switch statement. I almost considered splitting it up to smaller files, and just #include them in the middle, just to make it more managable.
Also, as they are not in numerical order (grouped according to type, or addressing mode, cant remember atm) it wouldnt compile to a jump table. Does with optimisation on though.
The main thing that prompted me to write this was I found my BBC-B in the loft, and felt a pang of nostalgia for the hours wasted hunched over it in the lowest resolution text mode (IIRC mode 7 to save ram). I had the idea of writing a NES or BBC emulator, however it didnt get that far.
It has a pretty simple image format. The file must be >= 65536 bytes (64k) and that is simply the memory image for the system (16-bit address bus). There is a strange sort of ASCII text display at 0x200, which is ok enough for spewing a string to. As it was just thrown together in the space of 6 hours or so (took a long time to do the switch statement) its not very thouroughly documented, but hey.
Download (0.046MB)
Added: 2007-03-05 License: BSD License Price:
972 downloads

NINJAM Client for Linux 0.06 beta
It allows people to make real music together via the Internet. more>> NINJAM is a program to allow people to make real music together via the Internet. Every participant can hear every other participant. Each user can also tweak their personal mix to his or her liking. NINJAM is cross-platform, with clients available for Mac OS X and Windows.<<less
Download (71KB)
Added: 2009-04-28 License: Freeware Price: Free
189 downloads
foosic for amaroK 0.3
foosic is a script for amaroK Music Diary. more>>
foosic is a script for amaroK Music Diary. foosic project is an automated music database and a playback statistics tracking system. While you listen to your music, the foosic client submits information about which songs you play. Together with the submissions from other users, we can gather a complete database about currently existing albums, artists, compilations, etc..., as well as information about what is popular and what is not.
You can see your own statistics, and, if you allow it, let your friends see what you are listening to and what you like.
You can browse the database on this site and discover new artists or albums that you didnt know about before."
Based on the protocol description I created a ruby script for amaroK so I can update my statistics also from my Linux box.
The script was tested with ruby version 1.8.3 and amaroK 1.3.8. The script depends on Korundum for the config panel.
You can use the amaroK Script manager to install the script.
As Im no expert neither in ruby nor in Qt, if anyone feels corrections should be made to the script, please tell me so or correct the mistake yourself.
I probably wont add new features unless Im *really* bored. Or they are useful *and* easy to implement.
Oh, and Im not related in any way to the original foosic developers.
<<lessYou can see your own statistics, and, if you allow it, let your friends see what you are listening to and what you like.
You can browse the database on this site and discover new artists or albums that you didnt know about before."
Based on the protocol description I created a ruby script for amaroK so I can update my statistics also from my Linux box.
The script was tested with ruby version 1.8.3 and amaroK 1.3.8. The script depends on Korundum for the config panel.
You can use the amaroK Script manager to install the script.
As Im no expert neither in ruby nor in Qt, if anyone feels corrections should be made to the script, please tell me so or correct the mistake yourself.
I probably wont add new features unless Im *really* bored. Or they are useful *and* easy to implement.
Oh, and Im not related in any way to the original foosic developers.
Download (0.003MB)
Added: 2006-06-02 License: GPL (GNU General Public License) Price:
1243 downloads
TreeSize for Unix 0.53
TreeSize for Unix is a disk consumption analyzing tool, which sorts folders according to their physical occupied sizes. more>>
TreeSize for Unix is a disk consumption analyzing tool, which sorts folders according to their physical occupied sizes.
The perfect tool to help you obtaining more disk free space, on your hard drive, usb pen drive or even on network folders (provided that they are mounted and you have access to them, of course )
Just like du, it counts hard links just once and the space utilized by different filesystems are not added together.
<<lessThe perfect tool to help you obtaining more disk free space, on your hard drive, usb pen drive or even on network folders (provided that they are mounted and you have access to them, of course )
Just like du, it counts hard links just once and the space utilized by different filesystems are not added together.
Download (0.20MB)
Added: 2006-12-19 License: GPL (GNU General Public License) Price:
1049 downloads
Velocity for Linux 1.5
a Java-based template engine more>> Velocity is a Java-based template engine. It permits anyone to use a simple yet powerful template language to reference objects defined in Java code.
When Velocity is used for web development, Web designers can work in parallel with Java programmers to develop web sites according to the Model-View-Controller (MVC) model, meaning that web page designers can focus solely on creating a site that looks good, and programmers can focus solely on writing top-notch code. Velocity separates Java code from the web pages, making the web site more maintainable over its lifespan and providing a viable alternative to Java Server Pages (JSPs) or PHP.
Velocitys capabilities reach well beyond the realm of the web; for example, it can be used to generate SQL, PostScript and XML (see Anakia for more information on XML transformations) from templates. It can be used either as a standalone utility for generating source code and reports, or as an integrated component of other systems. For instance, Velocity provides template services for the Turbine web application framework, together resulting in a view engine facilitating development of web applications according to a true MVC model.<<less
Download (4.34MB)
Added: 2009-04-19 License: Freeware Price: Free
190 downloads
split3pm for Linux 1.5
split3pm is a tool to extract music segments from a larger MP3 file. more>> split3pm is a tool to extract music segments from a larger MP3 file. For example, you might have a long radio capture in MP3 format and you want to cut out a piece of music from it. Before split3pm you would have had to convert the file to Wave and edit it there; now, you can just tell split3pm the time and duration of one or more audio segments and it will extract the files for you.
split3pm has been tested with very large MP3 files (up to 8 hours long), and is much faster for its purpose than any Waveeditor out there. split3pm is Open Source freeware and is available for both Win32 and Linux.<<less
Download (45KB)
Added: 2009-04-06 License: Freeware Price: Free
200 downloads
Image Cluster 0.1
Image Cluster copies and renames images based on Exif data and file number names. more>>
Image Cluster copies and renames images based on Exif data and file number names. Image Cluster also clusters those images into directories based on a variable sliding window (with a default of 36 hours), which makes it easy to group images based on events without manual intervention.
The inspiration for this program came from recently getting a new Canon SD500 camera to replace my Canon S30 that Id had for years. The upside, the Canon SD500 rocks! The downside, I now have 2 cameras that are burning through the same sequence numbers, so my previous solution of just putting all the files in to directories by the first 2 digits of the sequence numbers was no longer going to work.
Imagecluster solves this problem, plus another grouping problem that Id been thinking about, by extracting the CreateDate and FileNumber exif tags from the images, and using that as the basis of a new filename (typically YYYY:mm:dd_HH:MM:SS_FileNumber.jpg). This ensures that 2 images taken at the same second have an even smaller chance of colliding, as their camera sequence numbers would have to also be the same at that second.
But that is just the first step. I have noticed that I am an occational photographer, so take pictures in bursts, often for a weekend of hanging out with folks, though sometimes for a vacation as well. This got me thinking. What I really needed is a tool that also creates directories that allows for some minimum tollerance between CreateDate, that is used to cluster images. For me, the optimum value seems to be 36 hours, though this is configurable via the command line.
This took me an afternoon to pull together, Im sure it could be smarter, but it is useful enough to post for others to use.
Options:
-d directory
Set the target directory for images. Defaults to /tmp/photos, which is probably not what you want.
-D
Dryrun. Tells you what the program would have done.
-h
Print out help message
-s
Seperator character. It defaults to : (i.e. 2005:10:09...), but is user configurable because my friend Clemens wants to use - (i.e. 2005-10-09) instead.
-t
Set the tollerance for image clustering. This is the maximum time between any 2 pictures in a cluster, which will cause a new cluster to be created. The name of the cluster will be YYYY:MM:DD of the first image in the cluster, even if it spans multiple days. Because this tollerance is the maximum time between any two images in the cluster, it is possible that all images you have ever taken could be in 1 cluster, if you took a picture every day of your life. Hence, this feature isnt useful to everyone. If you are that kind of person, set tollerance to 16 hours or something, and youll tend to get 1 day sized buckets.
-v
Prints verbose output
<<lessThe inspiration for this program came from recently getting a new Canon SD500 camera to replace my Canon S30 that Id had for years. The upside, the Canon SD500 rocks! The downside, I now have 2 cameras that are burning through the same sequence numbers, so my previous solution of just putting all the files in to directories by the first 2 digits of the sequence numbers was no longer going to work.
Imagecluster solves this problem, plus another grouping problem that Id been thinking about, by extracting the CreateDate and FileNumber exif tags from the images, and using that as the basis of a new filename (typically YYYY:mm:dd_HH:MM:SS_FileNumber.jpg). This ensures that 2 images taken at the same second have an even smaller chance of colliding, as their camera sequence numbers would have to also be the same at that second.
But that is just the first step. I have noticed that I am an occational photographer, so take pictures in bursts, often for a weekend of hanging out with folks, though sometimes for a vacation as well. This got me thinking. What I really needed is a tool that also creates directories that allows for some minimum tollerance between CreateDate, that is used to cluster images. For me, the optimum value seems to be 36 hours, though this is configurable via the command line.
This took me an afternoon to pull together, Im sure it could be smarter, but it is useful enough to post for others to use.
Options:
-d directory
Set the target directory for images. Defaults to /tmp/photos, which is probably not what you want.
-D
Dryrun. Tells you what the program would have done.
-h
Print out help message
-s
Seperator character. It defaults to : (i.e. 2005:10:09...), but is user configurable because my friend Clemens wants to use - (i.e. 2005-10-09) instead.
-t
Set the tollerance for image clustering. This is the maximum time between any 2 pictures in a cluster, which will cause a new cluster to be created. The name of the cluster will be YYYY:MM:DD of the first image in the cluster, even if it spans multiple days. Because this tollerance is the maximum time between any two images in the cluster, it is possible that all images you have ever taken could be in 1 cluster, if you took a picture every day of your life. Hence, this feature isnt useful to everyone. If you are that kind of person, set tollerance to 16 hours or something, and youll tend to get 1 day sized buckets.
-v
Prints verbose output
Download (0.010MB)
Added: 2006-02-10 License: GPL (GNU General Public License) Price:
1355 downloads
Openbravo 2.30 / 2.31 Beta
Openbravo is an ERP business solution for small and medium sized companies. more>>
Openbravo is an ERP business solution for small and medium sized companies. Its database structure is originally based on Compiere. Openbravo uses a fully Web based client/server architecture, and can be used from any Web browser.
It has support for PostgreSQL and Oracle database back-ends. Openbravo project is currently available in Spanish, English, Italian, Portuguese, and Russian.
Main features:
Fully Functional
- Openbravo includes the full suite of functionalities that are common nowadays in an extended ERP: procurement, warehouse, project management, manufacturing, sales and financial processes. Basic CRM (Customer Relationship Management) and BI (Business Intelligence) are built in as well. Openbravo is already in production in companies spanning several industries, including distribution, services and manufacturing.
Truly integrated, truly an ERP
- Openbravo is different from other ERP solutions that piece together independent modules, often resulting in unnecessary complexity and unstable interfaces. From the start, Openbravo was designed with the whole at heart: all functionalities share a common architecture, philosophy, rules and user interface. Yet, you can still decide if and when you configure or use each functionality provided by Openbravo.
Open Source
- Openbravos open source license permits unrestricted access to the source code and makes it possible for an independent community of IT professionals to provide services without any type of vendor lock-in.
- Additionally, Openbravo provides a broad range of functionalities that can be easily customized to fit the common business needs of SMEs. We understand that each company is unique and has its own specific particularities. For these companies, that require a more particular customization, we offer something more: unrestricted access to the underlying source code to tailor to your specific needs. Youre not likely to get this kind of flexibility if you license a solution from a traditional vendor.
Revolutionary Architecture
- Openbravo is developed around a revolutionary architecture that results in a better way to build software applications. Through a combination of well known standards such as MVC (Model, View, Control) and MDD (Model Driven Development) an abstraction layer has been created that provides the automation of code generation. This strategy enables higher productivity than in other architectures or development platforms. Besides, it provides better quality because the files are coded always using the same rules and style. Consequently, if a specific requirement, not met by the standard solution, needs to be developed from scratch, coders can greatly benefit from a consistent coding framework.
Fast Implementation
- Openbravo can be installed in just a few hours. After having your business needs defined, it can be customized to fit them in a matter of days. In just a few weeks you can have your current business information migrated to the Openbravo, integrations with other systems done, specific requirements developed and your employees trained to start working with the new enterprise management system. Openbravo does not require any irreversible implementation decisions. This allows you to go into production faster. Moreover, the system can be easily adapted to changing business needs whenever required and have a flexible deployment of new functionalities.
Best-in-Class Usability
- Because Openbravo is a pure web-based ERP users access the application with just a web browser, a well known user interface environment. The user interface is generated based on rules and these are designed to minimize the user learning curve. We continue investing to have the best-in-class usability, adopting the most recent presentation techniques for web applications like AJAX.
Whats New in 2.30 Stable Release:
- Alarms can now be defined by users (with e-mail notification).
- An alarm is a periodic check that is performed to verify certain conditions.
- A complete revision of Accounting was made, improving reporting and tracking.
- Messages were also revised to ensure that they provide a clear explanation, a homogeneous style, and a consistent user interface.
- The applications user interface was redesigned using Dojo as the user interface library.
<<lessIt has support for PostgreSQL and Oracle database back-ends. Openbravo project is currently available in Spanish, English, Italian, Portuguese, and Russian.
Main features:
Fully Functional
- Openbravo includes the full suite of functionalities that are common nowadays in an extended ERP: procurement, warehouse, project management, manufacturing, sales and financial processes. Basic CRM (Customer Relationship Management) and BI (Business Intelligence) are built in as well. Openbravo is already in production in companies spanning several industries, including distribution, services and manufacturing.
Truly integrated, truly an ERP
- Openbravo is different from other ERP solutions that piece together independent modules, often resulting in unnecessary complexity and unstable interfaces. From the start, Openbravo was designed with the whole at heart: all functionalities share a common architecture, philosophy, rules and user interface. Yet, you can still decide if and when you configure or use each functionality provided by Openbravo.
Open Source
- Openbravos open source license permits unrestricted access to the source code and makes it possible for an independent community of IT professionals to provide services without any type of vendor lock-in.
- Additionally, Openbravo provides a broad range of functionalities that can be easily customized to fit the common business needs of SMEs. We understand that each company is unique and has its own specific particularities. For these companies, that require a more particular customization, we offer something more: unrestricted access to the underlying source code to tailor to your specific needs. Youre not likely to get this kind of flexibility if you license a solution from a traditional vendor.
Revolutionary Architecture
- Openbravo is developed around a revolutionary architecture that results in a better way to build software applications. Through a combination of well known standards such as MVC (Model, View, Control) and MDD (Model Driven Development) an abstraction layer has been created that provides the automation of code generation. This strategy enables higher productivity than in other architectures or development platforms. Besides, it provides better quality because the files are coded always using the same rules and style. Consequently, if a specific requirement, not met by the standard solution, needs to be developed from scratch, coders can greatly benefit from a consistent coding framework.
Fast Implementation
- Openbravo can be installed in just a few hours. After having your business needs defined, it can be customized to fit them in a matter of days. In just a few weeks you can have your current business information migrated to the Openbravo, integrations with other systems done, specific requirements developed and your employees trained to start working with the new enterprise management system. Openbravo does not require any irreversible implementation decisions. This allows you to go into production faster. Moreover, the system can be easily adapted to changing business needs whenever required and have a flexible deployment of new functionalities.
Best-in-Class Usability
- Because Openbravo is a pure web-based ERP users access the application with just a web browser, a well known user interface environment. The user interface is generated based on rules and these are designed to minimize the user learning curve. We continue investing to have the best-in-class usability, adopting the most recent presentation techniques for web applications like AJAX.
Whats New in 2.30 Stable Release:
- Alarms can now be defined by users (with e-mail notification).
- An alarm is a periodic check that is performed to verify certain conditions.
- A complete revision of Accounting was made, improving reporting and tracking.
- Messages were also revised to ensure that they provide a clear explanation, a homogeneous style, and a consistent user interface.
- The applications user interface was redesigned using Dojo as the user interface library.
Download (MB)
Added: 2007-06-27 License: MPL (Mozilla Public License) Price:
861 downloads
Kvirus 0.5.2
Kvirus project is a board/puzzle game for the KDE Environment. more>>
Kvirus project is a board/puzzle game for the KDE Environment.
Kvirus is a board game for the KDE Environment and a clone of Ataxxlet originally written in Java.
The goal is to copy or jump your virus to eat up the enemy virus. Kvirus provides a cute interface with hours of fun.
<<lessKvirus is a board game for the KDE Environment and a clone of Ataxxlet originally written in Java.
The goal is to copy or jump your virus to eat up the enemy virus. Kvirus provides a cute interface with hours of fun.
Download (0.30MB)
Added: 2006-12-05 License: Freely Distributable Price:
1053 downloads
PowerFolder for Linux 1.1.0
PowerFolder is a program to synchronize folders over the internet or on a local net. more>>
PowerFolder project consists of a program to synchronize folders over the internet or on a local net. It uses peer-to-peer technology to exchange the files. This means you do not need a hosting server. Every client holds a local copy of the folder.
It can be used to exchange every type of data for example music, photos, own documents or videos. PowerFolder automatically detects changes and synchronizes (configurable) !
- Documentation
- Screenshots
- Frequently asked questions (FAQ)
- Forum (Support and Community)
- Synchronisation profiles
- Team
- PR-Set (Logos, Banners, etc)
Main features:
- File synchronisation between multiple PCs over internet or lan
- Supports multiple languanges
- Offers Private Networking
- Auto-detects changes
- Runs silently in system tray
- Easy-to-use user interface
- Easy installation and update, windows installer available
- Synchronize profiles control how folders get synchronized
- Pure peer-to-peer network. No server required
- MP3/ID3 tag support
- Out-of-Browser start (Java WebStart)
- Built-in compression of up- and downloads (GZIP)
- Link support for downloads like edonkey links
- Cross platfrom compatibility. PowerFolder is written completely in Java
- Automatically detects nodes on local net like windows network
- Intelligent upload / download strategy. Upload can be limited
- Integrated support for dynamic-dns addresses
- Full icon support for folders on windows systems
- Open-source
The main difference between PowerFolder and other Filesharing programs is, that files get automatically downloaded when someone adds new.
People with same interests group together in folders. If anybody has new stuff, he automatically sends it to all folder members.
<<lessIt can be used to exchange every type of data for example music, photos, own documents or videos. PowerFolder automatically detects changes and synchronizes (configurable) !
- Documentation
- Screenshots
- Frequently asked questions (FAQ)
- Forum (Support and Community)
- Synchronisation profiles
- Team
- PR-Set (Logos, Banners, etc)
Main features:
- File synchronisation between multiple PCs over internet or lan
- Supports multiple languanges
- Offers Private Networking
- Auto-detects changes
- Runs silently in system tray
- Easy-to-use user interface
- Easy installation and update, windows installer available
- Synchronize profiles control how folders get synchronized
- Pure peer-to-peer network. No server required
- MP3/ID3 tag support
- Out-of-Browser start (Java WebStart)
- Built-in compression of up- and downloads (GZIP)
- Link support for downloads like edonkey links
- Cross platfrom compatibility. PowerFolder is written completely in Java
- Automatically detects nodes on local net like windows network
- Intelligent upload / download strategy. Upload can be limited
- Integrated support for dynamic-dns addresses
- Full icon support for folders on windows systems
- Open-source
The main difference between PowerFolder and other Filesharing programs is, that files get automatically downloaded when someone adds new.
People with same interests group together in folders. If anybody has new stuff, he automatically sends it to all folder members.
Download (3.4MB)
Added: 2007-01-21 License: GPL (GNU General Public License) Price:
1007 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 for hours together 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