frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

There Is No 'Hard Problem of Consciousness'

https://www.noemamag.com/there-is-no-hard-problem-of-consciousness/
1•ahalbert4•32s ago•0 comments

Building a multi-agent system from scratch: 50 lines of bash and Git

https://en.andros.dev/blog/ed26ea98/building-a-multi-agent-system-from-scratch-50-lines-of-bash-git/
1•thunderbong•1m ago•0 comments

Multiple commencement speakers booed for AI comments during graduation speeches [video]

https://www.youtube.com/watch?v=xwWaoyIy5e8
1•mgh2•3m ago•0 comments

Turn inbound call recordings into structured JSON

https://www.gensail.com/call-data-extraction
1•vartana•3m ago•0 comments

What A.I. Did to My College Class

https://www.nytimes.com/2026/05/17/opinion/chatgpt-ai-college-school-graduation.html
2•mmooss•9m ago•1 comments

Ben Affleck Banned from Hard Rock Casino When Caught Counting Cards (2014)

https://www.yahoo.com/entertainment/ben-affleck-banned-hard-rock-casino-counting-cards-223154372....
1•thunderbong•14m ago•0 comments

LLM Performance by Programming Language

https://gertlabs.com/blog/llm-performance-by-language
2•gertlabs•16m ago•1 comments

First-Ever Tokenized Space Tourism: AI and Space and Blockchain

https://cccforgc.com/
1•cccxtha•19m ago•0 comments

Archivists Turn to LLMs to Decipher Handwriting at Scale

https://spectrum.ieee.org/ai-handwriting-transcription-transkribus-lecun
1•pseudolus•19m ago•0 comments

Dot-Coms That Deliver (2001)

https://books.google.com/
1•Apocryphon•20m ago•3 comments

The American epoch of oil is collapsing. What comes next could be ugly

https://www.theguardian.com/us-news/ng-interactive/2026/may/17/america-china-energy-oil-renewables
3•nithinj•21m ago•0 comments

AI Leak Watch: 435,608 potential AI API key matches in public GitHub code

https://ai-keys-leaks.begimher.com/
1•dan_l2•22m ago•0 comments

The automation of jobs will never end

https://metastable.org/never-end/
1•pbw•26m ago•0 comments

Why Panama Is the Ideal Destination for Real Estate Investment

https://serviciosdebienesyraices.com/why-panama-is-the-ideal-destination-for-real-estate-investment
1•friwill•31m ago•0 comments

Spirit Airlines Passenger Brings 'Emotional Support' Rotisserie Chicken Thru TSA

https://viewfromthewing.com/spirit-airlines-passenger-brings-emotional-support-rotisserie-chicken...
4•rawgabbit•32m ago•0 comments

Possible atmosphere detected on small trans-Neptunian object

https://www.smithsonianmag.com/smart-news/this-tiny-celestial-body-past-pluto-shouldnt-have-an-at...
3•pavel_lishin•37m ago•0 comments

Slop Bucket Idea – a dataset of AI slop (train AI what not to do)

2•IAmNeo•48m ago•4 comments

Hubris of Timing: Why being right abt the future isnt enough to capitalize on it

https://deciens.com/press-and-insights/epistula-14-the-hubris-of-timing
2•ryan_j_naughton•50m ago•0 comments

How fast is N tokens per second really?

https://mikeveerman.github.io/tokenspeed/
5•hexagr•55m ago•2 comments

Students deserve better than COLLEGE

https://stanforddaily.com/2026/05/14/students-deserve-better-than-college/
2•johntfella•59m ago•1 comments

Show HN: Dashbuster – Replace em dashes on any website

https://chromewebstore.google.com/detail/dashbuster/pnfhimkhinoecknjhlggdbgoajcogfll
1•qainsights•1h ago•0 comments

I went inside OpenAI's secretive San Francisco headquarters

https://www.sfgate.com/tech/article/openai-san-francisco-headquarters-22259754.php
2•bryan0•1h ago•0 comments

Most Americans don't trust AI – or the people in charge of it

https://www.theverge.com/ai-artificial-intelligence/644853/pew-gallup-data-americans-dont-trust-ai
6•cdrnsf•1h ago•0 comments

Apple announced the iPhone 17e with a chip developed in Israel

https://www.jpost.com/consumerism/article-888680
6•banku_brougham•1h ago•6 comments

Show HN: How to Kill the Dead Internet

https://chromewebstore.google.com/detail/d-slop/cnjeckkgbjgfledbphbobjabnfjnheef
4•bigger_fish•1h ago•1 comments

Microsoft will let you remap the Copilot key to restore right ctrl functionality

https://support.microsoft.com/en-us/accessibility/windows/copilot/understand-updates-to-the-copil...
2•razorbeamz•1h ago•0 comments

Tracking Skyscraper-Size Asteroids, Failed Supernovas and Interstellar Visits

https://www.quantamagazine.org/rubin-tracks-skyscraper-size-asteroids-failed-supernovas-and-inter...
2•tzury•1h ago•0 comments

I built a local layer that kills Token Tax–Python lib+Chrome extension+Mac app

https://omna.dev/
1•gauravji•1h ago•0 comments

Terms of (Ab)Use: An Analysis of GenAI Services [pdf]

https://arxiv.org/abs/2603.18964
2•droidjj•1h ago•0 comments

ArXiv will ban authors for a year if they let AI do all the work

https://techcrunch.com/2026/05/16/research-repository-arxiv-will-ban-authors-for-a-year-if-they-l...
2•0in•1h 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).