Skip to content

Commit 15716a0

Browse files
author
Steve Krouse
committed
created drafts folder, moved essays, and fixed broken links
1 parent 7f23878 commit 15716a0

File tree

11 files changed

+18
-0
lines changed

11 files changed

+18
-0
lines changed

404.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,22 @@ if (path.length > 0) {
1919
}
2020
}
2121

22+
const moved = {
23+
'/essays/app-idea': '/drafts/app-idea',
24+
'/essays/causal': '/drafts/casual',
25+
'/essays/casual': '/drafts/casual',
26+
'/essays/customer-support': '/drafts/customer-support',
27+
'/essays/invented-or-discovered': '/drafts/invented-or-discovered',
28+
'/essays/learnable-programming': '/drafts/learnable-programming',
29+
'/essays/legal-code': '/drafts/legal-code',
30+
'/essays/power': '/drafts/power',
31+
'/essays/regex-for-humans': '/drafts/regex-for-humans',
32+
'/essays/visual': '/drafts/visual'
33+
}
34+
35+
const movedKey = Object.keys(moved).find(url => window.location.pathname.includes(url))
36+
movedKey && window.location.replace(moved[movedKey])
37+
2238
</script>
2339

2440

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

essays/sissies.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ title: Abstractions are leaky, and for sissies
44

55
# Abstractions are leaky, and for sissies
66

7+
_July 4th, 2018_
8+
79
Explaining what I do at parties is a common source of frustration. It's almost impossible with non-programmers. You’d think it’d be easier with my fellow coders, but it’s not by much.
810

911
At a recent party, I was explaining how my goal is to create a programming language for creating front-end interfaces that’ll be better, easier to use than, say, React, Elm, CycleJS, etc.

0 commit comments

Comments
 (0)