frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Hugging Face CEO says China is winning the AI race and dominating on open models

https://www.cnbc.com/2026/08/03/hugging-face-china-ai-race-open-models.html
1•igravious•3m ago•0 comments

If the markets reject OpenAI and Anthropic, the US should nationalize them

https://www.theguardian.com/commentisfree/2026/aug/12/openai-anthropic-ai-models
2•cdrnsf•3m ago•0 comments

We tested every venue in 2 Bali regions against 4 AI assistants

https://arxiv.org/abs/2608.07069
1•fspunch•5m ago•0 comments

HashAgent – Share an AI agent as a URL, runs locally via WebGPU

https://hashagent.pages.dev/
1•masonhsu•5m ago•0 comments

OpenAI Just Made Analytics 10x Cheaper

https://motherduck.com/blog/openai-just-made-analytics-10x-cheaper/
1•tosh•5m ago•0 comments

TrustContent – a creator directory where you can only endorse 3 people

https://trustcontent.co
1•Natsiiirt•5m ago•0 comments

We built a report designer for Blazor and 4 components along with it

https://blazorise.com/blog/release-notes/230
1•stsrki•9m ago•1 comments

"DNS Authentication: DMARC Fail" in Mimecast: What It Means and How to Fix It

https://dmarcguard.io/blog/dmarc-fail-mimecast-fix/
1•meysamazad•10m ago•0 comments

Yes, you still need to know fundamentals even with AI

https://karnwong.me/posts/2026/08/yes-you-still-need-to-know-fundamentals-even-with-ai/
2•meysamazad•10m ago•0 comments

VLC blames Windows 11 bug for slow performance, calls out Microsoft

https://www.windowslatest.com/2026/08/14/vlc-blames-windows-11-bug-for-slow-performance-defends-o...
1•ninko•10m ago•0 comments

Reddit joining S&P 500 after months of speculation. Analysts have concerns

https://www.marketwatch.com/story/reddit-is-joining-the-s-p-500-after-months-of-speculation-analy...
1•bookofjoe•10m ago•1 comments

The Hidizs AP30 Music Boy

https://blog.omgmog.net/post/hidizs-ap30-music-boy/
1•meysamazad•10m ago•0 comments

From Europe to Asia, floods to heatwaves, world experiences weather shocks

https://www.npr.org/2026/08/14/g-s1-138727/europe-asia-floods-heatwaves-world-weather
1•geox•10m ago•0 comments

How Will the 21st Century Road to Housing Act Affect Housing Supply? Part II

https://www.construction-physics.com/p/how-will-the-21st-century-road-to
1•crescit_eundo•11m ago•0 comments

RISC-V: They Should Have Known Better

https://dmitry.gr/?r=06.%20Thoughts&proj=12.%20RV
1•dmitrygr•11m ago•0 comments

Beyond C: wrapping Dear ImGui in Swift with zero FFI

https://carette.xyz/posts/swift_cpp_compatibility_with_raylib_and_imgui/
1•LucidLynx•11m ago•0 comments

The "Disability Dongle": Why Silicon Valley Hates Me and You

https://sightlessscribbles.com/posts/disability-dongle/
2•speckx•13m ago•0 comments

Generational Emoji Wars Are Back

https://www.nytimes.com/interactive/2026/08/12/upshot/emoji-generations.html
1•lacieargyle•14m ago•0 comments

Ch-kit – OS ClickHouse schema management and migrations, TypeScript and Python

https://chkit.obsessiondb.com/blog/chkit-python/
3•lgvdp•14m ago•1 comments

Dtsort: A decision-tree based stable sort that beats std:stable_sort

https://github.com/michals/dtsort/
1•trpaslik•15m ago•0 comments

Show HN: We Implemented the IPv8 Internet-Draft in Linux, Libc, and BGP

https://goonhost.rocks/blog/implementing-ipv8-internet-draft
1•turborigby•16m ago•0 comments

Reproducing Split Brain on CloudNativePG

https://coroot.com/blog/reproducing-split-brain-on-cloudnativepg/
1•valyala•18m ago•0 comments

AI will converge towards intuition-guided symbolic world modeling

https://twitter.com/fchollet/status/2072779641639875048
1•tosh•19m ago•0 comments

A Space Expert Hoped to Use Eclipse as Science Class. The DJs Had Other Plans

https://www.nytimes.com/2026/08/12/world/europe/spain-eclipse-astrophysicist-festival.html
1•reaperducer•19m ago•0 comments

DeepSeek V4 Flash 0731 latency numbers from nine providers

https://oskrim.github.io/engineering/2026/08/14/deepseek-v4-flash-providers.html
2•oskrim•19m ago•0 comments

Emotion Explorer

https://feel.ifsart.com/
1•speckx•20m ago•0 comments

Show HN: RoleSweep – job search that deletes listings when employers close them

https://rolesweep.com
2•chetanba•26m ago•0 comments

Mosaic – self-hosted portfolio analytics for UK Stocks and Shares ISAs

https://github.com/ishantanu/mosaic-portfolio
1•ishantanu10•26m ago•0 comments

SEtting up AI search rank tracking easily

https://github.com/razz1000/ai-search-rank-tracking-example-repo
1•RasmusSoerensen•26m ago•0 comments

TMDB records Apple TV+ air dates a day early, on purpose

https://watchnext.leyu.studio/blog/apple-tv-air-dates-off-by-one
1•oujan•27m 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).