Skip to content

Instantly share code, notes, and snippets.

View gil--'s full-sized avatar
πŸ’š
Building @ Shopify

Gil Greenberg gil--

πŸ’š
Building @ Shopify
View GitHub Profile
@kbariotis
kbariotis / resources.md
Last active August 29, 2015 14:11
Magento Related Must Read Stuff for every beginner.
@pburtchaell
pburtchaell / styles.css
Last active February 12, 2025 08:45
VH and VW units can cause issues on iOS devices. To overcome this, create media queries that target the width, height, and orientation of iOS devices.
/**
* VH and VW units can cause issues on iOS devices: http://caniuse.com/#feat=viewport-units
*
* To overcome this, create media queries that target the width, height, and orientation of iOS devices.
* It isn't optimal, but there is really no other way to solve the problem. In this example, I am fixing
* the height of element `.foo` β€”which is a full width and height cover image.
*
* iOS Resolution Quick Reference: http://www.iosres.com/
*/
anonymous
anonymous / index.html
Created September 14, 2014 16:29
A Pen by Marcus Burnette.
<h2>jQuery Filtering Demo</h2>
<p>Just trying to figure out how to best utilize jquery's .filter() function for future projects.</p>
<p>
<button class="f-red">Filter Red Items</button>
<button class="f-blue">Filter Blue Items</button>
<button class="f-green">Filter Green Items</button>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<button class="f-all">All Items</button>
</p>
anonymous
anonymous / INFINITE-SCROLLING-FORM.markdown
Created September 14, 2014 16:27
A Pen by Scott Marshall.
anonymous
anonymous / index.jade
Created September 14, 2014 16:27
A Pen by Artem Zubkov.
canvas#sky
anonymous
anonymous / Test-of-Obelisk.js.markdown
Created September 14, 2014 16:23
A Pen by cx20.
anonymous
anonymous / Search-Box-in-Content-Moves-to-Fixed-Header.markdown
Created September 14, 2014 16:19
A Pen by Chris Coyier.
anonymous
anonymous / CSS-Glitched-Text.markdown
Created September 14, 2014 16:18
A Pen by Chris Coyier.
@w0rm
w0rm / svgstore.html
Created August 6, 2014 15:26
Load combined svg file into body
<html>
<body>
<!-- load combined svg file (with symbols) into body-->
<script>
(function (doc) {
var scripts = doc.getElementsByTagName('script')
var script = scripts[scripts.length - 1]
var xhr = new XMLHttpRequest()
xhr.onload = function () {
@learncodeacademy
learncodeacademy / gist:5f84705f2229f14d758d
Last active July 16, 2024 04:56
Getting Started with Vagrant, SSH & Linux Server Administration