I hereby claim:
- I am jamespsterling on github.
- I am jsterling (https://keybase.io/jsterling) on keybase.
- I have a public key ASAtl88R7meQtKA3KPd8GH_ethEz4FgyR_fQefVIh4urQwo
To claim this, I am signing this object:
| type RoastLevel = 'light' | 'medium' | 'dark'; | |
| interface Grinder { | |
| /** | |
| * Grind specific amount of beans at numeric grind setting | |
| * | |
| * @param size | |
| * @param amount | |
| * @returns success boolean | |
| */ |
| (function() { | |
| 'use strict'; | |
| const amazonSearchUrls = ['https://www.amazon.com/s', 'https://smile.amazon.com/s'] | |
| const sortQsp = '&s=review-count-rank'; | |
| if (amazonSearchUrls.some(substr => window.location.href.startsWith(substr)) && !window.location.href.includes(sortQsp)) { | |
| console.log(`adding ${sortQsp}`); | |
| window.location.replace(`${window.location.href}${sortQsp}`) | |
| } | |
| })(); |
| (function() { | |
| 'use strict'; | |
| var style = document.createElement('style'); | |
| style.type = 'text/css'; | |
| style.innerHTML = '.hidden { display: none; }'; | |
| document.getElementsByTagName('head')[0].appendChild(style); | |
| function blockAds() { | |
I hereby claim:
To claim this, I am signing this object:
Inspired by https://glass.eleks.com/
A bit off in Safari.
Forked from Sean McCaffery's Pen SVG Animation.
A Pen by James Sterling on CodePen.
A Pen by Mikhail Proniushkin on CodePen.
| <p> | |
| <a class="buttonTeal" href="/workers-comp/group-rating/ac3-form.php">Learn more about our Unemployment<br>Compensation offering</a> | |
| </p> |
| select GROUP_CONCAT(CONCAT("'",COLUMN_NAME,"'")) | |
| from INFORMATION_SCHEMA.COLUMNS | |
| WHERE TABLE_NAME = 'my_table' | |
| AND TABLE_SCHEMA = 'my_schema' | |
| order BY ORDINAL_POSITION |
A Pen by Anonasaurus Rex on CodePen.