frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

This Month in Redox – February 2026

https://www.redox-os.org/news/this-month-260228/
2•ladyanita22•1m ago•0 comments

Reverse-Engineering Google Authenticator's Internal Passbox API

https://github.com/poloputoamo/google-passbox
1•poloputoamo•1m ago•0 comments

Claude Code told me what tools it needs to work faster

https://sderosiaux.substack.com/p/claude-code-told-me-what-tools-it
3•chtefi•4m ago•0 comments

Show HN: AI agents that run real user interviews

https://github.com/junetic/usercall-mcp
1•jic00•4m ago•0 comments

Amazon is down in an apparent outage affecting shoppers

https://www.businessinsider.com/amazon-down-outage-payment-failure-shoppers-downdetector-2026-3
1•empressplay•5m ago•0 comments

Ecuadorean troops find 35M-long 'narco-sub' hidden in nature reserve

https://www.bbc.com/news/articles/cd6zz65vg0qo
1•tartoran•5m ago•0 comments

The Foundations of Tomorrow

https://blog.amaranth.foundation/p/the-foundations-of-tomorrow
1•eamag•7m ago•0 comments

Should You Be a Carpenter? [video]

https://www.youtube.com/watch?v=RJyPVLMyyuA
1•surprisetalk•9m ago•0 comments

SIPA: Auditing Physical Integrity in World Models and Robotics(Isaac SIM,Marble)

https://discourse.openrobotics.org/t/sipa-quantifying-physical-integrity-and-the-sim-to-real-gap-...
1•ZuoCen_Liu•10m ago•1 comments

Anchor Engine:(Star) Memory for LLMs, Local-First and <3GB RAM

https://github.com/RSBalchII/anchor-engine-node
1•BERTmackl1n•11m ago•0 comments

Ask HN: How to get resume noticed and a callback?

1•wpoint•11m ago•3 comments

The Entrepreneur's Epilogue and the Paradox of Success [pdf]

https://som.yale.edu/sites/default/files/2025-04/What%E2%80%99s%20Next%20The%20Entrepreneur%E2%80...
1•scottndecker•11m ago•0 comments

Show HN: Punching Procrastination in the Face

https://timeisluck.app/
1•PaulMontreal•12m ago•0 comments

Eisenmenger Syndrome

https://en.wikipedia.org/wiki/Eisenmenger_syndrome
1•wjb3•16m ago•0 comments

Anthropic launches AI job destruction detector

https://www.axios.com/2026/03/05/anthropic-ai-jobs-claude
2•samizdis•16m ago•0 comments

US gov't preps export controls for Nvidia, AMD AI hardware

https://www.tomshardware.com/tech-industry/artificial-intelligence/us-govt-preps-sweeping-export-...
1•llm_nerd•16m ago•0 comments

Custom Data Structures in E-Graphs

https://uwplse.org/2026/02/24/egglog-containers.html
1•matt_d•17m ago•0 comments

Age Verification: Protection Tool or Surveillance in Disguise?

https://itsfoss.com/news/our-take-on-age-verification/
2•abdelhousni•18m ago•2 comments

Google Ads for Dummies

https://zerotoads.com/
1•santiviquez•21m ago•0 comments

Apple Blocks US Users from Downloading ByteDance's Chinese Apps

https://www.wired.com/story/bytedance-apps-are-no-longer-available-in-us-app-stores/
2•tjwds•22m ago•0 comments

Show HN: BurnShot v2.0 – Zero-Knowledge ephemeral sharing

https://www.burnshot.app/
1•axaysharma•23m ago•0 comments

The entrancing sea pulpits of central Europe

https://www.worldofinteriors.com/story/sea-pulpits-central-europe
1•speckx•24m ago•0 comments

Claude hit #1 on the iOS App Store in 14 countries

https://xcancel.com/RyD0ne/status/2029595911127724247
2•doener•25m ago•0 comments

EPO's new search tool for examiners now used in over 40 national patent offices

https://www.epo.org/en/news-events/news/epos-next-generation-search-tool-examiners-now-used-over-...
1•JeanKage•25m ago•0 comments

Andrew Ng's Building LLMs with Jax

https://learn.deeplearning.ai/courses/build-and-train-an-llm-with-jax/information
2•northlondoner•25m ago•0 comments

Show HN: GitHub-powered instant developer portfolios

https://remotedevelopers.com/lander
2•plsft•26m ago•0 comments

Sycophantic AI is changing the world of romance and dating

https://economist.com/culture/2026/03/05/who-wants-a-partner-to-toady-to-them-quite-a-lot-of-people
2•loughnane•26m ago•0 comments

Ask HN: Is Waymo Down?

1•philip1209•27m ago•0 comments

Two marsupials believed extinct for 6000 years found alive

https://www.newscientist.com/article/2518082-two-marsupials-believed-extinct-for-6000-years-found...
3•janandonly•27m ago•0 comments

Show HN: Expose The Culture – Anonymous company culture reviews

https://exposetheculture.com
1•david_fanxie•28m ago•0 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).