SWITCHED TO LINUX MINT: FIRST IMPRESSIONS
Impressed with Linux Mint so far, even better than Ubuntu!!
JAVA GARBAGE COLLECTION GUIDE
Introduction to Java Garbage Collection
Understanding garbage collection is crucial for Java application performance optimization. This guide covers essential aspects of GC mechanisms and log interpretation.
FIND AND MOVE CONFLICTED FILES WITH BASH
find . | grep “conflicted” | while read a; do mv “$a” /tmp; done
CHANGE MAVEN LOCAL REPO VIA COMMAND LINE
-Dmaven.repo.local=C:\mydir
HIDE ROWS IN GXT GRID WITH CSS: DEVELOPER GUIDE
Attach a GridViewConfig to the grid, overidding with an impl. that returns a css style of ‘hide’.
SPEED UP SPRING TOOL SUITE STARTUP TIME
1/ Disable RSS feeds
Preferences -> Spring -> Dashboard (just delete the entries in the textbox)
LOG4J FORMATTING PATTERN FOR ECLIPSE
log4j.appender.stdout.layout.ConversionPattern=%-5p %40.40c{2} - %m%n