I hereby claim:
- I am mauryaratan on github.
- I am mauryaratan (https://keybase.io/mauryaratan) on keybase.
- I have a public key whose fingerprint is F252 EF6D FB8D 11BB 9DCE CC0D 496A 6132 0080 FF1D
To claim this, I am signing this object:
// | |
// SFSymbolDelayStart.swift | |
// VariableSFSymbolAnimation | |
// | |
// Created by Matthew Young on 12/27/22. | |
// | |
import SwiftUI | |
const scrollable = document.querySelectorAll( '.scrollable' ); | |
scrollable.forEach( function( el ) { | |
if ( el.offsetHeight < el.scrollHeight ) { | |
el.classList.add( 'bottom-shadow' ); | |
} | |
el.addEventListener( 'scroll', function( e ) { | |
const scrollHeight = e.target.clientHeight; | |
const scrollPosition = scrollHeight + e.target.scrollTop; |
[{"action":"prevtab","blacklist":false,"exported":true,"key":"a","open":false,"sites":"*mail.google.com*","sitesArray":["*mail.google.com*"]},{"action":"nexttab","blacklist":false,"exported":true,"key":"s","open":false,"sites":"*mail.google.com*","sitesArray":["*mail.google.com*"]},{"action":"newtab","blacklist":false,"exported":true,"key":"t","open":false,"sites":"*mail.google.com*","sitesArray":["*mail.google.com*"]},{"action":"closetab","blacklist":false,"exported":true,"key":"c","open":false,"sites":"*mail.google.com*","sitesArray":["*mail.google.com*"]},{"action":"back","blacklist":false,"exported":true,"key":"z","open":false,"sites":"*mail.google.com*","sitesArray":["*mail.google.com*"]},{"action":"forward","blacklist":false,"exported":true,"key":"x","open":false,"sites":"*mail.google.com*","sitesArray":["*mail.google.com*"]},{"action":"reload","blacklist":false,"exported":true,"key":"r","open":false,"sites":"*mail.google.com*","sitesArray":["*mail.google.com*"]},{"action":"copyurl","blacklist":false,"e |
{ | |
"root": true, | |
"env": { | |
"browser": true, | |
"es6": true | |
}, | |
"plugins": [ | |
"wordpress", | |
"async" | |
], |
// Embassy Suites Amarillo,"550 Buchanan Street, Amarillo, TX 79101","Amarillo, TX",Hilton,Open,226,,,35.207672,-101.8324899 | |
async function fetchAsync(string) { | |
const response = await fetch(ajaxurl, { | |
method: 'POST', | |
headers: { | |
'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8' | |
}, | |
credentials: 'same-origin', |
{ | |
"snippets": [ | |
{ | |
"name": "dataurl.js", | |
"content": "// dataurl.js\n// https://github.com/bgrins/devtools-snippets\n// Print out data URLs for all images / canvases on the page.\n\n((() => {\n\n console.group(\"Data URLs\");\n\n [].forEach.call(document.querySelectorAll(\"img\"), i => {\n const c = document.createElement(\"canvas\");\n const ctx = c.getContext(\"2d\");\n c.width = i.width;\n c.height = i.height;\n\n try {\n ctx.drawImage(i, 0, 0);\n console.log(i, c.toDataURL());\n }\n catch(e) {\n console.log(i, \"No Permission - try opening this image in a new tab and running the snippet again?\", i.src);\n }\n });\n\n [].forEach.call(document.querySelectorAll(\"canvas\"), c => {\n try {\n console.log(c, c.toDataURL());\n }\n catch(e) {\n console.log(c, \"No Permission\");\n }\n });\n\n console.groupEnd(\"Data URLs\");\n\n}))();" | |
}, | |
{ | |
"name": "jqueryify.js", | |
"content": "// jquerify.js\n// https://github.c |
I hereby claim:
To claim this, I am signing this object:
<?php | |
function random_color_value() { | |
return str_pad( dechex( mt_rand( 0, 255 ) ), 2, '0', STR_PAD_LEFT ); | |
} | |
function random_color() { | |
return random_color_value() . random_color_value() . random_color_value(); | |
} |
pagespeed on; | |
# Needs to exist and be writable by nginx. Use tmpfs for best performance. | |
pagespeed FileCachePath /var/ngx_pagespeed_cache; | |
# Ensure requests for pagespeed optimized resources go to the pagespeed handler | |
# and no extraneous headers get set. | |
location ~ "\.pagespeed\.([a-z]\.)?[a-z]{2}\.[^.]{10}\.[^.]+" { | |
add_header "" ""; | |
} |
# Install dependencies | |
# | |
# * checkinstall: package the .deb | |
# * libpcre3, libpcre3-dev: required for HTTP rewrite module | |
# * zlib1g zlib1g-dbg zlib1g-dev: required for HTTP gzip module | |
apt-get install checkinstall libpcre3 libpcre3-dev zlib1g zlib1g-dbg zlib1g-dev && \ | |
OLD_DIR=`pwd` && \ | |
WDIR=~/sources/ && \ | |
OPENSSL_VER=1.0.2 && \ |