#Usage
- Launch Automator (Applications > Utilities > Automator)
- Select Utilities from the Library
- Drag "Run AppleScript" into workflow
- Paste and edit the below as appropriate.
###The AppleScript
#Usage
###The AppleScript
| # | |
| # If you haven't already use the command below to add the subl command to terminal | |
| # | |
| # sudo ln -s "/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" /usr/bin/subl | |
| # | |
| # more commands here http://www.sublimetext.com/docs/2/osx_command_line.html | |
| # | |
| subl --project ~/path/to/project/name.sublime-project |
| /* | |
| * Usage: add class of .hover-bypass to all element with | |
| * hover effects that aren't intended for touch | |
| * users | |
| * Credit: Something https://github.com/chrisblackburn wrote | |
| */ | |
| /* Coffee */ | |
| (($) -> |
| .active_admin .cke { | |
| display: inline-block; | |
| } | |
| .active_admin .cke_button_label { | |
| display: none; | |
| padding-left: 3px; | |
| margin-top: 1px; | |
| line-height: 17px; | |
| vertical-align: middle; |
| <div> | |
| <fieldset class="inputs"> | |
| <legend> | |
| <span> | |
| This | |
| </span> | |
| </legend> | |
| <ol> | |
| <!--...--> | |
| </ol> |
| # Feature: HTTP redirects | |
| # Scenario: 301 redirect | |
| # When I visit the path "<old_path>" | |
| # Then I should get a response with status 301 | |
| # And the url path should be "<new_path>" | |
| Then /^I should get a response with status (\d+)$/ do |status| | |
| assert @response.status.should == status | |
| end |
| 👍 U+1F44D Facebook like | |
| 🔎 U+1F50E Search | |
| ✉ U+2709 Email | |
| ☰ U+2630 Menu | |
| ★ U+2605 Rating star | |
| 💬 U+1F4AC Comments | |
| ⌂ U+2302 Home | |
| 🌍 U+1F30D World | |
| 📭 U+1F4ED Inbox - Empty |
| Badge | Description | Free for OSS | Languages |
|---|---|---|---|
| Coveralls | Code Coverage | Yes | Ruby, Python, PHP, Node, C/C++, Java, Scala, Go |
| Gemnasium | Dependancy Monitoring | Yes | Ruby (RubyGems), Node (NPM) |
| Crate | Num of Downloads | ? | Python |
| Brakeman | Security | Yes | RoR |
| Code Climate | Code Review | Yes | Ruby, Javascript |
| Version Badge | Package Version | Yes | Ruby, Python, Node |
| Travis CI | Continuous Integration | Yes | C/C++, Clojure, Erlang, Go, Groovy, Haskell, Java, Jav |
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <title>Nested ol numbering</title> | |
| <style> | |
| ol { | |
| list-style-type: none; | |
| counter-reset: level1; | |
| } | |
| ol li:before { |