Files
davideisinger.com/content/notes/golang/index.md
David Eisinger 04c6f39af2 Tweak go note
2023-05-12 10:13:20 -04:00

911 B

title, date, draft
title date draft
Golang 2023-05-08T09:54:48-04:00 false

I find Go really compelling, even though it's not super applicable to my job. When evaluating a new tool, I find I'm weirdly biased to things written in Go.

  • I like that it compiles, and have no desire to install someone else's Python
  • It just seems to hit the right balance of productivity, performance, simplicity, safety
  • The language (and the tech built with the language) just seems built to last

Questions to Answer

  • How to organize large(r) codebases
  • Goroutines / concurrency
  • Dev tooling
  • How to read/write JSON

Projects I like

Project Ideas

  • Bookmarking app (Pinboard replacement)
  • Note-taking / journaling app

General Notes