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
| on appIsRunning(appName) | |
| tell application "System Events" to (name of processes) contains appName | |
| end appIsRunning | |
| on shortenUrl(str) | |
| set curl_cmd to "curl -s https://www.googleapis.com/urlshortener/v1/url" | |
| set json to " -H 'Content-Type: application/json' -d '{\"longUrl\": \"" & str & "\"}'" | |
| set grep_cmd to "grep -Eo 'http:\\/\\/goo\\.gl\\/[0-9A-Za-z]*'" | |
| set command to curl_cmd & json & " | " & grep_cmd | |
| do shell script command |
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 'base64' | |
| require 'time' | |
| require 'digest/sha1' | |
| require 'openssl' | |
| require 'net/https' | |
| require 'json' | |
| class ChefAPI | |
| # Public: Gets/Sets the http object. |
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
| def self.parse_config(file) | |
| config = {} | |
| File.open(file).each_line do |line| | |
| line.strip! | |
| # skip lines with comments or blank lines | |
| next if /^\#/.match(line) | |
| next if /^\s*$/.match(line) | |
| # store which group in the config the line belongs to (e.g. [mysqld]) |
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
| --- | |
| gemhome: /home/USERNAME/.gems | |
| gempath: | |
| - /home/USERNAME/.gems | |
| - /usr/lib/ruby/gems/1.8 |
NewerOlder