HackerTrans
TopNewTrendsCommentsPastAskShowJobs

be_erik

no profile record

Submissions

Sway typeahead command palette for the memory constrained

nilcoast.com
2 points·by be_erik·قبل 15 يومًا·0 comments

Security Analysis of the Official White House iOS App

atomic.computer
6 points·by be_erik·قبل 4 أشهر·0 comments

Justices Strike Down Trump's Tariffs

nytimes.com
3 points·by be_erik·قبل 5 أشهر·1 comments

comments

be_erik
·قبل شهرين·discuss
The history and endurance of vi is impressive. I never thought I would be using the same editor today that I started using in the mid 90s because it was more l33t.

The comments about LLM contributed code seems like a specific axe to grind that otherwise detracts from a nice history lesson.
be_erik
·قبل 5 أشهر·discuss
Ha, this looks like someone took mine and got a real designer to polish it.

https://wthr.cloud
be_erik
·قبل 7 أشهر·discuss
If you're looking to build and install this from source, here's the incantation:

CGO_ENABLED=0 go build -ldflags "-X main.version=dev -X main.commit=$(git rev-parse --short HEAD) -X 'main.buildDate=$(date +%Y-%m-%d)'" -o witr ./cmd/witr

Call me old-fashioned, but if there's an install.sh, I would hope it would prefer the local src over binaries.

Very cool utility! Simple tools like these keep me glued to the terminal. Thank you!
be_erik
·قبل 7 أشهر·discuss
The appeal of GraphQL is that it eliminates the need for a BFF and easily solves service meshing. Over fetching is more of a component design problem than a performance issue.
be_erik
·قبل 8 أشهر·discuss
I use this one pretty often. It’s great. https://chawan.net/
be_erik
·قبل 10 أشهر·discuss
I don’t understand who this is for? I just tried Anthropic’s extension and it feels like writing automated selenium tests.

LLMs interacting with markup is not the best abstraction layer.
be_erik
·قبل 8 سنوات·discuss
Agreed, I think most people miss the point that most protobuf implementations support JSON and/or binary across the wire. We flip an accept flag for the frontend and we get well structured JSON.
be_erik
·قبل 8 سنوات·discuss
We use both, gRPC for backend services and a GraphQL server that aggregates and communicates with those services for the frontend. Because the backend is all described with .proto files its trivial to autogenerate most of the GraphQL server that serves the fronted. Tends to be the best of both worlds, IMO.