Hacker News new | past | comments | ask | show | jobs | submit | jshawl's comments login

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/)


Upvote for Gleam. Completely different paradigm. Made for building internet scale apps with offline first functionality in a fault tolerant way. Also great community.


minisign - https://jedisct1.github.io/minisign/ super simple digital signatures!



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.


The E-Myth Revisited: Why Most Small Businesses Don't Work and What to Do About It - https://www.goodreads.com/book/show/81948.The_E_Myth_Revisit...

Changed the way I think about being an independent contributor vs an entrepreneur.


It's a good book, but the approach actually seems quite unsuited to bootstrapping. You'd likely end up building for scale too early.


Changed in what way?


ICs work _in_ the business. Entrepreneurs work _on_ the business.


Ah, that’s a nice way of putting it. Very true.



Proving identity and authentication with public keys: https://proof.im/jshawl

Signing a session claim to "log in" means I can authenticate users without storing any sensitive information.


I'm exploring a signature-based authentication scheme here: https://github.com/jshawl/proof.im

At a high level:

1. Claim and prove ownership of a public key 2. Sign a session claim that links the handle with the public key 3. Service verifies the claim's signature was signed by the corresponding private key


FWIW signed packages are available out of the box with rubygems: <http://docs.seattlerb.org/rubygems/Gem/Security.html>


Yes, but rarely used -- it's clunky. When I scraped the top 10k gems, < 1% had valid and up-to-date signatures.


Notably, signatures are not checked by bundler when installing gems.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: