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
| property server : missing value | |
| property server_url : missing value | |
| property server_path : missing value | |
| property build_path : missing value | |
| property source_path : missing value | |
| property editor : missing value | |
| on start_session() | |
| tell application "iTerm" |
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
| class Fun | |
| @@a = 1 | |
| @b = 1 | |
| class << self | |
| attr_accessor :hides | |
| 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
| class Document | |
| @@default_font = :times | |
| end | |
| class Presentation < Document | |
| @@default_font = :nimbus | |
| end | |
| class Resume < Document | |
| @@default_font = :arial |
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
| module B | |
| @@catch | |
| def self.included(base) | |
| class << base | |
| def catch=(hsh) | |
| @@catch = hsh | |
| end | |
| def catch | |
| @@catch |
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
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |
NewerOlder