- Information Management: A Proposal - (1989-1990) Tim Berners-Lee
- How Software Comapnies Die - (1995) Orson Scott Card: Originally from Windows Sources: The Magazine for Windows Experts, March 1995
- Cascading Style Sheets - (2005) Håkon Wium Lie
- Out of the Tar Pit - (2006) Ben Mosely, Peter Marks;
- Bitcoin: A Peer-to-Peer Electronic Cash System - (2008) Satoshi Nakamoto
- What Screens Want - (2013) Frank Chimero
This file contains hidden or 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
/* Reasonable default view transition */ | |
@view-transition { | |
navigation: auto; | |
} | |
html { | |
box-sizing: border-box; | |
-moz-text-size-adjust: none; | |
-webkit-text-size-adjust: none; | |
text-size-adjust: none; |
This file contains hidden or 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
const numericalDirection = (arg, n = Number(arg)) => Math.abs(n) / n || 0 | |
export default numericalDirection; |
I hereby claim:
- I am uniqname on github.
- I am uniqname (https://keybase.io/uniqname) on keybase.
- I have a public key whose fingerprint is 4CC2 022E 189D 4A8D AA12 1AEC E307 96BD 29EE 6A01
To claim this, I am signing this object:
This file contains hidden or 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
# top-most EditorConfig file | |
root = true | |
[*] | |
end_of_line = lf | |
insert_final_newline = true | |
charset = utf-8 | |
indent_style = space | |
indent_size = 4 |
This file contains hidden or 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
{ | |
"registry": { | |
"register": "http://bower.ldschurch.org" | |
} | |
} |
There's not a good, simple embeddable REPL for JS out there that I could find. I wanted one for presentations on JavaScript concepts. The developer tools' console would be ideal, but bailing out of my presentation and opening a console brakes the flow. Tools like codepen.io et al. are great, but more overhead and set up than I need. I just want to type JS and show the result. This is a decent first step for my needs.
This file contains hidden or 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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
.full { | |
@each $pos in ("top", 'left', bottom, right) { | |
#{$pos}: 0; | |
} | |
} |
This file contains hidden or 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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
//Media Queries | |
$mq-size--small: 42em; | |
$mq-size--med: 47.5em; | |
$mq-size--large: 56.25em; |
This file contains hidden or 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
// ---- | |
// Sass (v3.4.4) | |
// Compass (v1.0.1) | |
// ---- | |
$positions: (top, right, bottom, left); | |
.stretch { | |
position: absolute; | |
@each $pos in $positions { |
NewerOlder