- 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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
: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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ManageWidgetModalView = Backbone.View.extend({ | |
el: '.modal', | |
events: { | |
'click .decide-later': 'loadNextWidget', | |
'submit form': 'submitWidgetForm' | |
}, | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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"> |
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:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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 |