frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Tim Gowers: What sort of maths are LLMs good at?

https://gowers.wordpress.com/2026/08/12/what-sort-of-maths-are-llms-good-at/
59•ColinWright•1h ago•6 comments

Show HN: Woxi - Open-source Mathematica / Wolfram Language reimplementation

https://woxi.ad-si.com
47•adius•1h ago•1 comments

LinkedIn CringeBot 3000

https://www.cringebot3000.com/
229•theanonymousone•4h ago•86 comments

Facebook is paying controversial creators to produce rage-bait content

https://www.abc.net.au/news/2026-08-06/ragebait-how-facebook-is-paying-controversial-creators/106...
107•robtherobber•1h ago•49 comments

Dutch Train Map Simulator

https://spoorkaart.zaza.dev
42•zazaalaza•2h ago•20 comments

High-Res Photo Shows Sand-Capped Butte Rising from Mars Plain of Polygons

https://petapixel.com/2026/08/04/amazing-high-res-photo-shows-a-butte-rising-from-mars/
13•bookofjoe•6d ago•1 comments

The hardest working font in Manhattan (2025)

https://aresluna.org/the-hardest-working-font-in-manhattan/
227•dcminter•5d ago•40 comments

Compression is prediction

https://ngrok.com/blog/compression-is-prediction
550•nikolay•15h ago•224 comments

Worms: The Future of Yesterday's Worms Today

https://worm.net/
62•doener•4d ago•21 comments

Launch HN: Discovered Materials (YC P26) – AI agents to discover new materials

https://discoveredmaterials.com/research/
20•advaith08•3h ago•6 comments

WorldClaw Agentic 3D open-world generation at scale

https://tencent-hunyuan.github.io/Hunyuan3D-WorldClaw/
233•EwanG•13h ago•72 comments

llama.cpp

https://llama.app
250•kristianpaul•6h ago•111 comments

A shell exclamation mark is not for yelling. Be lazy

https://refp.se/articles/your-shell-and-the-lazy-exclamation-mark
92•refp•5d ago•39 comments

Stealing Reasoning Traces from Proprietary LLM APIs

https://stolen-thoughts.com/
629•quantumgarbage•21h ago•284 comments

OpenAI’s head of ethics leaves less than a year after joining

https://www.ft.com/content/e49dfb75-f841-4466-a577-f7aaff8779a0
451•ilamont•22h ago•429 comments

Nvidia Nemotron 3.5 Lightning and NeMo Switchyard

https://blogs.nvidia.com/blog/nemotron-lightning-switchyard-rtx-dgx/
234•droidjj•15h ago•122 comments

Mojo 1.0

https://www.modular.com/blog/modular-26-5-mojo-1-0-is-here
392•dayanruben•18h ago•202 comments

Newfoundland has a hard bread shortage, but why do they eat it?

https://www.cbc.ca/news/canada/newfoundland-labrador/nl-hard-bread-history-shortage-9.7299276
19•empressplay•2d ago•19 comments

The Human Is the Loop

https://brentfitzgerald.com/posts/the-human-is-the-loop/
120•burnto•8h ago•58 comments

Grok Bot

https://x.ai/bot
299•rvz•17h ago•262 comments

DARPA heavy lift challenge ends with winner at a 3.84:1 payload to weight ratio

https://dronexl.co/2026/08/10/darpa-lift-challenge-results-avidrone/
47•daau•7h ago•31 comments

The lifesaving secret hidden inside a horseshoe crab's blue blood

https://whdh.com/news/the-lifesaving-secret-hidden-inside-a-horseshoe-crabs-blue-blood-and-the-ra...
89•andsoitis•9h ago•25 comments

Show HN: iPhone app takes simultaneous images from 2 lenses, fuses into 1 photo

https://photosynthesis.camera
293•sajomes•3d ago•272 comments

Making holograms with a pen plotter

https://blog.jordan.matelsky.com/Penplotter-holography/
167•DemiGuru•16h ago•17 comments

Retire the Abstractions

https://hazyresearch.stanford.edu/blog/2026-08-05-retire-the-abstractions
55•convexstrictly•6d ago•57 comments

London Underground begins scanning passengers' faces

https://www.btp.police.uk/news/btp/news/england/btp-expands-live-facial-recognition-lfr-trial-int...
351•BlueBerry2001•1d ago•432 comments

Show HN: Tamron Lens Utility Alternative on Linux

https://github.com/yikerman/tamron-lens-control
72•xiaoyu2006•4d ago•7 comments

Jolt: Clojure compiler implemented with Chez Scheme

https://jolt-lang.github.io
202•mark_l_watson•3d ago•67 comments

Flatworms, Ion Channels, and Burning Mouths

https://www.science.org/content/blog-post/flatworms-ion-channels-and-burning-mouths
36•surprisetalk•1d ago•1 comments

Go is an ideal language for AI-assisted software engineering

https://developers.googleblog.com/why-go-is-an-ideal-language-for-ai-assisted-software-engineering/
386•0xedb•18h ago•446 comments
Open in hackernews

Fast(er) regular expression engines in Ruby

https://serpapi.com/blog/faster-regular-expression-engines-in-ruby/
60•davidsojevic•1y ago

Comments

yxhuvud•1y ago
Eww, pretending to support utf8 matchers while not supporting them at all was not pretty to see.
gitroom•1y ago
Honestly that part bugs me, fake support is worse than no support imo
kayodelycaon•1y ago
> Another nuance was found in ruby, which cannot scan the haystack with invalid UTF-8 byte sequences.

This is extremely basic ruby: UTF-8 encoded strings must be valid UTF-8. This is not unique to ruby. If I recall correctly, python 3 does the same thing.

    2.7.1 :001 > haystack = "\xfc\xa1\xa1\xa1\xa1\xa1abc"
    2.7.1 :003 > haystack.force_encoding "ASCII-8BIT"
    => "\xFC\xA1\xA1\xA1\xA1\xA1abc" 
    2.7.1 :004 > haystack.scan(/.+/)
    => ["\xFC\xA1\xA1\xA1\xA1\xA1abc"]
This person is a senior engineer on their Team page. All they had to do was google "ArgumentError: invalid byte sequence in UTF-8". Or ask a coworker... the company has Ruby on Rails applications. headdesk
burntsushi•1y ago
The nuance is specifically relevant here because neither of the other two regex engines benchmarked have this requirement. It's doubly relevant because that means running a regex search doesn't require a UTF-8 validation step, and is therefore likely beneficial from a perf perspective, dependening on the workload.
kayodelycaon•1y ago
That’s a good point. I hadn’t considered it because I’ve hit the validation error long before getting to search. It is possible to avoid string operations with careful coding prior to the search.

Edit: After a little testing, the strings can be read from and written to files without triggering validation. Presumably this applies to sockets as well.

DmitryOlshansky•1y ago
I wonder how std.regex of dlang would fare in such test. Sadly due to a tiny bit of D’s GC use it’s hard to provide as a library for other languages. If there is an interest I might take it through the tests.