start new:
tmux
start new with session name:
tmux new -s myname
| <?xml version="1.0"?> | |
| <root> | |
| <item> | |
| <name>Map Function keys to match Apple</name> | |
| <identifier>private.itunes_fkeys</identifier> | |
| <autogen>__KeyToConsumer__ KeyCode::F1, ConsumerKeyCode::BRIGHTNESS_DOWN</autogen> | |
| <autogen>__KeyToConsumer__ KeyCode::F2, ConsumerKeyCode::BRIGHTNESS_UP</autogen> | |
| <autogen>__KeyToKey__ KeyCode::F3, KeyCode::EXPOSE_ALL</autogen> | |
| <autogen>__KeyToKey__ KeyCode::F4, KeyCode::LAUNCHPAD</autogen> | |
| <autogen>__KeyToConsumer__ KeyCode::F5, ConsumerKeyCode::KEYBOARDLIGHT_LOW</autogen> |
| def view_css | |
| path = "views/#{params[:controller]}/#{params[:action]}" | |
| stylesheet_link_tag(path) unless Rails.application.assets.find_asset(path).nil? | |
| end |
This list is based on aliases_spec.rb.
You can see also Module: RSpec::Matchers API.
| matcher | aliased to | description |
|---|---|---|
| a_truthy_value | be_truthy | a truthy value |
| a_falsey_value | be_falsey | a falsey value |
| be_falsy | be_falsey | be falsy |
| a_falsy_value | be_falsey | a falsy value |
| import sublime, sublime_plugin | |
| import os | |
| class DetectFileTypeCommand(sublime_plugin.EventListener): | |
| """ Detects current file type if the file's extension isn't conclusive """ | |
| """ Modified for Ruby on Rails and Sublime Text 2 """ | |
| """ Original pastie here: http://pastie.org/private/kz8gtts0cjcvkec0d4quqa """ | |
| def on_load(self, view): | |
| filename = view.file_name() |
| <div data-replace="item"> | |
| PARTIAL 1: <span data-bind="item.name"></span> | |
| </div> |
| module StaticMapHelper | |
| def static_map_for(location, options = {}) | |
| params = { | |
| :center => [location.lat, location.lng].join(","), | |
| :zoom => 15, | |
| :size => "300x300", | |
| :markers => [location.lat, location.lng].join(","), | |
| :sensor => true | |
| }.merge(options) |