Skip to content

Instantly share code, notes, and snippets.

@mgilberties
mgilberties / bootstrap_media_queries_mobile_first.css
Created June 4, 2014 11:50
Media Queries - For all standard devices - Extracted from Bootstrap 3.0
/*========== Mobile First Method ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
}
/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
@mgilberties
mgilberties / Cache Images - SEO
Created September 30, 2014 19:46
Set Mod_Expires for SEO - Caches Images
<IfModule mod_expires.c>
ExpiresActive on
ExpiresByType image/jpg "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
</IfModule>
@mgilberties
mgilberties / Laravel-blade-form-helpers.php
Created September 19, 2017 10:46
Laravel Blade Form Helpers
// Delete
{{ method_field('DELETE') }}
// PUT
{{ method_field('PUT') }}
// XSRF Token
{{ csrf_field() }}