Matt Cutts went from Google to the US Digital Service and did some amazing work. Maybe he’s an outlier, but I don’t think so. There are a lot of supremely talented people willing to take a massive pay cut to do good, meaningful work.
“I predict future happiness for Americans if they can prevent the government from wasting the labors of the people under the pretense of taking care of them.“
Where "wasting the labours of the people" seems in reality to mean "subsidizing rural schools so they have the same education standards as urban schools".
Of course the guy you're misquoting also had slaves, so I'm not sure if I give a shit about his predictions for American's happiness.
A lot of these tools show off what a full success backlog looks like, in reality I care significantly more about what failure looks like, debugging, etc.
Ha this is a really good point! I worked with so many different kinds of observability approaches and always fell back to traced logs. This might be part of the reason.
Wake up. Engineers in other countries are just as good as we are. The only reason we don't hire remote is that the business functions here keep the same hours.
You throw unions into the mix and suddenly dealing with the time difference becomes the lesser evil.
Giving up on that treadmill after investing 3 insanely intense years consuming everything about it was the best thing I ever did. Now I write elixir (phoenix liveview), sometimes I write javascript (phoenix hooks), sometimes that javascript uses Alpine. Zero pain.
I have never felt more vindicated understanding HTTP, Hypermedia, and HATEOAS than I have in the last three years.
I've only used Elixir/Phoenix as the backend with Elm as the frontend. If you're familiar with that, can you TL;DR what Phoenix Liveview does differently than a Phoenix/Elm/GraphQL stack?
Liveview nearly eliminates the boundary between backend and frontend. Your forms, inputs, outputs, whatever, just become another GenServer with a few special callbacks. You no longer have to worry about an API and syncing data from client to server. The transport layer becomes invisible
It's not even worth it to talk about GenServer or special callbacks. Any idiot can just think of it as "phx-{binding}" html attribute and "handle_event".
reply