I hereby claim:
- I am jonnymaceachern on github.
- I am jonnymaceachern (https://keybase.io/jonnymaceachern) on keybase.
- I have a public key whose fingerprint is 092E 2E5F 5D35 1E0B A64B 8E62 EF04 4D24 1316 0AC0
To claim this, I am signing this object:
| body { | |
| &:after { | |
| content: "< #{map-get($grid-breakpoints, sm)} (xs)"; | |
| position: fixed; | |
| z-index: 99999; | |
| padding: 2px 15px; | |
| bottom: 0; | |
| left: 0; | |
| border-top-right-radius: 5px; | |
| background: blue; |
| $('a').attr('target', function() { | |
| if(this.host == location.host) return '_self' | |
| else return '_blank' | |
| }); |
| =SUM(INDIRECT("B1:"&ADDRESS(ROW()-1,COLUMN(),4))) |
| <?php | |
| // Define custom query parameters | |
| $custom_query_args = array( /* Parameters go here */ ); | |
| // Get current page and append to custom query parameters array | |
| $custom_query_args['paged'] = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1; | |
| // Instantiate custom query | |
| $custom_query = new WP_Query( $custom_query_args ); |
I hereby claim:
To claim this, I am signing this object:
| PC::debug( compact('atts', 'item', 'args') ); |
| /** | |
| * Get color based of $colors map | |
| */ | |
| @function color($color) { | |
| @return map-get($colors, $color ); | |
| } | |
| // Usage | |
| .header { |
| /** | |
| * Trim beginning and end of group | |
| */ | |
| @mixin trim-padding { | |
| &:first-of-type { | |
| padding-left: 0; | |
| } | |
| &:last-of-type { | |
| padding-right: 0; |
| git rev-list -n 1 HEAD -- <file_path> | |
| git checkout <deleting_commit>^ -- <file_path> |
| javascript:function removeSubscriptions() { var subs = $('.subscription-box .remove.active'); subs.each( function(i, v) { setTimeout( function() { $(this).trigger('click'); console.log('Unsubscribing... (' + (i+1) + '/' + (subs.length + 1) +')'); }.bind(this), i * 500); }); } removeSubscriptions(); |