Skip to content

Instantly share code, notes, and snippets.

View aebersold's full-sized avatar

Simon aebersold

View GitHub Profile
@aebersold
aebersold / laravel-cheat-sheet.md
Last active October 13, 2015 16:47
laravel cheat-sheet

Laravel Cheat-Sheet

Common usage

View::share('user', $user); Makes $user available to all views.

URI::segment(1); First segement uf an URL (eg. site.com/de/hello = de).

@adamstac
adamstac / ios-media-queries.sass
Created September 17, 2011 13:58
iOS Media Queries for iPhone/iPod, iPad & Retina and Non-Retina Devices
.ipad-only,
.iphone-only,
.retina-only,
.non-retina-only,
.retina-iphone-only,
.non-retina-iphone-only
display: none
// iPad Only
@media only screen and (device-width: 768px)