Skip to content

Instantly share code, notes, and snippets.

View JuanArreguin's full-sized avatar

JuanArreguin JuanArreguin

View GitHub Profile
@theRemix
theRemix / README.md
Last active February 28, 2023 14:37
The Holy Grail - Gulp + Sass + LiveReload + Foundation

Gulp + Sass + LiveReload + Foundation

Goals

To have a gulp workflow that with a single process,

  1. watches for any sass changes, then compiles sass source into css
  2. watches for any changes in the public directory, triggers live-reload
  3. serves your static content in public/
@kevinthompson
kevinthompson / person.rb
Created January 19, 2013 18:49
A quick example of how you might work with the Nike+ API. You'll need to get your own access key at https://developer.nike.com/console to test this code.
require 'httparty'
APP_ID = 'nike'
BASE_URL = 'https://api.nike.com'
class Person
def initialize(access_token)
self.access_token = access_token
end