Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am timraymond on github.
  • I am timraymond (https://keybase.io/timraymond) on keybase.
  • I have a public key whose fingerprint is 638C BA2C E35A 4B25 9419 0AD6 A3B3 91E8 EE65 2349

To claim this, I am signing this object:

@timraymond
timraymond / userscalable_yes.txt
Last active December 31, 2015 10:58
Bookmarklet to re-enable zoom. Useful for sites that annoyingly set userscalable=no without actually optimizing their content for iOS display.
javascript:document.querySelector('meta%5Bname=viewport%5D').setAttribute('content','width=device-width,initial-scale=1.0,maximum-scale=10.0,user-scalable=1');

Mark Bates - Keynote

Needs no introduction. Go watch it. It was an excellent introduction to the entire conference which many people that I talked to afterward enjoyed. I feel like people made an effort to be more outgoing in the hallway after watching his talk.

David Czerneki - Zero Downtime Deploys

@timraymond
timraymond / gist:2048025
Created March 16, 2012 01:10
Sencha Example
Ext.define("app_namespace.model.model_name", {
extends: 'Ext.data.model',
config: {
fields: [
{ name: 'some_identifier', type: 'string' }
]}
})
Ext.define("app_namespace.store.store_name", {
@timraymond
timraymond / desopafy.js
Created January 18, 2012 05:22
Remove SOPA overlay from Wikipedia pages
$("#mw-page-base, #mw-head-base, #content, #mw-head, #mw-panel, #footer").css("display", "inherit");
$("#mw-sopaOverlay").css("display", "none");