This file contains 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 | |
# |
This file contains 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 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 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 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 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
set session to load script (POSIX file "/Users/tony/Library/Application Support/iTerm/Scripts/Session.scpt") | |
set session's server to "middleman" | |
set session's server_url to "http://0.0.0.0:4567/" | |
set session's server_path to "/Users/tony/Clients/Mulvana/Solutions/Middleman/mulvana" | |
set session's build_path to "/Users/tony/Clients/Mulvana/Solutions/Middleman/mulvana" | |
set session's source_path to "/Users/tony/Clients/Mulvana/Solutions/Middleman/mulvana/source" | |
set session's editor to "/usr/local/bin/mvim" | |
session's start_session() |
This file contains 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
footer { | |
background: yellow; | |
section {background: pink; padding: 4px;} | |
@include grid-span(2, 1); | |
@include layout($gutter: .1) { | |
.section1 { @include float-span(1, 1);} | |
.section2 { @include float-span(1, 2);} | |
.section3 { @include float-span(1, 1);} | |
.section4 { @include float-span(1, 2);} | |
} |
This file contains 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
// Import | |
@import "main"; | |
// Singularity 1.2 Syntax | |
@include sgs-change('debug', true); | |
@include sgs-change('mobile first', true); | |
@include sgs-change('output', 'isolation'); | |
@include sgs-change('include clearfix', true); | |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>My Front-end Demo Project</title> | |
<link rel="stylesheet" href="stylesheets/application.css"> | |
<script type="text/javascript" src="scripts/app.js"></script> | |
</head> |
This file contains 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
local Time12a="\$(date +%H:%M)" | |
local PathShort=":\w" | |
local Username="\u" | |
local Separator="@" | |
local Hostname="\H" | |
# These are the color definitions used by gitprompt.sh | |
GIT_PROMPT_PREFIX="[" # start of the git info string | |
GIT_PROMPT_SUFFIX="]" # the end of the git info string | |
GIT_PROMPT_SEPARATOR="|" # separates each item |
OlderNewer