frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Use your Nvidia GPU's VRAM as swap space on Linux

https://github.com/c0dejedi/nbd-vram
152•tanelpoder•3h ago•44 comments

MAI-Code-1-Flash

https://microsoft.ai/news/introducingmai-code-1-flash/
399•EvanZhouDev•8h ago•178 comments

CT scans of BYD car parts

https://www.lumafield.com/scan-of-the-month/byd
247•viasfo•6h ago•93 comments

Are blue zones real? Answering that question is harder then ever

https://www.statnews.com/2026/05/04/are-blue-zones-real-new-scrutiny-longevity-hot-spots/
29•mfld•1d ago•17 comments

My thoughts after using Clojure for about a month

https://www.acdw.net/clojure/
120•speckx•6h ago•72 comments

1-Click GitHub Token Stealing via a VSCode Bug

https://blog.ammaraskar.com/github-token-stealing/
16•ammar2•11h ago•0 comments

Gmail thinks I'm stupid, so I left

https://moddedbear.com/gmail-thinks-im-stupid-so-i-left
661•speckx•7h ago•402 comments

4K years ago, Mohenjo-daro grew more equal over time

https://archaeologymag.com/2026/05/mohenjo-daro-grew-more-equal-over-time/
53•marojejian•4h ago•29 comments

AI outperforms law professors in Stanford Law study

https://law.stanford.edu/press/ai-outperforms-law-professors-in-stanford-law-study/
107•berlianta•3h ago•109 comments

A walking tour of surveillance infrastructure in Seattle (2020)

https://coveillance.org/a-walking-tour-of-surveillance-infrastructure-in-seattle/
379•eustoria•13h ago•253 comments

HP re-releases classic computer science calculator: The HP-16C

https://hpcalcs.com/product/hp-16c-collectors-edition/
129•dm319•7h ago•80 comments

Open Repair Data Standard – Open Repair Alliance

https://openrepair.org/open-data/open-standard/
100•cassepipe•7h ago•3 comments

Pluto.jl 1.0 release – reactive notebook for Julia

https://discourse.julialang.org/t/pluto-1-0-release/137296
19•fons-p•3h ago•0 comments

How we index images for RAG

https://www.kapa.ai/blog/how-we-index-images-for-rag
93•mooreds•10h ago•14 comments

Trump signs downsized AI order after weeks of reversals

https://www.politico.com/news/2026/06/02/trump-signs-downsized-ai-order-00946389
180•_alternator_•10h ago•128 comments

More than 6 out of 10 people turn to AI for psychological support

https://www.axa.com/en/press/press-releases/2026-mind-health-report
61•mgh2•2h ago•55 comments

OpenFOV – Webcam head tracking for iRacing

https://www.openfov.com/
90•mwit2023•3d ago•50 comments

Multicore suppport for DOS is real – partly

https://www.vogons.org/viewtopic.php?t=111336
64•beebix•2d ago•11 comments

Capstone – multi-platform, multi-architecture disassembly framework

https://www.capstone-engine.org/
3•gregsadetsky•55m ago•0 comments

Ad Infini­Tum

https://matthiasott.com/notes/ad-infinitum
4•yurivish•2d ago•1 comments

Loading Sega Games Off a Vinyl Record [video]

https://www.youtube.com/watch?v=c744iD0_fWU
9•zdw•2d ago•0 comments

Love systemd timers

https://blog.tjll.net/you-dont-love-systemd-timers-enough/
355•yacin•17h ago•229 comments

Expanding Project Glasswing

https://www.anthropic.com/news/expanding-project-glasswing
160•surprisetalk•13h ago•212 comments

Roku LT Operating System open source distribution

https://blog.roku.com/developer/roku-lt-os
9•dpmdpm•1h ago•4 comments

Fidonet: Technology, Use, Tools, and History (1993)

https://www.fidonet.org/inet92_Randy_Bush.txt
153•BruceEel•13h ago•63 comments

Preparing for KDE Plasma's Last X11-Supported Release

https://blog.davidedmundson.co.uk/blog/596/
151•jandeboevrie•12h ago•185 comments

The advertising cartel coming to your web browser

https://blog.zgp.org/the-advertising-cartel-coming-to-your-web-browser/
138•speckx•7h ago•39 comments

QBE – Compiler Backend – 1.3

https://c9x.me/compile/release/qbe-1.3.html
81•birdculture•9h ago•28 comments

Show HN: Paseo – Beautiful open-source coding agent interface

https://github.com/getpaseo/paseo
26•timhigins•4h ago•14 comments

Bringing Up DeepSeek-V4-Flash on AMD MI300X

https://fergusfinn.com/blog/deepseek-v4-flash-mi300x/
83•kkm•9h 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.