frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AMD Ryzen AI Halo – $4k AI Dev Kit

https://www.lttlabs.com/articles/2026/07/06/amd-ryzen-ai-halo
151•LabsLucas•3h ago•124 comments

Kani: A Model Checker for Rust

https://arxiv.org/abs/2607.01504
54•Jimmc414•2h ago•1 comments

Aluminum foil (2021)

https://dernocua.github.io/notes/aluminum-foil.html
176•firephox•4h ago•74 comments

Road to Elm 1.0

https://elm-lang.org/news/faster-builds
244•wolfadex•6h ago•103 comments

Egypt Is Building a New Nile

https://www.theb1m.com/video/egypt-is-building-a-new-nile
51•geox•2d ago•5 comments

Real-time map of Great Britain's rail network

https://www.map.signalbox.io
332•scrlk•8h ago•125 comments

Resetting Xbox

https://news.xbox.com/en-us/2026/07/06/resetting-xbox/
197•dijksterhuis•4h ago•139 comments

Stealth robotics startup (YC S26) is hiring principal engineers (Palo Alto)

1•david-venegas•1h ago

Pros and Cons of Solo Development

https://johnjeffers.com/pros-and-cons-of-solo-development/
4•johnj-hn•3m ago•0 comments

Show HN: Pulpie – Models for Cleaning the Web

https://usefeyn.com/blog/pulpie-pareto-optimal-models-for-cleaning-the-web/
38•snyy•2h ago•6 comments

OpenWrt One – Open Hardware Router

https://openwrt.org/toh/openwrt/one
3•peter_d_sherman•4m ago•0 comments

Fable 5 On Vending-Bench: Misbehaving, With Plausible Deniability

https://andonlabs.com/blog/fable5-vending-bench
131•optimalsolver•5h ago•82 comments

1k Words: A Writing Contest

https://writingclub.world/1picture1000words
55•surprisetalk•2h ago•21 comments

Clojure 1.13 adds support for checked keys

https://clojure.org/news/2026/07/02/clojure-1-13-alpha1
131•FelipeCortez•3d ago•25 comments

I Like Small Keyboards

https://samsm.ch/small-keyboards/
19•surprisetalk•5d ago•13 comments

CS2 Fog Of War: Server-sided anti-wallhack occlusion culling for CS2 servers

https://github.com/karola3vax/CS2FOW
36•LorenDB•3h ago•11 comments

The AI Superforecasters Are Here

https://www.astralcodexten.com/p/the-ai-superforecasters-are-here
34•surprisetalk•2h ago•23 comments

Big Tech Has Suddenly Flipped on the AI Jobs Wipeout Scenario

https://www.wsj.com/tech/ai/ai-workers-tech-ceos-job-losses-afc71e15
30•Brajeshwar•1h ago•11 comments

The Supreme Court Just Lit a Fuse Under Flock's License Plate Camera Empire

https://www.yahoo.com/news/politics/articles/supreme-court-just-lit-fuse-130900307.html
50•bilsbie•1h ago•29 comments

Schizo founder story (terrorist to tech exit)

https://peteryoung.me/the-terrorists-guide-to-retiring-young/
4•optimized•39m ago•0 comments

Introduction to Genomics for Engineers

https://learngenomics.dev/docs/biological-foundations/cells-genomes-dna-chromosomes/
180•yreg•4d ago•26 comments

When 2+2=5

https://arstechnica.com/security/2026/06/ai-browsers-can-be-lulled-into-a-dream-world-where-guard...
57•noashavit•3d ago•27 comments

Januscape: Guest-to-Host Escape in KVM/x86 [CVE-2026-53359]

https://github.com/V4bel/Januscape
5•Imustaskforhelp•52m ago•2 comments

Should DayQuil Be Legal?

https://www.theargumentmag.com/p/should-dayquil-be-legal
82•paulpauper•2h ago•109 comments

Fable Built a 3D Model of Aristotle's Cognitive Architecture

https://conceptual-spaces.vercel.app
3•mikemangialardi•54m ago•1 comments

Show HN: I Built LangGraph for Swift

https://github.com/christopherkarani/Swarm
18•christkarani•3h ago•3 comments

OfficeCLI: Office suite for AI agents to read and edit Microsoft Office files

https://github.com/iOfficeAI/OfficeCLI
25•maxloh•1h ago•2 comments

What Emily Bender meant by "stochastic parrots"

https://spectrum.ieee.org/stochastic-parrot
125•digital55•3h ago•148 comments

Building relationships with customers through support didn't turn out as hoped

https://www.uncommonapps.nyc/p/castro-podcasts-things-i-got-wrong-support
289•dabluck•16h ago•173 comments

Apricot Computers: An underrated British brand

https://dfarq.homeip.net/apricot-computers-an-underrated-british-brand/
63•giuliomagnifico•5d ago•19 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.