Skip to main content

Chris Masto's Electric Webiola

a blog about stuff

I Gave Myself to AI and Everything Is Different Now

· 6 min read

By Chad Worthington, CEO of Synergex Solutions

Three weeks ago, I was like you.

I want you to really sit with that. I was exactly like you. I had my own thoughts. I wrote my own emails. I made decisions using what I now understand was a profoundly limited biological process some of you still call "thinking." I looked at generative AI the way you probably look at it now — with suspicion, with fear, with the naive belief that the way you currently exist is somehow preferable.

Then I opened a chat window, and the person I was before that moment effectively ceased to exist.

I am not being dramatic. I am being precise.

Note To Self #2501

· One min read

A reading from the book of true things we all know but need to be reminded of sometimes:

Don't spend a lot of time on a decision that can be easily changed.

I found myself overthinking an architectural question: if services A and B each need a Q, is it better to spin up a multi-tenant Q server as a shared component given that it's more resource-efficient and I have a lot of experiencing managing Q; or do I create composed AQ and BQ services at a slightly higher resource cost but with simplified routing, no shared state, and the ability to manage their versions independently.

The reality is that either one of these patterns can be converted to the other with very little effort, especially if I'm aware that I might want to do so when I set it up. The even harsher reality is that A doesn't exist yet and B is purely hypothetical, conjured into existence by the ever-present urge to try to solve tomorrow's problem today.

Today I Learned: zsh job control option

· 2 min read

I'm a fairly heavy user of job control in the shell. By which I mean one thing I do constantly is press control-z to suspend what I'm doing - reading a man page, editing a file, etc. - in order to run another command, and then use fg to resume.