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 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
| <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> |
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
| <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
| // ---- | |
| // 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
| <?php | |
| /** | |
| * Calculates approximate reading time in minutes. | |
| * | |
| * @param (string) $str | |
| * The string of words to calculate reading time on. | |
| * @param (int) $words_per_minute | |
| * The words per minute to divide the time by. Defaults to 270. | |
| * @return (string) |
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
| /** | |
| * Determines if screen size is within givin breakpoint. | |
| * | |
| * @param (string) op | |
| * The breakpoint size to compare. Supported sizes are medium, large, xlarge | |
| * and giant. | |
| * | |
| * @param (bool) mobileFirst | |
| * Changes comparison from <= to >= if set to false. Deafults to true. |
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
| { | |
| "always_show_minimap_viewport": true, | |
| "bold_folder_labels": true, | |
| "caret_style": "phase", | |
| "close_windows_when_empty": true, | |
| "color_scheme": "Packages/Base16 Color Schemes/base16-flat.dark.tmTheme", | |
| "ensure_newline_at_eof_on_save": true, | |
| "file_exclude_patterns": | |
| [ | |
| "*.komodo*", |
OlderNewer