Mac OS X and IntelliJ crashes

I’ve struggled in the past several weeks with repeated crashes from IntelliJ IDEA on Mac OS X. I suspect it started right after the upgrade to 1.6.5 and the latest Java VM update. It seems it was cause by a couple of things. Job scheduler crash If your crash report shows something like Thread 55 Crashed: Java: … [...]

IntelliJ's Live Template

If you remember, I like to write my getters this way (long story here) public String getName() { return this.name; } public void setName(String name) { this.name = name; } private String name; I have been doing it manually for a while but it turns out IntelliJ has a super nice feature for that: Live Templating which allows … [...]