HN user

jshawl

117 karma

https://proof.im/jshawl/on-hn

[ my public key: https://keybase.io/jshawl; my proof: https://keybase.io/jshawl/sigs/5xSMqJqlIRbO0X6XBLVx1wQxrBgluOJxhh_8_lDCPr4 ]

Posts19
Comments56
View on HN

https://gobyexample.com/ was helpful for me to understand what is possible with Go. Visit a topic that seems interesting or completely unfamiliar and try to think of a small exercise that will allow you to practice the topic.

Another thing I did was implement a common tool like `ls` or `tree` or `grep` using go. This will allow you to compare the output and performance of your program against the binaries provided by the OS.

Lastly, there are some really cool libraries out there (see https://charm.sh/) with great communities. Try building something small and ask for feedback in the Discord channel.

Gleam is fantastic! https://gleam.run/ The syntax is familiar but there are several next-level features: - no conditionals (case all the way down) - `use` expressions - pipe operator

It compiles to either erlang or JavaScript, so I was able to jump right into building something fun with a new language.

I previously gave Clojure a try, that was a pretty good fit, but the JVM / ecosystem put me off.

I felt similarly w/ leiningen (too much boilerplate) but was lisp-curious still so gave racket (https://racket-lang.org/) a try and appreciated the batteries included philosophy of the standard library and was inspired to learn more about writing a programming language (also see: https://beautifulracket.com/)

I saw a t-shirt from a local plant nursery that I absolutely loved. The price was $25 USD, and for me it was an instant purchase because I loved the design and wanted to support the business.

This purchase was the highlight of my day, if not the week, and I wear the shirt proudly often.

When I charge for things, I think about how I can create a similar experience: someone paying a few dollars thinking they're getting a great deal and supporting a business they want to see more from.

Meanwhile, if your caching reverse-proxy goes down, you have the option to immediately put a different caching service in front of your site, or temporarily serve static content from your servers directly, and get things working again with no code changes or backend deployments required

I think I'd prefer deploying a new CDN link to updating DNS. "No code changes or backend deployments" makes the assumption that DNS is a manual change (not terraform, etc.)

Deno 1.9 5 years ago

I wish deno files had a different file extension. Editor gets confused often switching between front end typescript and deno typescript.

I churned when Dropbox started removing features and asking for more money. e.g. limits on number of devices, more frequent nags, forcing me to unlink devices that had already been linked. I'm not going to be bullied into being a paying customer.

NPM Was Down 6 years ago

oof just spent a solid 30 minutes trying to debug why I was getting 404s in a docker build. Thanks HN!

My experience with this has been that when teams dissolve, new apis are created on top of the existing apis to avoid making changes to the original api. Debugging a production issue now involves a lot of finger pointing about which API is working correctly, and which one needs "the fix".

I don’t try to fight it. Get up, make a cup of coffee, start my day essentially. About 30 mins in I will feel like I need a nap. So I nap and then wake up at a reasonable hour.

I've been thinking a lot about this Nietzsche quote lately:

You great star, what would your happiness be had you not those for whom you shine?

This has made me question not a lack of internal motivation, but an abundance of external motivation. i.e. examining what ways I am motivated by how others will perceive me.

I am trying to appreciate the "eating straight from the packet" state of mind.

I learned that if I follow the tutorial exactly I don’t care as much about what I am doing. Instead, I’ll swap out file names and functionality to something I’m more interested in working on. The small gap between my project and the tutorial means I have to really think about what I’m doing at each step, and at some point I’ll be able to keep progressing without the tutorial.