frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Muse Glimmer: 30B-parameter model optimized for always-on local agent workflows

https://research.meta.ai/blog/introducing-muse-glimmer-open-agentic-model
948•riordan•12h ago•533 comments

Show HN: Needle2: 14MB agentic LLM for phones, wearables, smart home and robots

https://cactuscompute.com/needle
66•HenryNdubuaku•4h ago•38 comments

Illinois Just Passed a Law That Puts Linux on the Hook for Age Verification

https://linuxstans.com/illinois-hb5511-operating-system-age-verification/
198•speckx•1h ago•221 comments

Sonic Pi v5

https://www.patreon.com/samaaron/posts/sonic-pi-v5-166001392
252•samaaron•3d ago•68 comments

Rust SIMD on the GPU

https://www.vectorware.com/blog/simd-on-gpu/
79•sagacity•4h ago•39 comments

Mark Zuckerberg attacks 'closed' AI rivals as Meta returns to open models

https://www.ft.com/content/4e3957f8-ea7c-4c46-a3de-cdce8e526878
261•root-parent•8h ago•322 comments

Publishing Schematics Before "Open Source" Was a Word

https://fabscene.medium.com/publishing-schematics-before-open-source-was-a-word-55-years-of-akizu...
23•extralongdivisi•3d ago•3 comments

How Claude marks AI-generated content

https://support.claude.com/en/articles/16266773-how-claude-marks-ai-generated-content
24•mfiguiere•37m ago•13 comments

Amazon backs power plant that may become top source of US climate pollution

https://arstechnica.com/tech-policy/2026/08/amazon-funds-biggest-gas-power-plant-in-us-despite-cl...
36•pjmlp•48m ago•19 comments

Launch HN: Stoa Markets (YC S26) – A Marketplace for GPUs and AI Servers

https://www.stoaexchange.com
58•erenberke•5h ago•34 comments

Exploiting System Management Mode with a very long interrupt

https://github.com/xoreaxeaxeax/smiiiiiiiiiiiiiiii
104•WhiteDawn•6h ago•34 comments

Stop Killing Games: It's time to sue Sony, join us

https://www.massaschadeconsument.nl/collectieve-acties/playstation/
38•EDM115•1h ago•9 comments

We cut a 40-day financial integration down to 5 days using Google Anti

https://discuss.google.dev/t/trusted-automation-with-google-antigravity-scaling-secure-finance-in...
5•simontwigg•47m ago•2 comments

The Psychedelic Toad of the Sonoran Desert

https://en.wikipedia.org/wiki/Bufo_Alvarius:_the_Psychedelic_Toad_of_the_Sonoran_Desert
54•simonebrunozzi•6d ago•37 comments

Squeak 6.1

https://squeak.org/release_notes/6.1/
194•fniephaus•9h ago•98 comments

Humanising LLM Outputs Is Dumb

https://kuber.studio/blog/Reflections/Humanising-LLM-Outputs-is-Actually-Dumb
104•kuberwastaken•8h ago•59 comments

Ask HN: In your experience, what are sound conventions for e-ink UI development?

118•BoxOfRain•3d ago•40 comments

Parametron: 50s Japanese computer that uses neither transistors nor vacuum tubes

https://ethw.org/Milestones:Parametron,_1954
162•xeonmc•11h ago•44 comments

Magnitude 7.4 Earthquake – 5 km S of San José del Palmar, Colombia

https://earthquake.usgs.gov/earthquakes/eventpage/us6000tjl2/executive
142•Bender•6h ago•50 comments

Exploring Claude/GPT Knowledge Cutoffs and Pre-Training Timelines

https://blog.sshh.io/p/exploring-claudegpt-knowledge-cutoffs
79•sshh12•7h ago•11 comments

Letter to Governor Abbott on responsible AI infrastructure in Texas

https://openai.com/index/responsible-ai-infrastructure-texas/
72•hackerBanana•7h ago•137 comments

Mistral Patent for “Code implemented tool calls”

https://patentsgazette.uspto.gov/week26/OG/html/1547-5/US12670045-20260630.html
195•theanonymousone•8h ago•163 comments

Tail-call optimization in C is relatively recent (2025)

https://lwn.net/Articles/1034703/
110•prakashqwerty•10h ago•102 comments

Extreme 220GHz+Broadband Silicon Capacitor X2SC 0201M 22nF BV11

https://pim.murata.com/asset/pim4/siliconCapacitor/SICAP_X2SC422522_PDF_SILICONCAPACITOR
51•peter_d_sherman•6h ago•19 comments

Confessions of a Long-Distance Sailor

https://arachnoid.com/lutusp/sailbook.html
3•AntiRush•1h ago•0 comments

Show HN: Higher-dimensional lattices unfolded into the 2D plane

https://number-garden.com/?@THLP@
4•unitX•4d ago•1 comments

Tl;dv: Over 180k meetings left wide open

https://bobdahacker.com/blog/tldv-hack
487•colesantiago•9h ago•167 comments

Back to the Future of Handwriting Recognition (2016)

https://jackschaedler.github.io/handwriting-recognition/
31•at1as•6h ago•8 comments

Mars Bar from 1991 found – and it's 20g bigger than today's

https://www.bbc.com/news/articles/c1j1kjy7gewo
262•RickJWagner•6h ago•410 comments

50k Boat Names

https://www.beautifulpublicdata.com/boat-names/
141•jonathanmkeegan•9h ago•102 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.