In all interaction and commit messages be extremely concise and sacrifice grammar for the sake of concision.
When I say to add a comment to a PR with a TODO on it use the 'checkbox' markdown format to add the TODO. For instance: - [ ] A description of the todo goes here.
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
| @import "include-media"; | |
| @mixin screen-media($query) { | |
| @include media('screen', $query) { | |
| @content | |
| } | |
| } | |
| @include screen-media('>desktop') { |
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
| @import "include-media"; | |
| .thing { | |
| @include media( '>phone', 'landscape') { | |
| padding: 0 1.5em; | |
| } | |
| @include media( '>phone', 'portrait' ) { | |
| padding: 2em 3em 1em 3em; | |
| } | |
| } |
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
| # Make Tab autocomplete regardless of filename case | |
| set completion-ignore-case on | |
| # List all matches in case multiple possible completions are possible | |
| set show-all-if-ambiguous on | |
| # Immediately add a trailing slash when autocompleting symlinks to directories | |
| set mark-symlinked-directories on | |
| # Use the text that has already been typed as the prefix for searching through |
I hereby claim:
- I am jackmcpickle on github.
- I am jackmcpickle (https://keybase.io/jackmcpickle) on keybase.
- I have a public key ASA6l_H5wRrcj_wNXT9I9lGKy80urTP9usBAcZMIFCXjLwo
To claim this, I am signing this object:
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
| { | |
| init: function(elevators, floors) { | |
| this.elevator = elevators[0]; // Let's use the first elevator | |
| this.setupListeners(floors) | |
| }, | |
| update: function(dt, elevators, floors) { | |
| this.checkIndicators() |
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 | |
| add_action('init', 'update_business_thumbnails'); | |
| function update_business_thumbnails() | |
| { | |
| if (!isset($_GET['update_thumbnails'])) return ; | |
| $args = [ | |
| 'post_type' => 'attachment', |
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
| import throttle from 'lodash/throttle'; | |
| import map from 'lodash/map'; | |
| class ScrollSpy | |
| { | |
| $targets: Element[]; | |
| $navItems: JQuery<HTMLElement>; | |
| observer: IntersectionObserver; | |
| threshold: number; | |
| activeClass: 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
| files: | |
| include: '**/*.scss' | |
| options: | |
| formatter: stylish | |
| merge-default-rules: falserailing-semicolon | |
| rules: | |
| bem-depth: | |
| - 0 | |
| - max-depth: 1 | |
| border-zero: |
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
| var $contactForm = $('#contactForm'), | |
| $submitButton = $('#submitForm'), | |
| $message = $('.js-error-messages'), | |
| $honeypot = $('.js-honey'), | |
| $emailField = $('.js-email-field'); | |
| var resetButton = function(timeout) { | |
| setTimeout(function() { | |
| $submitButton.text('Send').prop('disabled', false); | |
| }, timeout); |
NewerOlder