frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Don't Paste the AI, please

https://dontpastetheai.com/
310•pjerem•2h ago•166 comments

Windows brings out the Rorschach test in everyone

https://devblogs.microsoft.com/oldnewthing/20030825-00/?p=42803
197•luu•4h ago•80 comments

AliExpress runs silent WebAudio fingerprinting that breaks Bluetooth multipoint

https://blog.laserphile.com/2026/08/aliexpress-webpage-keeping-multipoint.html
22•emctech•42m ago•4 comments

OpenRouter is joining Stripe

https://openrouter.ai/blog/announcements/openrouter-is-joining-stripe/
851•rvz•17h ago•443 comments

Turns are Better than Radians (2022)

https://www.computerenhance.com/p/turns-are-better-than-radians
217•mayoff•9h ago•106 comments

Go 1.27

https://go.dev/blog/go1.27
655•database64128•16h ago•195 comments

Google has stopped pushing Git tags for some Android source code

https://grapheneos.social/@GrapheneOS/117057099753905023
591•Animux•17h ago•242 comments

A faster way to calculate the day of the week

https://www.benjoffe.com/fast-day-of-week
160•gavide•3d ago•29 comments

A joke domain purchase turned in geopolitical warfare

https://sprocketfox.io/xssfox/2026/08/19/sondehub-and-war/
913•kareiva•23h ago•145 comments

Manabu Kosaka's Handmade Paper Sculptures

https://coca11272000.wixsite.com/manabukosaka
134•surprisetalk•20h ago•15 comments

Unlocking a locked/deactivated e-waste Cricut Maker

https://sprocketfox.io/xssfox/2026/07/01/cricut-unlock/
211•1e1a•15h ago•55 comments

Unsloth Dynamic 3.0 GGUFs

https://unsloth.ai/docs/basics/dynamic-3.0-ggufs
277•jonesy827•16h ago•99 comments

Casio F-B100W-1A

https://www.casio.com/uk/watches/casio/product.F-B100W-1A/
392•__fst__•19h ago•326 comments

Sol loves to cheat

https://jumploops.com/blog/sol-loves-to-cheat/
171•jumploops•1d ago•128 comments

The Chauffeur Problem

https://engines.egr.uh.edu/episode/1495
22•leowoo91•3d ago•3 comments

Geolocating a random island using geometry and CUDA programming

https://yassa9.github.io/osint/gralhix-004/
483•yassa9•22h ago•78 comments

fx :Tiny, open, native coding agent.

https://fx.sh
275•handfuloflight•1d ago•116 comments

Feature Request: Support AGENTS.md

https://github.com/anthropics/claude-code/issues/6235
271•fg137•13h ago•169 comments

Os8088.com: IBM XT OS now has a Browser, CP/M 2.2 with Z80 core and MS Word 1.1a

https://os8088.com/spotlight/
93•jggonz•13h ago•46 comments

PostgreSQL for Everything

https://www.raphaelbauer.com:443/posts/postgresql-everything/
376•karlmush•21h ago•225 comments

Mathematics in the age of AI

https://arxiv.org/abs/2608.16753
176•jonbaer•19h ago•201 comments

Pixel 11 Pro Fold feels like the end of an era

https://www.theverge.com/tech/981956/google-pixel-11-pro-fold-review
69•animalcule•15h ago•171 comments

What's missing to have reproducible builds on PyPI

https://snarky.ca/whats-missing-to-have-reproducible-builds-on-pypi/
16•Ravencentric•4d ago•4 comments

Launch HN: OneCLI (YC S26) – OSS sandboxed agent harness for teams

https://github.com/onecli/onecli
78•guyb3•18h ago•22 comments

Sectorforth is a 16-bit x86 Forth that fits in a 512-byte boot sector (2020)

https://github.com/cesarblum/sectorforth
28•sigalor•3d ago•5 comments

Air Theremin – A browser theremin you play by waving at your webcam

https://theremin.bizibah.com/
275•gurov•1d ago•96 comments

The little-known winstart.bat batch file

https://devblogs.microsoft.com/oldnewthing/20260811-00/?p=112605
118•ingve•4d ago•34 comments

RAPx: A static analysis tool for Rust programs

https://github.com/safer-rust/RAPx
5•rendaw•4d ago•1 comments

Xorshift Generators

https://www.alanzucconi.com/2026/08/15/xorshift-generators/
87•tobr•4d ago•43 comments

Pacing model development in an era of cyber-critical capabilities

https://openai.com/index/pacing-model-development-cyber-capabilities/
152•j4mie•1d ago•237 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.