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
.scenes-wrapper { | |
background-color: red; | |
@include perspective(100000000px); | |
// @include perspective-origin(50% 50%); | |
margin: 0 auto; | |
width: 100%; | |
height: 100%; | |
} | |
.scenes { | |
position: relative; |
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
// Replace extra spaces with single ones and get rid of any spaces at the end and beginning of the string. | |
// http://stackoverflow.com/questions/6163169/replace-multiple-whitespaces-with-single-whitespace-in-javascript-string - Marku Uttula's answer | |
var s = " too much trailing space " | |
s = s.replace(/^(\s*)|(\s*)$/g, '').replace(/\s+/g, ' '); | |
// Determining the base font size, so that we can use em and rem units in JS | |
// TODO - make it foolproof and compatible with browsers, which handle `getComputedStyle()` | |
function getDefaultFontSize() { | |
var el = document.body.appendChild(document.createElement('p')); | |
el.innerHTML = 'size matters'; |
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
14/10/2013 16:28:54.220 Evernote: -[EDAMSyncState read:]: unexpected field ID 5 with type 10. Skipping. | |
14/10/2013 16:28:54.535 Evernote: -[EDAMSyncState read:]: unexpected field ID 5 with type 10. Skipping. | |
14/10/2013 16:30:06.240 applepushserviced: <APSCourier: 0x7fe1c200eca0>: Stream error occurred for <APSTCPStream: 0x7fe1c26005f0>: The operation couldn’t be completed. Connection reset by peer | |
14/10/2013 16:32:07.707 applepushserviced: <APSCourier: 0x7fe1c200eca0>: Stream error occurred for <APSTCPStream: 0x7fe1c26005f0>: The operation couldn’t be completed. Connection reset by peer | |
14/10/2013 16:34:09.175 applepushserviced: <APSCourier: 0x7fe1c200eca0>: Stream error occurred for <APSTCPStream: 0x7fe1c26005f0>: The operation couldn’t be completed. Connection reset by peer | |
14/10/2013 16:36:12.655 applepushserviced: <APSCourier: 0x7fe1c200eca0>: Stream error occurred for <APSTCPStream: 0x7fe1c26005f0>: The operation couldn’t be completed. Connection reset by peer | |
14/10/2013 16:38:16.135 applepushserviced: |
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
Show hidden characters
{ | |
// If set to true, primitives such as "Number" and "String" will be documented as "number" and "string". | |
"jsdocs_lower_case_primitives": false, | |
// indicates whether the @method tag should be added automatically | |
"jsdocs_autoadd_method_tag": true, | |
// Any additional boilerplate tags which should be added to each block. Should be an array of strings. | |
// Note that this only applies when a docblock is opened directly preceding a function. | |
// Tab points can be added by using snippet syntax, eg: ${1:default text} | |
"jsdocs_extra_tags": ["@protected"] | |
} |
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
{ | |
"color_scheme": "Packages/Theme - Default/Tomorrow-Night-Eighties.tmTheme", | |
"folder_exclude_patterns": | |
[ | |
"build", | |
"docs", | |
".*", | |
"acceptance-test/src", | |
"acceptance-test/deps", | |
"acceptance-test/target", |
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
# More great options: http://thomashunter.name/blog/git-colored-output-shortcut-commands-autocompletion-and-bash-prompt/ | |
[color] | |
diff = auto | |
status = auto | |
branch = auto | |
[format] | |
pretty = "Commit: %C(yellow)%H%nAuthor: %C(green)%aN <%aE>%nDate: (%C(red)%ar%Creset) %ai%nSubject: %s%n%n%b" |
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
export PATH="/bin:/sbin:/usr/local/etc:/usr/local/mysql/bin:/usr/bin:usr/local/sbin:/usr/local/bin:$PATH/.rbenv/bin:$HOME" | |
eval "$(rbenv init - --no-rehash)" | |
# Load SSH keys | |
ssh-add | |
[[ -s ~/.bashrc ]] && source ~/.bashrc | |
if [ -f `brew --prefix`/etc/bash_completion ]; then | |
. `brew --prefix`/etc/bash_completion | |
fi |
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
@mixin background_image ($filename) { | |
background-image: image-url(1x/#{$filename}); | |
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), | |
only screen and (-o-min-device-pixel-ratio: 3/2), | |
only screen and (min--moz-device-pixel-ratio: 1.5), | |
only screen and (min-device-pixel-ratio: 1.5) { | |
background-image: image-url(2x/#{$filename}); | |
} | |
} |
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
@mixin animation ($transform: background, $duration: 0.3s, $easing: ease, $delay: 0.3s) { | |
-webkit-transition: $transform $duration $easing $delay; | |
-moz-transition: $transform $duration $easing $delay; | |
-o-transition: $transform $duration $easing $delay; | |
transition: $transform $duration $easing $delay; | |
} |
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
export PATH="/usr/local/bin:/usr/local/mysql/bin:/usr/local/etc:/usr/local/sbin:$PATH" | |
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # This loads RVM into a shell session. | |
# [[ -r $rvm_path/scripts/completion ]] && . $rvm_path/scripts/completion | |
source ~/.git-completion.sh | |
ssh-add | |
function rvm_version { | |
local gemset=$(echo $GEM_HOME | awk -F'@' '{print $2}') |
NewerOlder