Looks like a useful tool for prototyping.
Author: braveterry
Link: Rust vs Go
adamantium: Ruby gem that eases creation of immutable objects
Link: Sick of Ruby, dynamic typing, side effects, and basically object-oriented programming
JHades: Tool for troubleshooting Java classpath problems
jHades is a tool that helps troubleshooting classpath problems, see the blog post Demystifying Jar Hell for the main classpath concepts and pitfalls.
- Duplicate classes detection: a command line tool list duplicate classes in a WAR, and allows filtering ‘harmless’ duplicates
- Runtime classpath debugging: a utility class exists to query the classpath at runtime for details on the class loader chain, jars, hidden class files, etc.
- Server startup troubleshooting: jHades works works well in scenarios where the server does not even start
Graphic Novel/Manga: Vinland Saga
http://amazon.com/Vinland-Saga-1-Makoto-Yukimura/dp/1612624200
This is currently one of my favorite manga series. I’ve been buying each volume as soon as it is released. The art and action are quite well done, and I’m enjoying the characters.
RPNCalculator: Reverse Polish Notation (Postfix) Calculator for Windows
http://sourceforge.net/projects/rpncalcnet/
I’ve been using a Reverse Polish Notation calculator since I got an HP48 G calculator in college. This is one of the best I’ve found for Windows. It loads a little slowly, but it has worked well for me.
Link: AngularJS vs. Backbone.js vs. Ember.js
gitignore.io: Create a .gitignore file based on OS, IDE, and Programming Language
http://www.gitignore.io/
I typed in Windows
, Netbeans
, & Java
and this is what came back:
# Created by http://www.gitignore.io
### Windows ###
# Windows image file caches
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Windows Installer files
*.cab
*.msi
*.msm
*.msp
# Windows shortcuts
*.lnk
### NetBeans ###
nbproject/private/
build/
nbbuild/
dist/
nbdist/
nbactions.xml
nb-configuration.xml
### Java ###
*.class
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.ear
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
Link: How To Survive a Ground-Up Rewrite Without Losing Your Sanity
Title is a bit misleading, but the blog post has some good stuff in it.