frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Vibe Coding Does Not Have One Definition, It Has One per Developer

https://dupflo.dev/blog/vibe-coding-has-one-definition-per-developer/
1•dupflo•24s ago•0 comments

An AI agent sliced through an enterprise defenses in 10 hours

https://unit42.paloaltonetworks.com/ai-assisted-cyber-attack-inside-a-unit-42-investigation/
1•scottmas•46s ago•0 comments

21st Revision of Patches for Getting Linux to Shutdown Devices Asynchronously

https://www.phoronix.com/news/Linux-Shutdown-Async-21
1•Bender•52s ago•0 comments

Live Atomic Spatial Audio

https://panaudia.com/
1•paulharter•1m ago•0 comments

Show HN: Eliminating low-LTV support ticket spam with grounded RAG

https://fireflysupport.io/
1•saturn5k•4m ago•1 comments

Elevated Errors for Multiple Models

https://status.claude.com/incidents/461yvfrzpwtt
4•__vivek•5m ago•0 comments

GLP-1 treatment late in life extends lifespan in animal model

https://www.nih.gov/news-events/news-releases/glp-1-treatment-late-life-extends-lifespan-animal-m...
2•DeepLogin•5m ago•0 comments

Data Science Weekly – Issue 667

https://datascienceweekly.substack.com/p/data-science-weekly-issue-667
1•sebg•5m ago•0 comments

UK's Online Safety Act has made 'absolutely no difference,' kids say

https://www.theregister.com/security/2026/09/03/uks-online-safety-act-has-made-absolutely-no-diff...
1•Bender•5m ago•0 comments

Telstra: What we've learned from the external investigation of our July outage

https://www.telstra.com.au/exchange/what-we-ve-learned-from-the-external-investigation-of-our-july-o
1•throw0101d•6m ago•0 comments

FCC plans robocall scorecard to grade phone companies on spam call blocking

https://arstechnica.com/tech-policy/2026/09/fcc-plans-robocall-scorecard-to-grade-phone-companies...
3•Bender•6m ago•1 comments

Nvidia Agrees to Buy Hugging Face for $13B

https://www.wsj.com/tech/ai/nvidia-agrees-to-buy-hugging-face-for-13-billion-11929060
2•JumpCrisscross•6m ago•0 comments

Show HN: Royalty free UI avatars for Figma/React

https://radianui.com/resources/avatar
2•Ashmit72•6m ago•0 comments

Show HN: Openvurp – A wallet of AI agents that use tools and consult each other

https://github.com/openvurp/openvurp
1•vforno•8m ago•0 comments

Inside The Medical AI Factory

https://kaiko.ai/insights-hub/ai-factory/
1•denysvitali•10m ago•0 comments

Stop building your product three times: APIs, MCP and agents should be one stack

https://bump.sh/blog/api-mcp-agents-one-stack/
1•scharrier•12m ago•0 comments

Pgmigrate – Pgcopydb Rewritten in Go

https://github.com/GetStream/pgmigrate
1•tbarbugli•12m ago•1 comments

Ask HN: Founders that raised funding and shutdown, did you raise again?

2•asim•12m ago•0 comments

Yojimbo 1.11.0

https://github.com/mas-bandwidth/yojimbo/releases/tag/v1.11.0
2•klaussilveira•12m ago•0 comments

Robotaxis Aren't Going Where They Are Needed Most

https://www.bloomberg.com/news/articles/2026-09-03/the-improbable-case-for-the-rural-robotaxi
1•toomuchtodo•13m ago•1 comments

The Little-Known Link Between Dementia and Epilepsy

https://www.nytimes.com/2026/08/18/well/mind/dementia-epilepsy-risk.html
1•bookofjoe•15m ago•1 comments

Rpkiviews.org: global RPKI reached 1M unique VRPs

https://lists.nanog.org/archives/list/nanog@lists.nanog.org/message/SIMCPK4W72G4YLLYNAVHDW35YMKC6...
1•speckx•20m ago•0 comments

C2PA Issues and Evaluation (2025) [pdf]

https://hackerfactor.com/papers/c2pa-issues-2025-06-09.pdf
1•1317•20m ago•0 comments

Record Keeping Became Writing

https://apfleming.netlify.app/posts/record-keeping/
1•afleming9796•21m ago•0 comments

The Rise of HOMs: Harmful Open Models

https://twitter.com/frances23398579/status/2095187528655503366
2•FrancescoMassa•22m ago•0 comments

Fedora 46 Proposal Wants to Provide Official Support for Crystal Language

https://www.phoronix.com/news/Fedora-46-Proposal-Crystal
1•Qem•22m ago•0 comments

Logos Not Found

https://valand.dev/blog/post/logos-not-found
1•valand•23m ago•0 comments

Every fix has a radius – blast radius

https://blastradius.dpdns.org/
1•codebyaditya•23m ago•0 comments

Show HN: MrEditor – a Mac editor that opens a 10 GB log in 100ms and edits it

https://github.com/MR-TABATA/MrEditor
4•hitoshi1964•24m ago•0 comments

What's in the Emacs newcomers-presets theme?

https://sachachua.com/blog/2026/04/what-s-in-the-emacs-newcomers-presets-theme/
2•birdculture•25m ago•0 comments
Open in hackernews

Ask HN: Help with doing statistics over machine code

2•phafu•1y 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•1y 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•1y 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).