Related Posts
Google’s Chrome, no extensions? then no go
Please correct me if I’m wrong, but I didn’t read any mention of Browser extensions on the chrome document, I read about plugins (these are more like Flash plugin and what not), but nothing about extensions. This probably means: – No StumbleUpon toolbar 🙁 (I’m a stumbleupon.com addict, I feel crippled with chrome because of […]
Apple Wireless Keyboard
I just got a new Apple Wireless Keyboad. My laptop currently sits atop a Griffin Elevator, this keeps it cool and also helps keep my neck at a healthy angle, something I need given how many hours I spend on the computer. The problem with the Elevator is that after a while, your arms get […]
[SOLVED] Gradle: How to increase the Java Compiler’s available Heap Memory
The documentation is not very clear on what all the available options are… after much Googling and many different attempts finally figured out how to raise the maximum heap of the compiler from within the gradle.build script. [pastacode lang=”java” manual=”apply%20plugin%3A%20%E2%80%98java%E2%80%99%0A%0AcompileJava%20%7B%0A%2F%2Fraise%20heap%0Aoptions.fork%20%3D%20%E2%80%98true%E2%80%99%0Aoptions.forkOptions.with%20%7B%0AmemoryMaximumSize%20%3D%20%E2%80%9C2048m%E2%80%9D%0A%7D%0A%7D” message=”” highlight=”” provider=”manual”/] Update: So I’ve noticed this works great on MacOSX, but it doesn’t […]