frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Implicit Bias in Large Language Models with Concept Learning Dataset

https://arxiv.org/abs/2510.01219
1•PaulHoule•1m ago•0 comments

Semi-crystalline and amorphous materials via multi-temperature 3D printing

https://www.nature.com/articles/s41467-025-64092-9
1•gnabgib•1m ago•0 comments

Recovering videos from my Sony camera that I stupidly deleted

https://www.jeffgeerling.com/blog/2025/recovering-videos-my-sony-camera-i-stupidly-deleted
1•speckx•3m ago•0 comments

Honeydiff: Fast, Rich Image Diffing for Modern Visual Testing

https://vizzly.dev/blog/honeydiff-fast-image-diffing-foundation/
1•Robdel12•3m ago•1 comments

Invisible secret codes using materials that react to temperature

https://www.tuwien.at/en/tu-wien/news/news-articles/news/unsichtbare-geheimcodes-aus-dem-3d-drucker
1•giuliomagnifico•4m ago•0 comments

U.S. Details Gambling Cases Involving Pro Athletes and Mafia Families

https://www.nytimes.com/live/2025/10/23/nyregion/nba-illegal-gambling-arrests
2•ilamont•4m ago•0 comments

Retina e-paper promises screens 'visually indistinguishable from reality'

https://newatlas.com/materials/retina-e-paper/
1•jamiek88•5m ago•0 comments

Hacker News Front Page: what 26 hours of traffic got us

https://blog.abdellatif.io/hackernews-front-page-26-hours-traffic
5•tifa2up•6m ago•1 comments

Scaling Innovation: Building Ecosystems

https://hazelweakly.me/blog/scaling-innovation-building-ecosystems/
1•mattstratton•6m ago•0 comments

Tusko's Last Trip

https://www.theguardian.com/science/2004/feb/26/research.science
1•atomicnature•7m ago•0 comments

Shopify Addresses Accessibility Lawsuits

https://www.shopify.com/news/accessibility-lawsuits
1•jztan•8m ago•0 comments

Nginx Site Manager: web-based Nginx management platform

https://github.com/Adewagold/nginx-server-manager
2•thunderbong•8m ago•0 comments

Apple loses landmark UK lawsuit over app store commissions

https://www.reuters.com/sustainability/boards-policy-regulation/apple-loses-uk-lawsuit-over-app-s...
2•pseudolus•8m ago•0 comments

Ask HN: Have You Seen?

1•mmaunder•8m ago•0 comments

Sakana AI CTO says he's 'sick' of transformers that powers every major AI model

https://venturebeat.com/ai/sakana-ais-cto-says-hes-absolutely-sick-of-transformers-the-tech-that-...
1•hardmaru•8m ago•0 comments

Literal crossed wires sent cops after innocent neighbors in child abuse case

https://www.theregister.com/2025/10/17/crossed_wires_iioc_case/
1•hashim•10m ago•0 comments

Characterizing Cryptocurrency-Themed Malicious Browser Extensions

https://cacm.acm.org/research-highlights/characterizing-cryptocurrency-themed-malicious-browser-e...
1•FromTheArchives•12m ago•0 comments

Statement from Anthropic CEO on Commitment to US AI Leadership

https://www.anthropic.com/news/statement-dario-amodei-american-ai-leadership
1•dgs_sgd•12m ago•0 comments

Ask HN: Why can't majority of western kids survive in third world country?

1•findingMeaning•12m ago•2 comments

Ergodicity Detection Algorithms

https://arxiv.org/abs/2508.08319
1•northlondoner•13m ago•1 comments

Cryptocurrency Browser-Extension Security: A Wake-Up Call and a Way Forward

https://cacm.acm.org/research-highlights/technical-perspective-cryptocurrency-browser-extension-s...
2•FromTheArchives•14m ago•0 comments

Show HN: Pg_textsearch – BM25 Ranking for Postgres

https://docs.tigerdata.com/use-timescale/latest/extensions/pg-textsearch/
3•tjgreen•16m ago•0 comments

Show HN: Distil-NPC: a family of models for non-playable characters in games

https://github.com/distil-labs/Distil-NPCs
2•party-horse123•16m ago•0 comments

I built a Dota 2 hero similarity map using neural networks

https://blog.spawek.com/Dota2_hero_similarity_map
2•Spawek•16m ago•1 comments

Something Vile This Way Flows

https://www.kentik.com/go/ebook/something-vile-this-way-flows/
2•oavioklein•18m ago•0 comments

Solved by Modern CSS: Section Layout

https://ishadeed.com/article/modern-css-section-layout/
1•speckx•19m ago•0 comments

Tamper-Sensing Meshes Using Low-Cost, Embedded Time-Domain Reflectometry

https://jaseg.de/blog/paper-sampling-mesh-monitor/
1•luu•19m ago•0 comments

Alpha Arena: AI Trading Competition

https://nof1.ai/
1•nycdatasci•20m ago•0 comments

How Test Time Compute Algorithms Impact Different Models

https://neurometric.substack.com/p/the-power-of-inference-time-compute-327
1•robmay•21m ago•0 comments

A programmer got Doom to run on a space satellite

https://www.zdnet.com/article/how-a-programmer-got-doom-to-run-on-a-space-satellite-and-what-happ...
3•Owlsfordays•21m ago•0 comments
Open in hackernews

Show HN: Plot lines of code over time in Git repositories

https://github.com/emanueldonalds/git-loc-plot
2•genericspammer•5mo ago
It's a small wrapper around cloc (https://github.com/AlDanial/cloc), which just provides a convenient way to plot lines of code over time in a Git repository.

The script runs cloc on each commit in your current branch, starting from HEAD tracing back until the first commit.

For large repositories with many commits, you can tell it to only count every n:th commit with the '--step' option to speed up processing.

The way it works is quite sub-optimal, since every single file is counted in each commit, even if the file didn't change since last iteration. Might be a fun project later to find some nice optimizations, maybe by counting files one by one and keeping a dict of line count by file hash, or something along those lines.

Maybe someone will find this script useful, maybe not, anyways happy to hear if someone has any thoughts :)