frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Satellite data show trees delay budburst across landscapes to escape herbivores

https://www.nature.com/articles/s41559-026-03071-9
1•PaulHoule•2m ago•0 comments

Dutch solar owners asked to switch off during peak to ease distribution crisis

https://www.pv-magazine.com/2026/06/05/grid-connection-delays-affect-thousands-of-dutch-customers...
1•ndr42•3m ago•0 comments

Researchers show how brain rewires itself to enable true multitasking

https://medicine.georgetown.edu/news-releases/georgetown-researchers-show-how-brain-rewires-itsel...
1•hhs•4m ago•0 comments

Model alleges retailer used AI to generate likeness under 'minor edits' clause

https://medium.com/human-offset/minor-edits-09ad99aad0f4
1•gdessau•7m ago•0 comments

Aswath Damodaran on SpaceX: Revisiting the SpaceX Valuation: An Update

https://aswathdamodaran.blogspot.com/2026/06/a-weeks-ago-i-assessed-value-of-spacex.html
2•aanet•11m ago•1 comments

Anthropic warns Claude AI is building itself faster than expected

https://www.tomshardware.com/tech-industry/artificial-intelligence/anthropic-says-claude-now-writ...
1•corvettez0606•11m ago•0 comments

Understand how you build with AI

https://paxel.ycombinator.com/
2•simonpure•14m ago•0 comments

EU CRA compliance management tool

https://github.com/cra-norm-engine/crane
1•amh1036•16m ago•0 comments

30-year study finds sweet spot for cardio and strength training for longer life

https://www.medicalnewstoday.com/articles/want-to-live-longer-study-finds-sweet-spot-for-cardio-a...
2•akyuu•18m ago•0 comments

GNUtrition 0.33

https://lists.gnu.org/archive/html/info-gnu/2026-06/msg00002.html
2•amcclure•19m ago•0 comments

Why Stone-Faced Fascists Keep Getting Antiquity Wrong

https://www.thebulwark.com/p/why-stone-faced-fascists-keep-getting-antiquity-wrong-x-twitter-elon...
1•enaaem•19m ago•0 comments

Sony's age verif company Yoti; threatening users who use GrapheneOS

https://old.reddit.com/r/privacy/comments/1txn8di/did_i_just_got_threatened_by_yoti_age/
4•mystraline•24m ago•0 comments

Autohost – spin up websites seconds after someone points a domain at them

https://github.com/Safebots/Autohost
1•EGreg•24m ago•0 comments

Training-Free Single-Image Diffusion Models

https://haojunqiu.github.io/efficient-SID/
2•E-Reverance•29m ago•0 comments

Safe Made Easy Pt.1: Single Ownership Is (Not) Optional

https://ergeysay.me/safe-made-easy-pt1.html
1•birdculture•29m ago•0 comments

How Artemis II livestreamed hi-def videos and images from the moon to Earth

https://news.mit.edu/2026/how-artemis-ii-livestreamed-hi-def-videos-images-from-moon-to-earth-0605
2•gnabgib•34m ago•0 comments

Show HN: Honest Privacy Policies – We Read the Fine Print So You Don't Have To

https://honestprivacypolicies.org/
2•LuD1161•39m ago•0 comments

I built a music suite to replace five apps, all in one and free (Tauri/Rust)

https://github.com/EgleAudioSuite/egle/releases/tag/v1.1.0
2•EgleAudio•39m ago•0 comments

Show HN: I created a RAW to HDRI stacker in (mostly) Common Lisp

https://github.com/IBL-tools/rawtohdri
3•aaronestrada•40m ago•0 comments

Microsoft wants users to be addicted to Scout, their AI personal assistant

https://disassociated.com/microsoft-users-addicted-ai-personal-assistant/
10•berlianta•44m ago•6 comments

A floating solar plant using vertical panels

https://www.vozpopuli.com/indux/en/a-floating-solar-plant-using-vertical-panels-is-flipping-the-u...
3•e2e4•44m ago•1 comments

HRM-Text: Efficient Pretraining Beyond Scaling

https://arxiv.org/abs/2605.20613
2•cubefox•45m ago•0 comments

A Framework for Confident Model Migration in Production Systems

https://arxiv.org/abs/2604.27082
1•PaulHoule•46m ago•0 comments

Hermes Agent – Open-Source AI Agent with Persistent Memory

https://hermes-agent.org/
3•SeriousM•47m ago•0 comments

Do links hurt news publishers on Twitter? Our analysis suggests yes

https://www.niemanlab.org/2026/04/do-links-hurt-news-publishers-on-twitter-our-analysis-suggests-...
2•erickhill•48m ago•0 comments

Show HN: Fluenta – validate a business idea against 6 live demand signals

https://fluenta.space
1•OlegIvanov•48m ago•0 comments

Show HN: Idea-to-build – a workflow that challenges ideas before building

https://github.com/winchxyz/idea-to-build
1•winchxyz•49m ago•0 comments

Software, Philosophy, and Skepticism (2025)

https://www.natemeyvis.com/software-philosophy-and-skepticism/
1•3willows•51m ago•0 comments

Better to Best Research Hub Launches Simulation

https://bettertobest.github.io/compassionism-simulation/
1•BetterToBest•52m ago•1 comments

Is It Really FOSS?

https://isitreallyfoss.com/?
2•Velocifyer•53m ago•0 comments
Open in hackernews

API testing tool which sucks less

https://github.com/hissssst/hxxp
1•hissssst•1y ago

Comments

hissssst•1y ago
Remember HTTP? The plaintext protocol? Making an HTTP request used to be as simple as echo "GET / HTTP/1.0\r\n\r\n" | nc ... . Well, it's not anymore. We fucked it up with electron applications which require subscriptions, login pages, fail to work with basic headers, have fucking cloud versions and use some ultra-smart collaboration sync.

But HTTP is still plaintext. And even though HTTP 2 and 3 are not plaintext, they are still can be expressed as one (most of the times).

So I returned the plaintext back, just wrapped the curl and called it hxxp. The most similar program to hxxp is hurl, but hxxp is much simpler and much more straightforward, with regular shell interpolation and no testing framework inside. Just write the HTTP request and execute it, that's it.

echo "GET https://example.com/ HTTP/1.1" | hxxp -

motorest•1y ago
The comparison section seems to be lacking even the most cursory search for alternative API testing tools. It features insomnia but somehow fails to list postman or bruno. Tools like httpyac in particular or .http files in general are conspicuously missing. Not very informative.
hissssst•1y ago
What are .http files?