frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

1•arkensaw•10s ago

Metasearch: A self-hosted metasearch engine

https://github.com/tiagozip/metasearch
1•mrunix•19s ago•0 comments

Why AI Problems Are Becoming Philosophical Problems

https://kunyuan.substack.com/p/07concept-entrywhy-ai-problems-are
1•hufdr•1m ago•0 comments

ggsql 0.4.1: new release adds spatial plotting and in-layer aggregation

https://opensource.posit.co/blog/2026-06-23_ggsql_0_4_1/
1•thomasp85•1m ago•0 comments

Feedback on the logo for my programming language, Lopo

https://github.com/dominexmacedon-docs/lopo-docs/blob/main/lopo.png
1•dominex•4m ago•0 comments

Wlog: Claude Code token/cost/tool dashboard, single binary, no Grafana

https://github.com/openwong2kim/wlog
1•wong2kim•5m ago•0 comments

Watch me build out an 80s style BBS over SSH

1•buffer_overlord•9m ago•0 comments

A1 Road Collision Density Visualisation

https://visquill.com/gallery/uk-a1
1•zeristor•9m ago•0 comments

Show HN: Algorithm-free video hosting that doesn't recompress your master

https://longplayplatform.com/
1•longplay•9m ago•0 comments

The Startup Graveyard – what killed 16 startups

https://kasspian.com/graveyard
2•izhonline•10m ago•1 comments

Modellot – Plain language in, ODCS data contracts out (EU Data Act compliant)

https://www.modellot.com/
1•sasanin•12m ago•0 comments

Semantic Search in Under 3MB

https://blog.lukesalamone.com/posts/creating-tiny-semantic-search/
1•salamo•12m ago•0 comments

Show HN: Describe a research topic, get a daily-updated ArXiv/S2 dataset

https://fineset.io
1•dangerlego5•13m ago•0 comments

What's in America's Code?

https://www.boozallen.com/expertise/cybersecurity/whats-in-americas-code.html
1•ironyman•17m ago•0 comments

Show HN: Enigma Simulator – Encrypt Like WWII

https://enigma-simulator.waibsite.app/
2•dreamcin•22m ago•0 comments

Change 'arxiv' to 'autoarxiv' in URL to run agent on any paper

https://digg.com/tech/m9r4hegw
2•weinzierl•23m ago•0 comments

The Traditional Vi

https://ex-vi.sourceforge.net/
2•exvi•24m ago•0 comments

Gemini models increasingly stucking in thinking loop

3•StizzurpXDD•24m ago•4 comments

Reject Agility, Embrace Specification

https://lewiscampbell.tech/blog/260622.html
2•LAC-Tech•26m ago•0 comments

vilearn – an interactive vi tutorial

https://git.sr.ht/~libele/vilearn
1•exvi•26m ago•0 comments

Microsoft accidentally kills epic Outlook email threads

https://www.theregister.com/personal-tech/2026/06/22/microsoft-accidentally-kills-epic-outlook-em...
1•01-_-•27m ago•0 comments

Tencent Is Said to Mull Exits from Game Studios Like Marvelous

https://www.bloomberg.com/news/articles/2026-06-23/tencent-in-talks-to-offload-marvelous-and-othe...
2•01-_-•27m ago•0 comments

Building Blocks of GenAI Product Evaluation

https://yinghonglan.substack.com/p/building-blocks-of-genai-product
1•rented_mule•27m ago•0 comments

Will Apple Pull a SpaceX?

https://hitesh.in/2026/apple-ai-inference-silicon/
3•antrix•28m ago•1 comments

PDFWix Free online PDF and document conversion Tool

2•PDFWix•34m ago•0 comments

Why Bulletproof React Became the Most Popular React Architecture on GitHub

https://jsdev.space/bulletproof-react-architecture-guide/
1•javatuts•36m ago•0 comments

We Are Witnessing the Slow Death of the Prestige Career

https://www.theguardian.com/commentisfree/2026/jun/22/consulting-ai-prestige-careers
3•mindcrime•38m ago•0 comments

Manticore Search 27.1.5: Auth, sharding, conversational&faster vector search

https://medium.com/@s_nikolaev/manticore-search-27-1-5-5fe42cbc5787
1•snikolaev•39m ago•0 comments

Wrst – Build smartwatch apps with React and TypeScript

https://www.wrst.dev/
1•karolbisztyga•41m ago•0 comments

Smoobu website builder suffers from bad UX, I used their API instead

https://waldo.vanderlore.de/blog/str-booking-guide/
1•waldov•42m 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•1y 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•1y ago
Link to original article that kickstarted all of this: https://medium.com/@eugeniyoz/powering-angular-with-rust-was...