0xbkt | 3 months ago | on: Cloudflare Global Network experiencing issues
0xbkt's comments
0xbkt | 1 year ago | on: Ask HN: Startup Devs -What's your biggest pain while managing cloud deployments?
Sounds like a use case for Cadence/Temporal-style fault-oblivious stateful execution with workflows. At last job, we did Unreal Engine deployments with pixel streaming at scale on a huge fleet of GPU servers, and the way we could persist execution state so hassle-free that the code would magically resume at the line right where it got interrupted was so astounding.
0xbkt | 2 years ago | on: Good times create weak men (2019)
0xbkt | 2 years ago | on: Update: The Swedish authorities answered our protocol request
Yes, it seems: https://torrentfreak.com/ovpn-wins-court-battle-after-pirate...
0xbkt | 2 years ago | on: Why is OAuth still hard in 2023?
0xbkt | 2 years ago | on: Ask HN: How do I stop card testing attacks on my Stripe account?
0xbkt | 2 years ago | on: OpenBSD: Viogpu(4), a VirtIO GPU driver, added to -current
0xbkt | 2 years ago | on: static_assert is all you need (no leaks, no UB)
0xbkt | 2 years ago | on: Announcing WCGI: WebAssembly and CGI
0xbkt | 3 years ago | on: Ask HN: Someone is proxy-mirroring my website, can I do anything?
[0] https://developers.cloudflare.com/workers/runtime-apis/reque...
0xbkt | 3 years ago | on: Tell HN: Cloudflare and Scaleway have a peering issue
The path basically transitioned from:
Entry PoP <----> Origin
to:
Entry PoP <----> Tunnel PoP <----> Origin
0xbkt | 3 years ago | on: Ask HN: What is the point of IBM mainframes?
0xbkt | 3 years ago | on: Cloudflare servers don't own IPs anymore so how do they connect to the internet?
0xbkt | 3 years ago | on: Cloudflare servers don't own IPs anymore so how do they connect to the internet?
I don't see this behavior in my setup. I have a server in AMS and connect from IST, but `netstat` reveals a unicast IP address that is routed back to IST.
0xbkt | 3 years ago | on: Workerd: Open-source Cloudflare workers runtime
0xbkt | 3 years ago | on: Pirate Library Mirror: Preserving 7TB of books (that are not in Libgen)
0xbkt | 3 years ago | on: Reimagining front-end web development with htmx and hyperscript
0xbkt | 3 years ago | on: Ask HN: Pros and cons of V8 isolates?
You may want to check out MirageOS[0]. It gives you a library OS with the primitives you say you need, and then all you have to do is import them in your application code as if you are writing your typical OCaml, build the virtual appliance and boot it up anywhere you want.
0xbkt | 3 years ago | on: Painless desktop containers for everyday development
[0] https://code.visualstudio.com/docs/remote/create-dev-contain...
0xbkt | 3 years ago | on: Ask HN: What design and architecture patterns have served you well?
Do you mean that you are fetching data from an internal API and sending server-rendered HTML response to the browser? I always naively thought GitHub worked this way. Build a GraphQL/REST API that exposes all of your system's internals, query/mutate through it and send an HTML response in the "frontend" (Ruby on Rails etc.). Frontend, but in terms of an application server that in turn accesses everything through an internal API.