Skip to content

Instantly share code, notes, and snippets.

@jrr
jrr / smallcam.user.js
Last active May 11, 2020 01:00
Nest Cam Enhancements
// ==UserScript==
// @name Nest Cam Smallerizer
// @namespace https://github.com/jrr
// @version 0.2
// @description make camera more usable in small windows
// @author jrr
// @match https://home.nest.com/camera/*
// @match https://home.nest.com/home/*
// @grant none
// ==/UserScript==
import Ember from 'ember';
export default Ember.Component.extend({
});
@jrr
jrr / EXPMatchers+equalInAnyOrder.h
Created December 21, 2014 05:11
Expecta NSArray-as-NSCountedSet matcher
#import "Expecta.h"
EXPMatcherInterface(equalInAnyOrder, (id expected));
// 1st argument is the name of the matcher function
// 2nd argument is the list of arguments that may be passed in the function
// call.
// Multiple arguments are fine. (e.g. (int foo, float bar))