Skip to content

Instantly share code, notes, and snippets.

Day 1

May 27, 2015

Microsoft Developer Advocate for Internet Explorer. Contributing Editor to Smashing Mag.

Woah, You Can Test IE / Microsoft Edge on a Mac & Linux?

How can I know developers pain points without working in the same environment as developers. That's why I use a Mac.

@thefoxis
thefoxis / jsfest-slides.md
Last active September 22, 2015 23:24
Slides from JavaScript Fest individual events in Oakland, 7th-13th Dec, 2014.
@tdieterich-bb
tdieterich-bb / getProductAvailability
Last active August 29, 2015 14:09
NodeJS compatible example that allows a search for a product by keyword, and provide product availability in stores near the zip code and radius.
/*jslint node:true*/
'use strict';
var _ = require('lodash'),
bluebird = require('bluebird'),
request = bluebird.promisifyAll(require('request')),
baseUrl = 'http://api.remix.bestbuy.com',
compiled = _.template('(search=${searchTerm})+stores(area(${zipCode},${radius}))'),
defaults = {
searchTerm: 'ipad',