Jar Jar Links: Ant utility that repackages Java libraries and embeds them in your own distribution

https://code.google.com/p/jarjar/

From the Google Code page:

Jar Jar Links is a utility that makes it easy to repackage Java libraries and embed them into your own distribution. This is useful for two reasons:

  • You can easily ship a single jar file with no external dependencies.
  • You can avoid problems where your library depends on a specific version of a library, which may conflict with the dependencies of another library.

Jar Jar Links includes an Ant task that extends the built-in jar task. The normal zipfileset element is used to embed jar files. A new rule element is added which uses wildcards patterns to rename the embedded class files. Bytecode transformation (via ASM) is used to change references to the renamed classes, and special handling is provided for moving resource files and transforming string literals.

BrowserMap: JavaScript browser features detection library

https://github.com/raducotescu/browsermap

Demo here: http://raducotescu.github.com/browsermap/index.html

From the BrowserMap Github page:

BrowserMap has been donated to the Apache Software Foundation, as a
client-side module of the Apache DeviceMap project. Until the full
integration is completed fixes will be pushed to both code repositories.
Once BrowserMap is fully migrated the development will continue solely on
ASF’s infrastructure.

EditorConfig: Tool to help developers define & maintain consistent coding styles between different editors & IDEs

EditorConfig logo

http://editorconfig.org/


This looks like an alternative to using client-side hooks in your source code repository to format code. EditorConfig plugins exist for the following (No NetBeans!):

  • Atom
  • Code::Blocks
  • Emacs
  • Geany
  • Gedit
  • JetBrain
  • jEdit
  • Notepad++
  • Sublime Text
  • TextMate
  • Vim
  • Visual Studio
  • Browser extension for GitHub

The following core libraries exist for writing new plugins:

  • EditorConfig C Core
  • EditorConfig Java Core
  • EditorConfig Javascript Core
  • EditorConfig Python Core