frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Engineers Send Quantum Signals with Standard Internet Protocol

https://blog.seas.upenn.edu/penn-engineers-send-quantum-signals-with-standard-internet-protocol/
1•hhs•45s ago•0 comments

Finding cool CA license plates

https://blog.jonlu.ca/posts/ca-plate-checker
3•jonluca•8m ago•1 comments

Tesla's Europe problem just got even worse

https://www.cnn.com/2025/08/28/cars/tesla-elon-musk-byd-europe-sales
2•breve•12m ago•0 comments

Rupert's Property

https://johncarlosbaez.wordpress.com/2025/08/28/a-polyhedron-without-ruperts-property/
2•robinhouston•15m ago•1 comments

AI Competition explained in 10 minutes [video]

https://www.youtube.com/watch?v=CrJJPlRO9bI
1•lawrenceyan•16m ago•0 comments

Show HN: Security Test Framework – 16 automated security checks

https://www.npmjs.com/package/security-test-framework
1•therealprwilo•16m ago•0 comments

Why Collaborate with XAI?

https://github.com/orgs/community/discussions/171322
1•azkae•17m ago•0 comments

End of the Line?

https://www.thenation.com/article/society/amtrak-public-transit/
1•petethomas•18m ago•0 comments

An eyecare foundation model for clinical assistance

https://www.nature.com/articles/s41591-025-03900-7
1•jameslk•20m ago•0 comments

Widespread Data Theft Targets Salesforce Instances via Salesloft Drift

https://cloud.google.com/blog/topics/threat-intelligence/data-theft-salesforce-instances-via-sale...
2•floren•24m ago•0 comments

Hmpl.js vs. Alpine.js vs. Htmx (Aug. 2025)

https://imgur.com/gallery/G3iIDxd
2•aanthonymax•25m ago•2 comments

Doing Figma Last

https://twitter.com/rjs/status/1961074735904657708
2•tosh•25m ago•0 comments

NX Hack: stolen GitHub credential used to turn private repositories public

https://github.com/nrwl/nx/issues/32522
1•Raed667•28m ago•0 comments

The Evolution: From Atomic Options to Lygos Credit

https://blog.lygos.finance/the-evolution-from-atomic-options-to-lygos-credit/
1•janandonly•29m ago•0 comments

Diablo Game Developers Join Communications Workers of America

https://cwa-union.org/news/releases/hundreds-diablo-game-developers-join-communications-workers-a...
4•ughitsaaron•31m ago•1 comments

Death by PowerPoint: the slide that killed seven people

https://mcdreeamiemusings.com/blog/2019/4/13/gsux1h6bnt8lqjd7w2t2mtvfg81uhx
3•scapecast•33m ago•0 comments

Apple Releases Xcode 26 Beta 7 with GPT-5 Support and Claude Integration

https://www.macrumors.com/2025/08/28/xcode-gpt-5-claude-integration/
3•tosh•33m ago•0 comments

The Dumbest Phone Is Parenting Genius

https://www.theatlantic.com/family/archive/2025/06/landline-kids-smartphone-alternative/683203/
2•SLHamlet•34m ago•0 comments

Why Particle Size Distribution Matters for Optical PM Sensors

https://www.airgradient.com/blog/when-all-pm25-isnt-the-same/
1•ahaucnx•35m ago•0 comments

Eco-driving measures could significantly reduce vehicle emissions

https://techxplore.com/news/2025-08-eco-significantly-vehicle-emissions.html
1•PaulHoule•35m ago•0 comments

In Boston, Trucks Keep Crashing into Low Bridges

https://www.wsj.com/us-news/in-boston-trucks-keep-crashing-into-low-bridges-a18c5c5c
2•bookofjoe•35m ago•2 comments

We Did Margin-Negative Computing Before It Was Cool, and It Was Silly

https://blog.railway.com/p/free-plan
2•dban•36m ago•0 comments

NXSweep: Using the NX AI Exploit Logic for Blue Teaming

https://www.yashthapliyal.com/blog/nxsweep
2•yash1hi•38m ago•0 comments

Linux Foundation Opens the Door to DocumentDB

https://thenewstack.io/linux-foundation-opens-the-door-to-documentdb/
2•CrankyBear•38m ago•0 comments

Sometimes CPU cores are odd – Anubis

https://anubis.techaro.lol/blog/2025/cpu-core-odd/
6•rbanffy•38m ago•1 comments

Starship Will Reduce Bandwidth Launch Cost by Up to 50x

https://research.33fg.com/analysis/starship-will-reduce-bandwidth-launch-cost-by-up-to-50x
3•bilsbie•39m ago•0 comments

Kick Ass – Destroy the Web

https://kickassapp.com
2•nvahalik•39m ago•0 comments

The Authoritarian Checklist

https://donmoynihan.substack.com/p/the-authoritarian-checklist
1•tastyface•39m ago•0 comments

Expert LSP the official language server implementation for Elixir

https://github.com/elixir-lang/expert
5•pimienta•41m ago•0 comments

Top Down versus Bottom Up AI Adoption

https://substack.com/inbox/post/172208814
1•mathattack•42m ago•0 comments
Open in hackernews

Embarrassingly parallel workloads on AWS without the infrastructure overhead

https://docs.coiled.io/examples/batch-gdal.html
3•scj13•6h ago

Comments

scj13•6h ago
Embarrassingly parallel problems are conceptually simple but can be operationally annoying. You want to run the same computation across many inputs, but end up spending more time on infrastructure than the actual problem.

Here's a demo reprojecting 3,000 satellite images with GDAL across 100 EC2 instances in 5 minutes. The interesting part isn't the satellite imagery—it's that there's no Kubernetes YAML or Terraform. Just `--map-over-file` and Coiled handles the distribution without the scheduler overhead (no Dask).

This works for any embarrassingly parallel job: running bash scripts N times, multi-node GPU training, stress-testing APIs, etc. The pattern is always the same: you have a function that works on one input, and you want to apply it to many inputs in parallel.

Compare this to setting up AWS Batch or similar, where you'd typically need to handle job queues, compute environments, IAM roles, and container orchestration just to run a simple parallel workload.

Demo video: https://youtu.be/m3d2I6-EkEQ