git checkout -t origin/my_remote_branch
  
    
      This file contains hidden or 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
    
  
  
    
  | mysqldump -u localuname -plocalpwd localdbname | mysql -u remoteuname -premotepwd --host=remotehost -C remotedbname | 
  
    
      This file contains hidden or 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
    
  
  
    
  | require 'mandrill' | |
| m = Mandrill::API.new | |
| message = { | |
| :subject => "Hello from the Mandrill API", | |
| :from_name => "Your name", | 
  
    
      This file contains hidden or 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
    
  
  
    
  | <script> | |
| Modernizr.load({ | |
| test: Modernizr.mq('only all'), | |
| nope: 'path_to_respond.js' | |
| }); | |
| </script> | 
  
    
      This file contains hidden or 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
    
  
  
    
  | (ns clj-sauce.core | |
| (:require | |
| [clj-webdriver.remote.server :as rs] | |
| [clj-webdriver.taxi :as taxi] | |
| [clj-webdriver.firefox :as ff])) | |
| (defn init-grid | |
| "Initializes the grid code" | |
| [port cred spec] | 
  
    
      This file contains hidden or 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
    
  
  
    
  | var App = App || {}; | 
  
    
      This file contains hidden or 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
    
  
  
    
  | // helper to create proper asset paths if an asset host is configured | |
| App.assets = { | |
| assets : { | |
| <% AssetsUtil.images.each do |img| %> | |
| "<%= img %>" : "<%= asset_path(img) %>", | |
| <% end %> | |
| }, | |
  
    
      This file contains hidden or 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
    
  
  
    
  | (use 'overtone.live) | |
| (use 'overtone.inst.sampled-piano) | |
| ; arpeggiate-chord: | |
| ; | |
| ; Arpeggiate a given chord. | |
| ; | |
| ; instrument - Some sort of instrument function. | |
| ; a-chord - List of midi nums. | |
| ; spacing - Spacing between notes in milliseconds. | 
  
    
      This file contains hidden or 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
    
  
  
    
  | (function(){var a=document.createElement("script");a.src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.js";a.type="text/javascript";document.getElementsByTagName("head")[0].appendChild(a);})() | 
  
    
      This file contains hidden or 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
    
  
  
    
  | ; Just playing around with stuff from the overtone wiki. | |
| ; An endless minor blues. | |
| (use 'overtone.live) | |
| (use 'overtone.inst.sampled-piano) | |
| (defn play-chord [a-chord] | |
| (doseq [note a-chord] (sampled-piano note))) |