This gist has graduated to it's own project!
https://github.com/Chronicle-Studio/drbuild
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
// ---- | |
// libsass (v2.0.0) | |
// ---- | |
%unexpected { | |
display: block; | |
} |
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
<ol> | |
<li><a href="#">Plain link</a></li> | |
<li><a class="button" href="#">Button</a></li> | |
<li><a class="button button--primary" href="#">Button primary</a></li> | |
<li><a class="button button--primary button--open" href="#">Button primary open</a></li> | |
<li><a class="button button--secondary" href="#">Button secondary</a></li> | |
<li><a class="button button--secondary button--open" href="#">Button secondary open</a></li> | |
</ol> |
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
# | |
# Dynamic Shared Object (DSO) Support | |
# | |
# To be able to use the functionality of a module which was built as a DSO you | |
# have to place corresponding `LoadModule' lines at this location so the | |
# directives contained in it are actually available _before_ they are used. | |
# Statically compiled modules (those listed by `httpd -l') do not need | |
# to be loaded here. | |
# | |
# Example: |
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
<div class="section-2"> | |
<section class="container"> | |
<div class="row"> | |
<div class="col">text</div> | |
<div class="col">text</div> | |
<div class="col">text</div> | |
<div class="col">text</div> | |
</div> | |
</section> |
I like to work using a separate tmux session for each active project/folder that I'm juggling. This script will either create or attach to a project based on it's name, using fasd to jump to the directory directly. The project will be named based on the basename of the folder, for easy switching using TMUX-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
[ | |
{ "keys": ["ctrl+/", "\""], "command": "chain", "args": { | |
"commands": [ | |
["create_pane", {"direction": "down"}], | |
["travel_to_pane", {"direction": "down"}] | |
]} | |
}, | |
{ "keys": ["ctrl+/", "%"], "command": "chain", "args": { | |
"commands": [ | |
["create_pane", {"direction": "right"}], |
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 | |
/** | |
* Returns an array of function names in a file. | |
* | |
* @param (string) $file | |
* The path to the file. | |
* | |
* @param (bool) $sort | |
* If TRUE, sorts results by funciton name. |
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
/script install beep.pl | |
/script install allquery.py | |
/script install buffers.pl | |
/script install text_item.py | |
/script install highmon.pl | |
/set plugins.var.perl.highmon.alignment "nchannel" | |
/script install iset |
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
serialize_precision = 100 | |
detect_unicode = Off | |
max_execution_time = 3000 | |
max_input_time = 6000 | |
memory_limit = 2024M | |
error_log = /var/log/php55/error.log |