little cubes

Zach's Blog

  1. Postman is Dead. Long live Bruno

    Integrate example requests into your normal development workflow

  2. Your IDs need better DX

    They can be sortable, selectable, distinguishable, and type safe.

  3. How to Suck Less at Git

    Part 1 - The Git Graph

  4. Correctly Configuring Prettier in VS Code

  5. From the web: TODOs aren’t for doing

    Blogmark
  6. Why software doesn't work anymore

    We deserve better Results

  7. From the web: Error messages for humans

    Blogmark
  8. From the web: The Copilot Delusion

    A counterpoint to the hype

    Blogmark
  9. FNM: a better node version manager

    It automatically changes node versions as you move between projects

  10. From the web: Image alt text is harder than you think

    Blogmark
  11. From the web: The Absolute Minimum Every Software Developer Must Know About Unicode

    Blogmark
  12. From the web: Why using ChatGPT is not bad for the environment

    Blogmark
  13. From the web: The role of developer skills in agentic coding

    Blogmark
  14. Keeping git history when combining multiple repos into a monorepo

  15. 6 Slack Habits That Make You a Better Person

    If you ever find yourself at some pearly gates, you'll thank me

  16. Full-stack Engineering is a Lie

    A case for engineering specialization

  17. A smarter cd command

    A tool called zoxide will improve your whole terminal experience

  18. You should version control your dot files

    You know the ones, all those config files sitting in your home directory

  19. Filling out the same form over & over again

    With a Chrome extension called Autofill

  20. How to stop using so many optional properties in your React TypeScript props

    Using TypeScript unions to define relationships between props

  21. How to interactively rebase git merge commits

    The easiest way to rearrange merge-commit pull requests

  22. Death to Default Exports!

    Why you should go right now and delete every "default" from your codebase

  23. I recreated my blog with Astro.js

    About the ups and downs of switching my Next.js blog over to Astro

  24. How I setup a new Mac

    The perfect terminal, OS settings to build better apps, best Mac productivity apps, & more!

  25. When to use each JavaScript iteration method

    And a practical guide to the reduce() function

  26. How to make your app faster with React's key prop

    A puppy dies every time you set key={index}

  27. I quit LastPass and moved to 1Password after 10 years

    And here's why

  28. How to test TypeScript type definitions with Jest

    You can add tests for your static TS types right next to your regular Jest tests

  29. To squash or not to squash?

    Which merge strategy should your team use for PRs?

  30. Strongly typing a React "component" prop

    Allowing customization of the root node of a React component & maintaining correct prop typing

  31. What I learned from publishing a Svelte library

    The highs, the lows, the lessons learned

  32. What does the isolation CSS property do?

    A little CSS magic that will improve your use of z-index

  33. Deploying a Node.js server that uses websockets

    Websockets are really cool for instances when you need real time communication between your users

  34. Why you should stop using git pull

    ...in its default form

  35. Make Rebasing Faster...unix style

    An update to an old post that only worked on Windows

  36. 8 JavaScript Testing Mistakes to Avoid

    In no particular order

  37. Better Next.js SSR with React Query

    How to use React Query to server side render in Next.js without code duplication

  38. Is flying on Spirit Airlines worth it?

  39. How to write better commit messages

    You writing "fixed" is hurting your whole team

  40. Why you should stop using Git's default text editor

    Use the text editor you're most comfortable with

  41. New git commands to replace 'checkout'

    Git somewhat recently introduced two new commands, switch and restore

  42. How to use Gremlin Cosmos DB with Azure Functions

    The story that Microsoft docs, for some reason, refuse to tell you

  43. How to get started with Azure Functions in Node.js

    What I've learned from my confusing initial experience setting up Azure Functions in JavaScript

  44. Online Security for the Normal Person, Part 1

    Using a password manager

  45. Git 101 - The Log

    This post is the first installment of what I hope to be a comprehensive explanation of the most effective git strategies and workflows

  46. Building an IoC container in C#

    The design and implementation of an Inversion of Control container in C#

  47. Making rebasing faster

    Do you find yourself running "git rebase -i head~N" a lot?

  48. A Shortcut For Git (on Windows)

    What are the three most common letters you type when using git? 'g-i-t'. What if you could reduce that by two thirds?

  49. Moving a branch pointer in Git

    My struggles with a seemingly simple task

  50. iOS View Controller Variable Initialization

    Inside of a view controller, how do I initialize one variable to the value of another?

  51. iOS UI Popover Controller

    What is a UIPopoverController and when should you use it?

  52. iOS Nav Controllers

    When a navigation controller is used to transition the user to a different view where they need to make a selection, how can this selection data be transferred back to the main view?

  53. iOS Data Storage

    What is the preferred way to store static data when building an iOS application?

  54. The Modern Switch Statement

    Why do most languages still require breaks in a switch statement? Is Swift the beginning of the end for these break statements?

  55. What's the best way to create a UI in iOS?

    There are at least three completely different ways to create a UI for an iOS app.