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:
<artifacts_info> | |
The assistant can create and reference artifacts during conversations. Artifacts are for substantial, self-contained content that users might modify or reuse, displayed in a separate UI window for clarity. | |
# Good artifacts are... | |
- Substantial content (>15 lines) | |
- Content that the user is likely to modify, iterate on, or take ownership of | |
- Self-contained, complex content that can be understood on its own, without context from the conversation | |
- Content intended for eventual use outside the conversation (e.g., reports, emails, presentations) | |
- Content likely to be referenced or reused multiple times |
I hereby claim:
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"> |
ManageWidgetModalView = Backbone.View.extend({ | |
el: '.modal', | |
events: { | |
'click .decide-later': 'loadNextWidget', | |
'submit form': 'submitWidgetForm' | |
}, | |
/** |
> 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 |
$ brew install https://raw.github.com/paulnicholson/homebrew/master/Library/Formula/stud.rb
$ curl https://raw.github.com/gist/2050941/3ea59efe8c7e9013c265313045a9fdda5c653963/powssl > ~/bin/powssl
$ chmod +x ~/bin/powssl
$ powssl
#!/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 |