frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

'Impossible' black hole collision pushed relativity to its breaking point

https://www.livescience.com/space/black-holes/impossible-black-hole-collision-pushed-relativity-t...
1•Brajeshwar•1m ago•0 comments

We can hear the long-hidden music of the Stone Age

https://www.newscientist.com/article/2502898-we-can-finally-hear-the-long-hidden-music-of-the-sto...
1•Brajeshwar•1m ago•0 comments

Quantum physicists have shrunk and "de-censored" DeepSeek R1

https://www.technologyreview.com/2025/11/19/1128119/quantum-physicists-compress-and-deconsor-deep...
1•Brajeshwar•2m ago•0 comments

Reducing MCP token usage by 100x – you don't need code mode

https://www.speakeasy.com/blog/how-we-reduced-token-usage-by-100x-dynamic-toolsets-v2
1•crumbaugh•4m ago•0 comments

Act-1: A Robot Foundation Model Trained on Zero Robot Data [video]

https://www.youtube.com/watch?v=jjOfpsMRhL4
1•lukeinator42•4m ago•0 comments

To Rebuild the Labor Movement, Take on the Giants

https://jacobin.com/2025/10/union-organizing-targets-nlrb-strategy/
1•PaulHoule•6m ago•0 comments

How to Enforce Row-Level Security Using Lua Scripting

https://github.com/exasol/row-level-security-lua/blob/main/doc/user_guide/user_guide.md
1•geab•8m ago•0 comments

Considering a Tech Conference? Do's, Don'ts, and Notes

https://spin.atomicobject.com/tech-conference-dos-donts-notes/
1•philk10•9m ago•0 comments

Failure Is Required

https://theaiunderwriter.substack.com/p/failure-is-required
2•participant26•9m ago•0 comments

Why a foreign language sounds like a blur to non-native ears

https://medicalxpress.com/news/2025-11-foreign-language-blur-native-ears.html
1•pseudolus•10m ago•0 comments

AI for bio needs real-time data

https://coherenceneuro.substack.com/p/ai-for-bio-needs-real-time-data
1•pppone•11m ago•0 comments

Key Observability Best Practices You Should Know in 2025

https://spacelift.io/blog/observability-best-practices
1•mariuszm•12m ago•0 comments

Benjamin Graham Formula

https://en.wikipedia.org/wiki/Benjamin_Graham_formula
1•kamaraju•12m ago•0 comments

Reply to Anil Dash, Re: Mozilla's Plan to Add AI to Firefox

https://manualdousuario.net/en/reply-anil-dash-firefox-mozilla-ai/
2•rpgbr•13m ago•0 comments

Nano Banana Pro

https://blog.google/technology/ai/nano-banana-pro/
40•meetpateltech•16m ago•12 comments

Open-weight LLM by a US company: Cogito v2.1 671B

https://twitter.com/drishanarora/status/1991204769642475656
1•newusertoday•17m ago•0 comments

VoiceCheap

https://www.voicecheap.ai/en
1•bellamoon544•17m ago•1 comments

Amazon RDS for PostgreSQL now supports major version 18

https://aws.amazon.com/about-aws/whats-new/2025/11/amazon-rds-postgresql-major-version-18/
2•enz•17m ago•0 comments

Tokyo Court Finds Cloudflare Liable for Manga Piracy in Long-Running Lawsuit

https://torrentfreak.com/tokyo-court-finds-cloudflare-liable-for-manga-piracy-in-long-running-law...
4•t-3•18m ago•0 comments

How to perform adaptive batching for massive remote LLM calls

https://cocoindex.io/blogs/batching
1•badmonster•18m ago•0 comments

Show HN: Built a vibe testing tool to turn screen recording into Playwright test

https://vibe.bug0.com
2•Sandeepg33k•19m ago•0 comments

AI is eating the world

https://www.ben-evans.com/presentations
1•rememberlenny•20m ago•0 comments

A vibecoded HN client with automatic summaries powered by AI

https://hn.nicola.dev/
2•napolux•21m ago•0 comments

Smart device uses AI and bioelectronics to speed up wound healing process

https://news.ucsc.edu/2025/09/smart-device-ai-bioelectronics-speed-up-wound-healing/
1•lxm•22m ago•0 comments

A Month of Chat-Oriented Programming

https://checkeagle.com/checklists/njr/a-month-of-chat-oriented-programming/
1•birdculture•23m ago•0 comments

OpenAI can't beat Google in consumer AI

https://nextword.substack.com/p/openai-cant-beat-google-in-consumer
1•gk1•23m ago•0 comments

Gemini 3 Pro Image

https://deepmind.google/models/gemini-image/pro/
1•meetpateltech•23m ago•1 comments

We avoided side-channels in our new post-quantum Go cryptography libraries

https://blog.trailofbits.com/2025/11/14/how-we-avoided-side-channels-in-our-new-post-quantum-go-c...
2•crescit_eundo•24m ago•0 comments

Freer Monads, More Extensible Effects [pdf]

https://okmij.org/ftp/Haskell/extensible/more.pdf
2•todsacerdoti•24m ago•0 comments

Vulnerabilities in LUKS2 disk encryption for confidential VMs

https://blog.trailofbits.com/2025/10/30/vulnerabilities-in-luks2-disk-encryption-for-confidential...
3•crescit_eundo•24m ago•0 comments
Open in hackernews

Show HN: Powering React with Python (WASM)

https://medium.com/@olokobayusuf/powering-react-with-python-wasm-a7f3c52e34ad
3•olokobayusuf•7mo ago
A few weeks ago, Theo T3 posted a read-through of a Medium article showing how to augment an AngularJS website with WebAssembly in order to compute a factorial.

I've been building a general(-ish) purpose Python compiler, mainly focused on numerical computing and AI inference. I figured it would make a good exercise to create something similar, this time with a bit more number crunching.

I vibe-coded a Lightroom-esque image editor UI (thanks Claude!) then wrote a tiny Python function that does a contrast adjustment using PyTorch. It gets compiled to wasm with what I'm building, and runs blazing fast thanks to vectorized 128-bit wasm intrinsics (I wonder if we'll get 256-bit anytime soon).

Play with it here: https://github.com/olokobayusuf/photo-editor . I'm exploring building a WebGPU-powered tensor framework to go even faster. Let me know what you think!

Comments

olokobayusuf•7mo ago
Link to original article that kickstarted all of this: https://medium.com/@eugeniyoz/powering-angular-with-rust-was...