frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Nvidia Nemotron 3.5 Lightning and NeMo Switchyard

https://blogs.nvidia.com/blog/nemotron-lightning-switchyard-rtx-dgx/
140•droidjj•3h ago•64 comments

Compression is prediction

https://ngrok.com/blog/compression-is-prediction
167•nikolay•3h ago•74 comments

WorldClaw Agentic 3D open-world generation at scale

https://tencent-hunyuan.github.io/Hunyuan3D-WorldClaw/
21•EwanG•59m ago•7 comments

Mojo 1.0

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

Stealing Reasoning Traces from Proprietary LLM APIs

https://stolen-thoughts.com/
441•quantumgarbage•9h ago•181 comments

Making holograms with a pen plotter

https://blog.jordan.matelsky.com/Penplotter-holography/
90•DemiGuru•4h ago•10 comments

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

https://photosynthesis.camera
160•sajomes•3d ago•167 comments

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

https://www.ft.com/content/e49dfb75-f841-4466-a577-f7aaff8779a0
220•ilamont•10h ago•295 comments

Suzanne: AI tool for designing and manufacturing physical products

https://www.suzanne3d.com/
12•Samanthajeanneb•1h ago•8 comments

How we used to get jobs: A newspaper classifieds story

https://ironicsans.ghost.io/how-we-used-to-get-jobs/
89•speckx•4h ago•71 comments

RSI Simulator

https://www.paradigm.xyz/writing/rsi-simulator
14•ckraeuter•5h ago•6 comments

England set to be one of the first countries to eliminate hepatitis C

https://www.bbc.com/news/articles/c75gk620r22o
468•stevekemp•10h ago•335 comments

Jolt: Clojure compiler implemented with Chez Scheme

https://jolt-lang.github.io
133•mark_l_watson•3d ago•48 comments

Grok Bot

https://x.ai/bot
69•rvz•5h ago•71 comments

pg_clickhouse v0.10: Subquery pushdown and 1000x faster TPC-H queries

https://clickhouse.com/blog/pg_clickhouse-whats-new-july-2026
5•saisrirampur•1h ago•0 comments

Emergent Introspective Awareness in Large Language Models

https://arxiv.org/abs/2601.01828
10•doener•1h ago•2 comments

Nvidia's Risky Business

https://stratechery.com/2026/nvidias-risky-business/
271•jonbaer•12h ago•124 comments

Manus will return to operating as an independent company

https://manus.im/blog/a-note-to-our-users
119•thm•8h ago•65 comments

Show HN: Git-knife – edit commit messages, authors, and dates like a spreadsheet

https://github.com/TheRealYT/git-knife
114•YonathanTesfaye•7h ago•83 comments

OpenSSH 10.5/10.5p1

https://www.openssh.org/releasenotes.html#10.5
81•voxadam•5h ago•30 comments

Apple Silicon and macOS VMs: Faster LLM Inference with llama.cpp

https://github.com/trycua/cua/blob/main/blog/gpu-passthrough-macos-vms.md
271•frabonacci•8h ago•43 comments

CSS properties you should know for better text designs

https://master.dev/blog/typographic-css-tricks/
51•ibobev•5h ago•5 comments

London Underground begins scanning passengers' faces

https://www.btp.police.uk/news/btp/news/england/btp-expands-live-facial-recognition-lfr-trial-int...
177•BlueBerry2001•13h ago•209 comments

The Hat and the Spectre – Recent Groundbreaking Discoveries in Mathematics

https://momath.org/the-hat/
5•vismit2000•3d ago•1 comments

What I learned by putting GitHub Copilot behind a MitM proxy

https://www.lighthousenewsletter.com/p/i-put-github-copilot-behind-a-mitm
142•j0selit0•12h ago•23 comments

Launch HN: Keet (YC S24) – An app to create video courses on anything

https://www.trykeet.com/
39•zackashen•8h ago•40 comments

Show HN: Write.md – A free, open-source, themeable Markdown editor for macOS

https://writemd.app/
65•danielbilekq•9h ago•62 comments

Archive of Animal Photography Reveals 18,000 Species and Counting

https://www.smithsonianmag.com/science-nature/this-amazing-archive-of-animal-photography-reveals-...
30•pseudolus•2d ago•9 comments

A new study of a bot running a store finds it is friendly but not very smart

https://www.nytimes.com/2026/08/04/us/ai-boss-san-francisco-andon-market.html
46•jjwiseman•1w ago•49 comments

OpenAI launches ChatGPT desktop app for Linux

https://techcrunch.com/2026/08/11/openai-launches-chatgpt-desktop-app-for-linux/
23•ashurandi•2h ago•7 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.