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
<?php | |
/** | |
* Example Beanstalk json formatting (Git Deployment) | |
* http://support.beanstalkapp.com/article/958-modular-webhooks-json-examples | |
* | |
* { | |
* "trigger": "deploy", | |
* "payload": { | |
* "type": "Deployment", |
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
__DB___%Y-%m-%d_%H-%M-%S |
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
<?php | |
function get_catchphrases() { | |
$catchphrases = array( | |
'progressive-enhancement', | |
'semantic-markup', | |
'mobile-first-development', | |
); | |
$catchphrases = implode(', ', $catchphrases); | |
$catchphrases = substr_replace($catchphrases, ", and ", strrpos($catchphrases, ", "), strlen(", ")); |
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
{ | |
"color_scheme": "Packages/dracula-theme-master/Dracula.tmTheme", | |
"detect_indentation": false, | |
"font_face": "Source Code Pro", | |
"font_size": 14, | |
"highlight_line": true, | |
"ignored_packages": | |
[ | |
"Markdown", | |
"Vintage" |
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
/* Define your base font-size here; most elements will inherit this. */ | |
$font-size-base: 16; | |
$line-height-base: 1.5; | |
$magic: $font-size-base * $line-height-base; /* 24px (This is now our magic number; all subsequent margin-bottoms and line-heights want to be a multiple of this number in order to maintain vertical rhythm.) */ | |
@function strip-unit($num) { | |
@return $num / ($num * 0 + 1); | |
} | |
// By Karl Merkli (https://github.com/Itrulia) |
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
.fix-me.is-fixed { | |
position: fixed; | |
top: 0; | |
z-index: 10; | |
} |
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
/*----------------------- | |
@EQUAL HEIGHT BLOCKS | |
http://css-tricks.com/equal-height-blocks-in-rows/ | |
------------------------*/ | |
namespace.equal_height = (function(){ | |
var settings = { | |
$targets: $(".equal-height-columns"), | |
}; |
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
.tabs-menu { | |
list-style: none; | |
margin: 0; | |
padding: 0; | |
} | |
.tabs-menu__item { | |
text-align: center; | |
} |
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
# ************************************************************ | |
# Thanks to http://statetable.com/ | |
# ************************************************************ | |
# ************************************************************ | |
# Sequel Pro SQL dump | |
# Version 4096 | |
# | |
# http://www.sequelpro.com/ | |
# http://code.google.com/p/sequel-pro/ |
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
/*----------------------- | |
@SCROLLTO | |
required: http://demos.flesler.com/jquery/scrollTo/ | |
optional: https://github.com/gdsmith/jquery.easing | |
------------------------*/ | |
ww.scrollto = (function(){ | |
var settings = { | |
$trigger: $(".btn--scroll"), | |
scroll_rate: 200, |
NewerOlder