Archive for April, 2012

Open Source File Data Recovery Software »

PhotoRec is file data recovery software designed to recover lost files including video, documents and archives from hard disks, CD-ROMs, and lost pictures (thus the Photo Recovery name) from digital camera memory. PhotoRec ignores the file system and goes after the underlying data, so it will still work even if your media’s file system has […]

Java–Sort a Map by Values »

Here is a generic method to sort a Map by its values 1: /** 2: * Sort a map by values 3: * 4: * @param map Unsorted map 5: * @return Sorted map 6: */ 7: public static <K, V extends Comparable<? super V>> Map<K, V> sortByValue(Map<K, V> map) { 8: List<Map.Entry<K, V>> list […]

Windows API Code Pack »

Windows® API Code Pack for Microsoft® .NET Framework provides a source code library that can be used to access some features of Windows 7 and Windows Vista from managed code. These Windows features are not available to developers today in the .NET Framework. The individual features supported in this version (v1.1) of the library are: […]

Open Source .NET Setup Bootstrapper »

dotNetInstaller is a widely used, general-purpose setup bootstrapper for Microsoft Windows 95, 98, 2000, XP, 2003, Vista, 2008, Windows 7 and 8. dotNetInstaller enables the developer to define the application prerequisites and install the correct version(s) of these components in a predictable order based on the processor architecture, user operating system type and language, allow […]

Open Source Java Exe Wrapper »

JSmooth is a Java Executable Wrapper. It creates native Windows launchers (standard .exe) for your java applications. It makes java deployment much smoother and user-friendly, as it is able to find any installed Java VM by itself. When no VM is available, the wrapper can automatically download and install a suitable JVM, or simply display […]