Skip to content

Instantly share code, notes, and snippets.

View inkrement's full-sized avatar

Christian Hotz-Behofsits inkrement

View GitHub Profile
@inkrement
inkrement / gist:3887797
Created October 14, 2012 07:48 — forked from felipepodesta/gist:3819131
Try out Laravel 4 pre-release!
Run the following in the terminal.
git clone git://github.com/illuminate/app.git && cd app && composer update
This will download Illuminate (the name of the component set that makes up Laravel 4) into a directory called 'app' and run composer to get all the dependancies.
Of course, it's still heavily in development so it's clearly not finished but you can poke around and see how it works. Enjoy!
@inkrement
inkrement / JavaCandR.sublime-build
Created August 31, 2012 08:49 — forked from DevinClark/JavaCandR.sublime-build
This is a build script for Sublime Text 2 that will compile and run the open java file by simply pressing cmd + B. I am very new at Java so feel free to point out problems with this script. You can just drop this file in the User Packges folder and restar
{
"cmd": ["javac", "$file_name"],
"cmd": ["java", "$file_base_name"],
"working_dir": "${project_path:${folder}}",
"selector": "source.java"
}