find dupes recursively starting at foldername:
fdupes -r foldername
Use the following to get prompted to delete duplicates:
fdupes -r -d foldername
There is also a package called FSlint which has a GUI too.

Technical notes, and other ideas.
find dupes recursively starting at foldername:
fdupes -r foldername
Use the following to get prompted to delete duplicates:
fdupes -r -d foldername
There is also a package called FSlint which has a GUI too.
Use the reserved word, rowid in a SQLite query to return the record number such as:
select rowid, field1, field2 from mytable;
Editor not working, enter key / backspace / delete button not working – quick fix
To resolve the problem you have to go to:
Tools -> Preferences -> Accelerators -> Load Preset -> Default -> OK
You can run the jar from from the current library and point to your desired jre library by the following:
.\jre6\bin\java.exe -jar DesktopApplication1.jar
Running and Deploying Jar Files
Refer: article
Get the current JDK flavor you want, and you will need to start the program the following way:
C:
CD "C:\Java\NetBeans 6.7\NetBeans 6.7\bin"
netbeans.exe --jdkhome "C:\Java\jdk1.6.0_14"
The --jdkhome switch is the "special sauce" that makes it work.
This is an update of previous notes for pre-3.0 versions. It's untested. I recommend you backup the entire folder just in case.
signons3.txt
key3.db
bookmarkbackups\*.json (for import)
cookies.sqlite
Uses a Micro SDHC card
Headphones require special jack
Addresses sync, goes against phone not SIM card
Special Notes:
In case the kernel changes, and you need to re-compile VirtualBox, use the following command in su mode:
/etc/init.d/vboxdrv setup
To easily enable (and enforce) administration over SSL, there are two constants that you can define in your blog's wp-config.php file.
To Force SSL Logins
The constant FORCE_SSL_LOGIN can be set to true to force all logins to happen over SSL.
define('FORCE_SSL_LOGIN', true);
To Force SSL Logins and SSL Admin Access
The constant FORCE_SSL_ADMIN can be set to true to force all logins and all admin sessions to happen over SSL.
define('FORCE_SSL_ADMIN', true);
Which Should I Use?
FORCE_SSL_LOGIN is for when you want to secure logins so that passwords are not sent in the clear, but you still want to allow non-SSL admin sessions (since SSL can be slow).
FORCE_SSL_ADMIN is for when you want to secure logins and the admin area so that both passwords and cookies are never sent in the clear. This is the most secure option.