A tweet-sized debugger for visualizing your CSS layouts. Outlines every DOM element on your page a random (valid) CSS hex color.
One-line version to paste in your DevTools
Use $$ if your browser aliases it:
~ 108 byte version
| REMOTE=origin | |
| BRANCH=$(git rev-parse --abbrev-ref HEAD) | |
| BATCH_SIZE=10 | |
| # check if the branch exists on the remote | |
| # if git show-ref --quiet --verify refs/remotes/$REMOTE/$BRANCH; then | |
| # # if so, only push the commits that are not on the remote already | |
| # range=$REMOTE/$BRANCH..HEAD | |
| # else | |
| # # else push all the commits |
| 'use strict'; | |
| exports.handler = (event, context, callback) => { | |
| // Get request and request headers | |
| const request = event.Records[0].cf.request; | |
| const headers = request.headers; | |
| // Configure authentication | |
| const authUser = 'user'; | |
| const authPass = 'pass'; |
| 'An aplle is not a banana'.replace(/a/g, (() => { | |
| var number = 0; | |
| return () => { | |
| return number++; | |
| } | |
| })()) |
| # Windows | |
| Thumbs.db | |
| desktop.ini | |
| # OS X | |
| .DS_Store | |
| .Spotlight-V100 | |
| .Trashes | |
| ._* |
| <?php | |
| /* | |
| Plugin Name: Get Remote Image to Custom Field | |
| */ | |
| add_filter('really_simple_csv_importer_post_saved', function($post) | |
| { | |
| if (is_object($post)) { | |
| // Get the meta data of which key is "image" | |
| $image = $post->image; |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteCond %{REQUEST_FILENAME} !-f [NC] | |
| RewriteRule ^(.*\.(js|css|png|jpe?g|gif|ico)) http://example.com/$1 [NC,P,L] | |
| </IfModule> |
| <?php | |
| $limit = 838860800; | |
| exec('git status ' . __DIR__, $lines); | |
| $lineCount = $currentFileSize = $pushCount = 0; | |
| $sw = false; | |
| foreach ($lines AS $line) { | |
| if ($sw) { | |
| ++$lineCount; | |
| if ($lineCount > 2) { |
| // Alerts | |
| @include alert-variant($background, $border, $text-color); | |
| // Background Variant | |
| @include bg-variant($parent, $color); | |
| // Border Radius | |
| @include border-top-radius($radius); | |
| @include border-right-radius($radius); | |
| @include border-bottom-radius($radius); |