frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Another exposed Supabase DB strikes: 20k+ attendees and FULL write access

https://obaid.wtf/jotbook/2026/02/22/arts-council-database-20k-attendees-exposed.html
1•wtfobaid•1m ago•0 comments

Tropes.fyi: Name and Shame AI Writing – Ossama Chaib

https://ossama.is/writing/tropes
1•Daviey•1m ago•0 comments

Seedream 5.0 – ByteDance's AI image generator with web search and editing

https://seedance2.so/seedream-5-0
1•xbaicai•5m ago•1 comments

F-Jira: Export Jira and Confluence data

https://github.com/oozou/f-jira
1•con•7m ago•0 comments

Let's understand and implement consistent hashing

https://sushantdhiman.dev/lets-implement-consistent-hashing/
1•birdculture•9m ago•0 comments

Show HN: Beehive – Multi-Workspace Agent Orchestrator

https://storozhenko98.github.io/beehive/
1•mst98•9m ago•0 comments

What Ultimately Is There? Metaphysics and the Ruliad

https://writings.stephenwolfram.com/2026/02/what-ultimately-is-there-metaphysics-and-the-ruliad/
1•inshard•10m ago•0 comments

Show HN: Dypai – Build backends from your IDE using AI and MCP

https://www.dypai.ai/
2•lorengarcialv•11m ago•0 comments

3D-printing platform rapidly produces complex electric machines

https://news.mit.edu/2026/3d-printing-platform-rapidly-produces-complex-electric-machines-0218
1•JeanKage•14m ago•0 comments

Seedream 5.0: ByteDance's AI image generator with 4K output

https://loraai.io/seedream-50
1•xbaicai•15m ago•1 comments

Is Donald Trump Alive?

https://isdonaldtrumpalive.com/
2•only_in_america•16m ago•0 comments

Gig workers in Africa had no idea they were helping the U.S. military

https://restofworld.org/2026/gig-workers-us-military-appen/
2•JeanKage•17m ago•0 comments

Diesel Vortex: Inside the Russian cybercrime group targeting US and EU freight

https://haveibeensquatted.com/blog/diesel-vortex-inside-the-russian-cybercrime-group-targeting-us...
4•juxhindb•17m ago•1 comments

My lobster lost $450k this weekend

https://pashpashpash.substack.com/p/my-lobster-lost-450000-this-weekend
1•ssiddharth•17m ago•0 comments

Validation Testing for AI Consultancies

https://tryhala.xyz
1•belocci•18m ago•1 comments

Best Web Hosting Services in The USA

https://webseotrends.com/best-web-hosting/
1•manipathakblog•22m ago•1 comments

Show HN:Agentic Browser Automation – Lightweight Selenium and Claude Code Bridge

https://github.com/GregoryLi360/Agentic-Browser-Automation
1•gregoryli360•23m ago•1 comments

Appstore – Upcoming SDK minimum requirements

https://developer.apple.com/news/?id=ueeok6yw
1•notlikeus•23m ago•0 comments

Reproducible Builds in Language Package Managers

https://nesbitt.io/2026/02/24/reproducible-builds-in-language-package-managers.html
1•yla92•24m ago•0 comments

Cloud Hosting vs. Shared Hosting: Which Web Hosting Should You Choose

https://manipathaktech.substack.com/p/cloud-hosting-vs-shared-hosting
1•manipathakblog•24m ago•0 comments

Show HN: SsrJSON: faster than the fastest Python JSON library

https://github.com/Antares0982/ssrJSON
1•antares0982•25m ago•0 comments

Adversarial multi-agent planning and deterministic pipeline execution for agents

https://github.com/elitecoder/forge-ai
1•surferbayarea•26m ago•1 comments

Why There Are So Many Image Formats [video]

https://www.youtube.com/watch?v=W31xBdl5tNA
1•nomilk•26m ago•0 comments

IBM shares plummet 13% after Anthropic COBOL announcement

https://www.forbes.com.au/news/investing/ibm-shares-plummet-13-worst-day-since-2000-after-anthrop...
3•GaryBluto•30m ago•1 comments

The Sender Sub-Language (C++) [pdf]

https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2026/p4014r0.pdf
1•gpderetta•30m ago•0 comments

Show HN: Use this to optimise your CV

https://www.cvcomp.com
1•prashasthajain1•31m ago•0 comments

Is it possible to manipulate your social-media algorithms?

3•JonnyDamnedFox•32m ago•0 comments

Copyright Can Survive in the Age of AI

https://www.ip.mpg.de/en/research/research-news/copyright-in-the-age-of-ai.html
1•JeanKage•34m ago•1 comments

Stick Hero controlled by trackpad pressure (Mac Force Touch, Safari playable)

https://stick-hero-pressure.vercel.app
1•booffa•35m ago•2 comments

SSH Virtual Hosting: No Host Header, but Public Key

https://blog.exe.dev/ssh-host-header
1•pvtmert•36m ago•1 comments
Open in hackernews

Ask HN: Help with doing statistics over machine code

2•phafu•9mo ago
I'd like to do some statistics over the machine code gcc generates, such as a histogram of used instructions, average volatile/preserved registers usage of functions etc. For now just x86_64 SysV-ABI would be enough.

However I'm not aware of any pre-existing tool that lets me easily do this. The options I currently see are either make gcc output assembly and write a parser for the GNU Assembler format (possibly by reusing the asm-parser of the compiler-explorer project), or write a tool that reads (disassembles) object files directly using elfutils.

Any hints, prior work, further ideas, links to useful resources, or any other kind of help would be much appreciated.

Comments

baobun•9mo ago
"Static analysis" should be a relevant search term. Assuming you don't need to tie the instructions back to C code then the "gcc" part seems circumstancial for implementation? I guess you might want to parse the ASM into an Abstract Syntax Tree (AST) represenation and work on that?

If you do want to tie it back to the source, this looks relevant: http://icps.u-strasbg.fr/~pop/gcc-ast.html

phafu•9mo ago
For my purpose I don't need to get back to the original source, no.

The gcc part is only relevant with regards to what dialect of assembler I need to parse. If I go that route, I'd write a parser for the GNU assembler, and that would of course work with any code in that dialect, regardless from which compiler it came from (I haven't checked whether other compilers can produce GNU assembler though).