Skip to content

Instantly share code, notes, and snippets.

react_devtools_backend.js:2273 Warning: Function components cannot be given refs. Attempts to access this ref will fail. Did you mean to use React.forwardRef()?
Check the render method of `Stack`.
in Button (created by Stack)
in Stack (created by Positioner)
in Positioner (created by ForwardRef(Popover))
in ForwardRef(Popover)
in ForwardRef(Popover) (created by SelectMenu)
in SelectMenu (created by BaseInstallableSelector)
in div (created by Box)

Keybase proof

I hereby claim:

  • I am recurser on github.
  • I am daveperrett (https://keybase.io/daveperrett) on keybase.
  • I have a public key whose fingerprint is 095A A9A1 E658 D4BF A800 CD23 1C81 A90B 496A C7C4

To claim this, I am signing this object:

<!doctype html>
<html>
<head>
<!-- Run in full-screen mode. -->
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- Make the status bar black with white text. -->
<meta name="apple-mobile-web-app-status-bar-style" content="black">
@recurser
recurser / review_widget.js
Created November 21, 2012 12:43
Review a widget, or load the next one
ManageWidgetModalView = Backbone.View.extend({
el: '.modal',
events: {
'click .decide-later': 'loadNextWidget',
'submit form': 'submitWidgetForm'
},
/**
@recurser
recurser / 2011-05-21-hiding-ruby-gem-is-deprecated-with-no-replacement-messages-1
Created October 21, 2012 01:28
Hiding ruby gem 'is deprecated with no replacement' messages 1
> rails server
NOTE: Gem::Specification#default_executable= is deprecated with no replacement. It will be removed on or after 2011-10-01.
Gem::Specification#default_executable= called from /Users/dave/.rvm/gems/ruby-1.9.2-p0@global/specifications/rubygems-update-1.8.2.gemspec:11.
NOTE: Gem::Specification#default_executable= is deprecated with no replacement. It will be removed on or after 2011-10-01.
Gem::Specification#default_executable= called from /Users/dave/.rvm/gems/ruby-1.9.2-p0@rails3/specifications/annotate-models-1.0.4.gemspec:10.
NOTE: Gem::Specification#default_executable= is deprecated with no replacement. It will be removed on or after 2011-10-01.
Gem::Specification#default_executable= called from /Users/dave/.rvm/gems/ruby-1.9.2-p0@rails3/specifications/beefcake-0.3.1.gemspec:10.
NOTE: Gem::Specification#default_executable= is deprecated with no replacement. It will be removed on or after 2011-10-01.
Gem::Specification#default_executable= called from /Users/dave/.rvm/gems/ruby-1.9.2-p0@rails3/s
:tddium:
:test_pattern:
- features/**.feature
- features/**/*.feature
- spec/*_spec.rb
- spec/**/*_spec.rb
# Using custom :tests: for jasmine.
#- spec/javascripts/*_spec.js
#- spec/javascripts/**/*_spec.js
@recurser
recurser / powssl
Created April 30, 2012 20:39 — forked from paulnicholson/powssl
ssl with pow using stud

Instructions

  • Install stud $ brew install https://raw.github.com/paulnicholson/homebrew/master/Library/Formula/stud.rb
  • Download and install the powssl script $ curl https://raw.github.com/gist/2050941/3ea59efe8c7e9013c265313045a9fdda5c653963/powssl > ~/bin/powssl $ chmod +x ~/bin/powssl
  • Run powssl to create development certificate and configure stud.
  • $ powssl
@recurser
recurser / control
Created May 25, 2011 23:59 — forked from arzumy/control
Simple script to start/stop services using launchctl in OSX, with easy to remember service's name.
#!/bin/bash
# usage: control (start|stop) service_shortname
# simple script by @arzumy
# I use this in my .bashrc
#
# alias start='~/scripts/control start '
# alias stop='~/scripts/control stop '
#
# Then I'll just type 'start mysql' to start mysql