frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

ChatGPT Desktop (Codex Desktop) for Linux

https://openai.com/codex/
230•allanrbo•7h ago•141 comments

The lattice of sets of natural numbers is rich

https://jdh.hamkins.org/the-lattice-of-sets-of-natural-numbers-is-rich/
45•benmandrew•2d ago•8 comments

DeepSeek V4 Pro 0813

https://openrouter.ai/deepseek/deepseek-v4-pro-0813
963•explosion-s•20h ago•414 comments

Tracking down the 16-year-old WAL-reset SQLite bug

https://tailscale.com/blog/sqlite-wal-reset-bug
1085•ropbear•21h ago•202 comments

Picking berries is my meditation

https://www.tsoon.com/posts/picking-berries-meditation/
19•mooreds•4d ago•9 comments

ATG (YC F25) Is Hiring Member of Technical Staff (Data Platform)

https://atg.science/careers
1•dkobran•12m ago

Qwen3.8-2.4T

https://huggingface.co/Qwen/Qwen3.8-2.4T-A95B
653•Philpax•21h ago•154 comments

Delta

https://zed.dev/blog/introducing-delta
583•khy•17h ago•216 comments

Principia Mathematica is modern and insightful

https://okmij.org/ftp/Computation/Impressions/PrincipiaMathematica.html
188•matt_d•12h ago•82 comments

Come for Eniac, Stay for Univac and Skeduflo

https://uniqueatpenn.wordpress.com/2026/08/05/come-for-eniac-stay-for-univac-and-skeduflo/
6•cainxinth•1d ago•0 comments

Antiqua–Fraktur dispute

https://en.wikipedia.org/wiki/Antiqua%E2%80%93Fraktur_dispute
116•buzzy_hacker•2d ago•33 comments

uBlock Origin Is Giving Up the Fight to Keep Ads Off Facebook

https://digitalescapetools.com/2026/08/ublock-origin-stops-chasing-facebook-ads.html
564•Markoff•1d ago•677 comments

2026 Eclipse Webcams

https://jonty.github.io/2026_eclipse_webcams/
497•zoenolan•1d ago•133 comments

Flutter 3.47

https://flutter.dev/blog/whats-new-in-flutter-3-47
130•gumby271•12h ago•146 comments

The punched card tabulator

https://www.ibm.com/history/punched-card-tabulator
20•Bluestein•5d ago•6 comments

Tim King, AmigaDOS developer, has died

https://amiga-news.de/en/news/AN-2026-08-00070-EN.html
280•doener•22h ago•35 comments

Why Target Common Lisp for Code Generation?

http://funcall.blogspot.com/2026/08/why-vibe-code-in-lisp.html
118•oumua_don17•1d ago•100 comments

Grok 4.6

https://x.ai/news/grok-4-6
577•iLuddite•20h ago•523 comments

HTML over WebSockets: real-time SPAs with barely any JavaScript

https://en.andros.dev/blog/ef4968f5/html-over-websockets-real-time-spas-with-barely-any-javascript/
218•redbell•19h ago•147 comments

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

https://discoveredmaterials.com/research/
145•advaith08•1d ago•32 comments

Happy 45th Birthday to the IBM PC and Model F/XT

https://sharktastica.co.uk/articles/pc-fxt-45
101•tart-lemonade•12h ago•38 comments

Thanks to social media, canned sardines are a scarcity on the supermarket shelf

https://corneroffifth.studio/why-cant-you-find-canned-sardines-right-now/
141•carabiner•14h ago•181 comments

The Three-Stroke Problem

https://penpot.app/blog/the-three-stroke-problem/
20•elenathor•1w ago•0 comments

Mushroom behind 'tiny people' hallucinations identified

https://phys.org/news/2026-08-qa-mushroom-tiny-people-hallucinations.html
179•wglb•5d ago•150 comments

Why tiny JPEGs look different in Chrome

https://guillaumetech.github.io/posts/jpg-scaling-chrome/
317•gutechh•22h ago•66 comments

Breaking the WAL

https://antithesis.com/blog/2026/wal-reset-bug/
129•wwilson•16h ago•46 comments

From rubber boots to Copa: When MicroProse Soccer revolutionized football

https://spillhistorie.no/2026/08/08/fra-gummistovler-til-copa-da-microprose-soccer-revolusjonerte...
31•TMWNN•3d ago•4 comments

Someone is running mass vulnerability scans, spoofing AI bots like ClaudeBot

https://knownagents.com/insights
285•gavinhking•22h ago•215 comments

Pixel Watch 5

https://blog.google/products-and-platforms/devices/pixel/pixel-watch-5/
151•ortusdux•19h ago•310 comments

Shade Map

https://shademap.app
217•fredley•23h ago•54 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.