frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Israeli military drops charges against soldiers accused of abusing Palestinian d

https://www.bbc.com/news/articles/cm2xrz71zm3o
1•tartoran•20s ago•0 comments

Adobe Announces CEO to Step Down, Gives Lackluster Forecast

https://www.bloomberg.com/news/articles/2026-03-12/adobe-announces-ceo-to-step-down-gives-lacklus...
1•toomuchtodo•48s ago•1 comments

Show HN: Every Developer in the World, Ranked

https://coderank.me
2•ejc•3m ago•0 comments

A Plain Anabaptist Story: The Hutterites

https://ulmer457718.substack.com/p/a-plain-anabaptist-story-the-hutterites
2•gaplong•3m ago•0 comments

Apple MacBook Neo beats every single x86 PC CPU for single-core performance

https://www.pcgamer.com/hardware/gaming-laptops/new-benchmarks-show-the-iphone-chip-in-the-cut-pr...
1•baal80spam•4m ago•0 comments

Beyond the Limit: Introducing Mixedbread Wholembed v3

https://mixedbread.com/blog/wholembed-v3
2•emschwartz•4m ago•0 comments

In Praise of Stupid Questions

https://mathenchant.wordpress.com/2026/03/12/in-praise-of-stupid-questions/
1•jamespropp•6m ago•1 comments

Removing Comments from SWE-Bench Improves Agent Performance

https://antimemeticai.com/blog/comment-ablation
1•irgolic•6m ago•0 comments

How to Blur Sensitive Text in Screenshots with AI and ImageMagick

https://www.jamdesk.com/blog/blur-screenshots-with-ai
1•gbourne1•6m ago•0 comments

Keep the Tokens Flowing: Lessons from 16 Open-Source RL Libraries

https://huggingface.co/blog/async-rl-training-landscape
1•kashifr•7m ago•0 comments

The Context Lake

https://wetware.media/blog/context-lake/
2•carlwm•7m ago•1 comments

A Claude Code skill for deliberate skill development during AI-assisted coding

https://github.com/DrCatHicks/learning-opportunities
1•mooreds•9m ago•0 comments

Has vibecoding produced anything of substance, or investibility yet?

1•iiiiiiiiio•10m ago•0 comments

Frustrating experience reporting bugs on major companies websites as a developer

1•cupcake-unicorn•10m ago•0 comments

A Typed Language for Agent Coordination

https://johncarlosbaez.wordpress.com/2026/03/11/a-typed-language-for-agent-coordination/
1•terryf•13m ago•0 comments

$6T in Gulf capital is looking for the exit

https://climatemoney.substack.com/p/what-the-iran-war-means-for-the-energy
1•xrd•13m ago•0 comments

Systemd 260-Rc3 Released with AI Agents Documentation Added

https://www.phoronix.com/news/systemd-260-rc3
1•throw_await•14m ago•0 comments

Adobe CEO Shantanu Narayen says he will step down

https://www.cnbc.com/2026/03/12/adobe-ceo-shantanu-narayen-step-down.html
1•leopoldj•15m ago•1 comments

Ask HN: How do you cope with the broken rythm of agentic coding?

3•pauletienney•15m ago•1 comments

CostRouter – Cut AI API costs 60% by routing to the cheapest capable model

2•alex_1002•16m ago•0 comments

MCP Security 2026: 30 CVEs in 60 Days

https://www.heyuan110.com/posts/ai/2026-03-10-mcp-security-2026/
1•danebalia•16m ago•1 comments

How OpenAI Uses Codex [pdf]

https://cdn.openai.com/pdf/6a2631dc-783e-479b-b1a4-af0cfbd38630/how-openai-uses-codex.pdf
1•d0able•17m ago•0 comments

Announcing Cloudflare Account Abuse Protection

https://blog.cloudflare.com/account-abuse-protection/
1•chmaynard•17m ago•0 comments

Shantanu Narayen to Transition from Adobe CEO Role

https://news.adobe.com/news/2026/03/employee-memo
1•pfrrp•18m ago•0 comments

Idea Cells

https://sphera.substack.com/p/idea-cells
1•KyleVlaros•19m ago•1 comments

Show HN: My Vibe Page

https://www.myvibepage.com/p/Duq1IdfUMy
1•hershyb_•20m ago•3 comments

Show HN: Claude Forge – GAN Inspired Adversarial Pipeline

https://github.com/HatmanStack/claude-forge
1•hatmanstack•22m ago•0 comments

Where is AI showing up in the productivity data?

https://www.ft.com/content/d6fdc04f-85cf-4358-a686-298c3de0e25b
2•aanet•23m ago•1 comments

Company AI Readiness Scores

https://company.lost2038.com/show-hn-draft.html
1•mikeberkley•25m ago•1 comments

Prompt Engineering for AI Music: What Works with Suno

https://jch254.com/blog/prompt-engineering-ai-music-suno/
1•603•25m ago•1 comments
Open in hackernews

PHP-rnet – a PHP extension that mimics real browser TLS fingerprints

1•takielias•2h ago
I built this after repeatedly hitting bot protection while making HTTP requests from PHP.

Even when copying Chrome headers exactly, some sites still blocked the request.

It turns out many modern bot detection systems fingerprint clients using the TLS handshake rather than HTTP headers.

Most PHP HTTP clients rely on libcurl, which means their TLS fingerprint always looks like curl. This makes them easy to detect.

So I built php-rnet, a PHP extension that can impersonate real browsers at the TLS and HTTP/2 level.

It is built using Rust networking libraries (wreq + BoringSSL) and supports many browser profiles including Chrome, Firefox, Safari, Edge, and OkHttp.

Example:

$b = new RNet\ClientBuilder(); $b->impersonate(RNet\Emulation::CHROME_136); $client = $b->build();

$resp = $client->get("https://tls.browserleaks.com/json");

To the server this request looks like it came from Chrome.

Blog post explaining the project: https://tasli.netlify.app/blog/posts/php-requests-dont-look-like-browsers

GitHub repo: https://github.com/takielias/php-rnet

Curious to hear thoughts from others who have worked with TLS fingerprinting or bot detection.

Comments

takielias•2h ago
Happy to answer questions about TLS fingerprinting, Rust PHP extensions, or the networking side of this project.