Skip to content

Commit

Permalink
created drafts folder, moved essays, and fixed broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Krouse committed Jul 11, 2018
1 parent 6000c35 commit c4bded1
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions 404.md
Expand Up @@ -19,6 +19,22 @@ if (path.length > 0) {
}
}

const moved = {
'/essays/app-idea': '/drafts/app-idea',
'/essays/causal': '/drafts/casual',
'/essays/casual': '/drafts/casual',
'/essays/customer-support': '/drafts/customer-support',
'/essays/invented-or-discovered': '/drafts/invented-or-discovered',
'/essays/learnable-programming': '/drafts/learnable-programming',
'/essays/legal-code': '/drafts/legal-code',
'/essays/power': '/drafts/power',
'/essays/regex-for-humans': '/drafts/regex-for-humans',
'/essays/visual': '/drafts/visual'
}

const movedKey = Object.keys(moved).find(url => window.location.pathname.includes(url))
movedKey && window.location.replace(moved[movedKey])

</script>


Expand Down
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.
2 changes: 2 additions & 0 deletions essays/sissies.md
Expand Up @@ -4,6 +4,8 @@ title: Abstractions are leaky, and for sissies

# Abstractions are leaky, and for sissies

_July 4th, 2018_

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.

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.
Expand Down

0 comments on commit c4bded1

Please sign in to comment.