frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Klein Bottles and Nuclear Fusion

https://lee-phillips.org/smiet/
1•leephillips•4m ago•0 comments

Restock Holmes

https://restlock-holmes.vercel.app/
1•thatxliner•11m ago•0 comments

How is Affinity now free? (Founder) [video]

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

Study: Good management of aid projects reduces local violence

https://news.mit.edu/2025/study-good-management-aid-projects-reduces-local-violence-1103
2•fleahunter•27m ago•0 comments

Hooked on Sonics: Experimenting with Sound in 19th-Century Popular Science

https://publicdomainreview.org/essay/science-of-sound/
1•Hooke•28m ago•0 comments

Full list of Israeli startup M&As in 2025

https://www.calcalistech.com/ctechnews/article/h1k11bgtije
1•salkahfi•28m ago•3 comments

Digital Twins: the missing pieces we can solve with Machine Learning

https://quantblog.wordpress.com/2025/10/29/digital-twins-the-missing-pieces/
1•jgord•31m ago•1 comments

Show HN: Sudachi Emulator – Fast open-source Switch emulator

https://sudachiemu.org
1•clarionPilot11•39m ago•0 comments

Setting up a simple home router with OpenBSD

https://www.blog.montgomerie.net/posts/2025-10-11-setting-up-a-very-simple-but-ipv6-capable-home-...
4•todsacerdoti•43m ago•0 comments

Programming for Computations: Matlab/Octave

https://link.springer.com/book/10.1007/978-3-319-32452-4
1•teleforce•47m ago•0 comments

Coriolis Carousel: Demo [video]

https://www.youtube.com/watch?v=78Yymgk6qrM
1•Timothee•51m ago•0 comments

Tech giants announce $7B data center, Michigan's first hyperscale campus

https://apnews.com/article/openai-inc-joi-harris-data-management-and-storage-microsoft-corp-oracl...
2•1vuio0pswjnm7•55m ago•1 comments

Mistake-filled legal briefs show the limits of relying on AI tools at work

https://apnews.com/article/artificial-intelligence-tools-work-errors-skills-fddcd0a5c86c20a4748dc...
3•1vuio0pswjnm7•58m ago•0 comments

Machine Scheduler in LLVM – Part II

https://myhsu.xyz/llvm-machine-scheduler-2/
2•matt_d•1h ago•0 comments

Ask HN: How do you design an efficient transacitonal/durable task system?

1•stevefan1999•1h ago•0 comments

Site to Gather Tech News From

https://codigotecno.dev
1•ray_•1h ago•0 comments

Destiny Matrix – Free Life Path Calculator and Analysis

https://destinymatrix.cc/
2•lizbo•1h ago•0 comments

How Our Ancestors Used Moss

https://wabimoss.com/nature-immersion/practical-uses-moss/
2•thunderbong•1h ago•1 comments

Imarena Protocol: A Cryptographically-Auditable Failsafe for LLM Honesty

https://github.com/ApexSignalAndrewRusher/Truth/wiki/Imarena-Protocol
1•ApexSignalAndre•1h ago•0 comments

Writing a DOS Clone in 2019

https://medium.com/@andrewimm/writing-a-dos-clone-in-2019-70eac97ec3e1
1•shakna•1h ago•0 comments

The True Tale of Seattle's Sherlock Holmes

https://www.seattlemet.com/news-and-city-life/2025/09/real-detective-seattle-luke-may
1•rmason•1h ago•0 comments

Parall - Native Hacking for macOS Apps: Isolation and Multi-Instance Support

https://parall.app/
1•IGHOR•1h ago•1 comments

Fountain Pens Are More Popular Than Ever–and Purists Are Fuming

https://www.wsj.com/lifestyle/fountain-pens-chinese-replicas-montblanc-7f4d43d0
3•fortran77•1h ago•2 comments

LAP Coffee commotion puts German view of venture capital under scrutiny

https://www.ft.com/content/2b2bda15-afc2-496e-b48d-944c79d99cbf
2•alephnerd•1h ago•0 comments

You guys need to build more stupid shit

14•gnarbarian•1h ago•7 comments

Has Airbnb reached its peak?

https://www.economist.com/business/2025/11/02/has-airbnb-reached-its-peak
1•salkahfi•1h ago•0 comments

Revival of the Chicago River

https://www.nationalgeographic.com/travel/article/what-to-do-along-the-chicago-river
2•ninju•1h ago•0 comments

Mamdani Has a Point About Rent Control

https://www.theatlantic.com/economy/archive/2025/11/mamdani-housing-rent-control/684790/
1•salkahfi•1h ago•0 comments

Google Earth Gets an AI Chatbot to Help Chart the Climate Crisis

https://www.wired.com/story/google-earth-gemini-ai-chatbot/
1•Brajeshwar•1h ago•0 comments

Why Every Family Needs a Code Word

https://www.wsj.com/tech/personal-tech/why-every-family-needs-a-code-word-e077ab76
1•Brajeshwar•1h ago•0 comments
Open in hackernews

Mnist neural network implemented in pure x86 assembly from scratch

https://github.com/mohammad-ghaderi/mnist-asm-nn
5•mghaderi•11h ago

Comments

mghaderi•11h ago
I implemented a neural network from scratch in x86 assembly (no frameworks, no Python) to recognize handwritten digits from MNIST. Feedback on performance optimizations or next steps is welcome Uses AVX-512 SIMD for parallel float32 ops (~7× faster than NumPy). Runs in a lightweight Debian Slim Docker container. The goal was to understand neural networks at the CPU level.
checker659•11h ago
> ~7× faster than NumPy

Is that on the CPU (not sure if NumPy has a GPU backend)

mghaderi•11h ago
Yes CPU same resources And same implementation