I hereby claim:
- I am neutraltone on github.
- I am neutraltone (https://keybase.io/neutraltone) on keybase.
- I have a public key whose fingerprint is 6C03 CA59 F73F 9C34 CDFF BF79 66D7 39E4 DE44 1C2C
To claim this, I am signing this object:
| // placeholder styling | |
| @mixin placeholder($color) { | |
| ::-webkit-input-placeholder { | |
| color: $color; | |
| } | |
| ::-moz-placeholder { | |
| color: $color; | |
| } | |
| :-ms-input-placeholder { | |
| color: $color; |
| "declaration-block-properties-order": [ | |
| 'composes', | |
| 'display', | |
| 'position', | |
| 'top', | |
| 'right', | |
| 'bottom', | |
| 'left', | |
| 'columns', | |
| 'column-gap', |
| gulp.task('sassdev', function() { | |
| gulp.src(src + '/styles/main.scss') | |
| .pipe(sourcemaps.init()) | |
| .pipe(plumber()) | |
| .pipe(sass()) | |
| .pipe(autoprefixer({ browsers: ['> 1%', 'iOS 7'] })) | |
| .pipe(sourcemaps.write()) | |
| .pipe(gulp.dest(dest + '/css')) | |
| .pipe(size({ | |
| showFiles: true |
| /** | |
| * In page anchor header offset | |
| * ---------------------------- | |
| * Check a href for an anchor. If exists, and in document, scroll to it. | |
| * If href argument ommited, assumes context (this) is HTML Element, | |
| * which will be the case when invoked by jQuery after an event | |
| */ | |
| function scroll_if_anchor(href) { | |
| href = typeof(href) == "string" ? href : $(this).attr("href"); |
| { | |
| "repositories": [ | |
| { | |
| "type": "composer", | |
| "url": "https://wpackagist.org" | |
| }, | |
| { | |
| "type": "package", | |
| "package": { | |
| "name": "advanced-custom-fields/advanced-custom-fields-pro", |
I hereby claim:
To claim this, I am signing this object:
| remove_action('wp_head', 'rsd_link'); | |
| remove_action('wp_head', 'wp_generator'); | |
| remove_action('wp_head', 'rel_canonical'); | |
| remove_action('wp_head', 'feed_links'); | |
| remove_action('wp_head', 'index_rel_link'); | |
| remove_action('wp_head', 'wlwmanifest_link'); | |
| remove_action('wp_head', 'feed_links_extra'); | |
| remove_action('wp_head', 'start_post_rel_link'); | |
| remove_action('wp_head', 'wp_shortlink_wp_head'); | |
| remove_action('wp_head', 'parent_post_rel_link'); |
| # Me | |
| set from = "[email protected]" | |
| set realname = "NAME" | |
| # My credentials | |
| # For 2FA issue and application token from: | |
| # https://security.google.com/settings/security/apppasswords | |
| set smtp_url = "smtp://[email protected]@smtp.gmail.com:587/" | |
| set smtp_pass = "password" |
| cd; mkdir .ssl | |
| openssl req -newkey rsa:2048 -x509 -nodes -keyout .ssl/localhost.key -new -out .ssl/localhost.crt -subj /CN=localhost -reqexts SAN -extensions SAN -config <(cat /System/Library/OpenSSL/openssl.cnf <(printf '[SAN]\nsubjectAltName=DNS:localhost')) -sha256 -days 3650 | |
| sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain .ssl/localhost.crt |