aspe:keyoxide.org:4DUWGYYUDGLTC72ODGL5OA3KSU
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: Promise.all([import('https://unpkg.com/[email protected]?module'), import('https://unpkg.com/@tehshrike/[email protected]'), ]).then(async ([{ | |
default: Turndown | |
}, { | |
default: Readability | |
}]) => { | |
/* Optional vault name */ | |
const vault = ""; | |
/* Optional folder name such as "Clippings/" */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: Promise.all([import('https://unpkg.com/[email protected]?module'), import('https://unpkg.com/@tehshrike/[email protected]'), ]).then(async ([{ | |
default: Turndown | |
}, { | |
default: Readability | |
}]) => { | |
/* Optional vault name */ | |
const vault = ""; | |
/* Optional folder name such as "Clippings/" */ |
I hereby claim:
- I am pcalves on github.
- I am pcalves (https://keybase.io/pcalves) on keybase.
- I have a public key whose fingerprint is B98C C334 4E0A 40F3 7B32 650C 5196 879F 567F 9302
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.grid { width: auto; } | |
.grid:after { | |
content: ""; | |
display: table; | |
clear: both; | |
} | |
[class*='col-'] { | |
float: left; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# cache-busting via file name | |
# Filename example: | |
# <link rel="stylesheet" href="/css/main.20150310.css"> | |
# h/t Jeremy Keith (https://adactio.com/journal/8504) | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteRule ^(.).(d).(js|css)$ $1.$3 [L] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This gulpfile considers the following directory structure: | |
* | |
* . | |
* ├── app PHP framework stuff | |
* ├── bower_components Front-end libraries | |
* ├── node_modules Gulp & Gulp modules | |
* ├── public Production-ready assets | |
* │ ├── css | |
* │ ├── fonts |
A Pen by Paulo Coelho Alves on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Custom radio buttons & checkboxes with CSS | |
* http://lea.verou.me/css3-secrets/#slide31 | |
*/ | |
/** | |
* These styles are for this dabblet only | |
*/ | |
body { | |
color: #111; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* CSS border experiments | |
*/ | |
.bd { | |
display: inline-block; | |
border-top: 100px solid #e55; | |
border-left: 100px solid #e55; | |
border-right: 100px solid #e55; | |
border-bottom: 100px solid #e55; | |
width: 1px; |
NewerOlder