go: reading the manual

2021-11-13

 | 

~1 min read

 | 

187 words

If you’re working in Golang and you want to understand how a function works you can access documentation locally via ’s CLI command: You…

binary traversal: preorder, postorder, and inorder

2021-11-12

 | 

~3 min read

 | 

533 words

There are three standard ways to traverse a binary tree when traversing depth first: Inorder (left, root, right) Preorder (root, left, right…

e notation

2021-11-12

 | 

~1 min read

 | 

109 words

I was working on a toy problem recently which involved something called a “Giga” second. This is 10^9 seconds. Easy enough, we can calculate…

deploying with heroku

2021-11-06

 | 

~1 min read

 | 

187 words

Quick and dirty notes on getting a node app up and running on Heroku: Download the CLI Login to Heroku Push your code up to Heroku — you can…

node middleware: body-parser

2021-11-06

 | 

~1 min read

 | 

93 words

is middleware for servers in Node. It will automatically parse the data in a response or request and can be “used” by the server as desired…

Hi there and thanks for reading! My name's Stephen. I live in Chicago with my wife, Kate, and dog, Finn. Want more? See about and get in touch!