shower thought: swap 'is a model' for 'is constructed' and postmodernism suddenly becomes a lot more palatable without losing much of its core message. #philosophynotesfollow
@radiocappy๐งprofilefollow"The impediment to action advances action, what stands in the way becomes the way." - Marcus Aureliuswrote:
One day I would like to see Thailand. That would be nice.
Say more. I've been using it this year "at scale" and it sucks in the way that everything sucks when the whole company starts using it for everything. I haven't used Ansible in over a decade, but am curious what you like about it better.
Ansible just melds with my way of thinking better. I have a really hard time wrapping my head around nested loops in HCL and the overall "ugliness" of the language. Plus, I kind of like being in control of the order things are created.
Do you code in silence or do you listen to music? If so, what kind of music do you prefer? Personally, I prefer Synthwave, vaporwave or the occasional country.
Occasionally silence if I forget to turn on music. Otherwise, death grips and a curated EDM playlist are on rotate. It keeps me moving fast. But also Steve Reich's Music for 18 Musicians albums go hard for long session, distraction-free music
Often silence, for me. I could create a (narrow) bell curve of problems where I listen to music. If I'm doing light enough work then I don't tend to listen to music, probably just out of habit - but as I approach problems of a certain complexity then I do prefer music. I just find that complexity band is narrow and past it I need to turn off the music.
I would like to widen my music band. My preference is usually ambient - I like Gaussian curve and Hiroshi Yoshimura
I've written a small persistent agent wrapper for agent.py. I'm impressed with how well it works. I feel like a CEO issuing global memos to all my agents after reading their status reports.
Huge refactor today, moved from sync SQLite to Worker based, touched 88 files, pre-#AInotesfollow it would have taken a week or so, finished now in ~1:30h. And I wouldnโt have the confidence I have now that it went correct. It went well, though a bug or two might surface, weโll see.
SQLite is embedded in the main thread same as the HTTP server. I noticed some requests dropping and because the queries have become more complex I figured it has to do with SQLite blocking for too much time. Moving it to a Worker makes the DB asynchronous and bypass this problem.