15 Go Subtleties You May Not Already Know
Some of my favorite tidbits from the past year of working with Go.
Some of my favorite tidbits from the past year of working with Go.
Don't believe what you've heard about repetition. Why repeating yourself in code is often better than the alternative.
Technical interviews require soft skills too! Here are a few things that I'll do in a technical round to give myself the best shot at succcess
Implementing the language server protocol opens up a world of possibilities for your engineering team, and it's not as hard as you'd think
Charm's BubbleTea library integrates seamlessly with Cobra and Viper to build powerful command line tooling for developers.
Uber's gomock tool lets you easily mock out functionality from external libraries
Comparing different approaches to modeling state and enforcing schemas across API boundaries
I've recently begun building the first open-source Gitlab client for Neovim. The plugin lets you review and manage merge requests directly within the editor. Here's how it works, what's next for the plugin, and what I've learned along the way
I recently migrated a simple blog site from Gatsby to Astro, and was glad I did. Here are my takeaways.
Debug your applications directly within Neovim using the Debug Adapter Protocol, or DAP.
Neovim is an unbelievably powerful tool, if you know how to use it. Here are some of my personal takeaways from using it as my primary editor for the past few years.
Firebase has a FAAS and database infrastructure that makes scraping websites a breeze.
RabbitMQ is an open-source message broker that can help you decouple your microservices and keep your application fault-tolerant and fast.
Here are some simple steps you can take to optimize your webpack bundle for a production environment.
Docker containers can get bloated very quickly. Put yours on a diet and keep your production build fast and secure.
Websockets are a great way to breathe life into an otherwise stale application. Implement them easily with SocketIO, the defacto standard for NodeJS applications.
Avoid merging unclean commits into your main branch by setting up a basic CI pipeline to test and lint your code.
Ever wanted to deploy an application to production using Amazon's hosted Kubernetes services, EKS? This is for you!
Command line tools can dramatically speed up redundant tasks, letting you focus on the project at hand. Here's how to build one using Javascript.