frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

NativePHP for Mobile v2: Now with true native components

https://nativephp.com/docs/mobile/2/the-basics/native-components
1•simonhamp•1m ago•0 comments

Adversarial Captcha for Breaking MLLM-Powered AI Agents

https://arxiv.org/abs/2511.20494
1•bron123•1m ago•1 comments

Show HN: Litterbox – Defend Against Supply Chain Attacks

https://litterbox.work/
1•Gerharddc•1m ago•0 comments

Show HN: S0 – A minimal invariant protocol for collective state transitions

https://github.com/jengbeng/s0-protocol
1•jengbeng•6m ago•0 comments

We keep wondering why design to code still feels this broken

https://www.indiehackers.com/post/we-keep-wondering-why-design-to-code-still-feels-this-broken-Mn...
1•lyn03•7m ago•0 comments

Show HN: I'm bringing back StumbleUpon with ByteShuffle

https://www.byteshuffle.net/
1•skylinesystems•7m ago•0 comments

Galaxies Struggle to Grow in Crowded Environments

https://www.universetoday.com/articles/galaxies-struggle-to-grow-in-crowded-environments
1•ashishgupta2209•9m ago•0 comments

C REPL with Dynamically Linked Libraries

https://github.com/tsoding/crepl
1•trevcanhuman•10m ago•0 comments

SQLite as an Application File Format

https://sqlite.org/appfileformat.html
1•gjvc•12m ago•0 comments

Free, online HEIC→JPG–batch ready, privacy-safe, no uploads

https://heicjpgnow.com
1•zgm13827•13m ago•1 comments

Show HN: WhatsApp AI for Your Daily Workflow

https://closeby.tel
1•riadeno•14m ago•1 comments

The FeverFriend app helps fever to heal your child

https://feverfriend.eu/
1•nikolay•18m ago•1 comments

A vulnerability in OpenReview allows unauthorized access to anonymous identities

https://openreview.net/forum/user%7Cstatement_regarding_api_security_incident
1•Mzxr•19m ago•0 comments

Github.com/Wp-Admin/Index.php

https://github.com/wp-admin/index.php
2•halapro•21m ago•0 comments

Gulper sharks are being killed to make cosmetics. New laws could save them

https://www.cnn.com/science/deepwater-sharks-extinction-protection-laws-c2e-spc
2•breve•22m ago•0 comments

How long would it take an ice hockey puck to travel across London? (daily game)

https://nerdlegame.com/guesswhat/
1•himmelattack•25m ago•1 comments

AZuroNanoOpt v6.1 – Hyper-Compact Edge AI Optimizer

https://test.pypi.org/project/azuronanoopt-kr
1•DREDREG•28m ago•1 comments

Fun with incident data and statistical process control

https://surfingcomplexity.blog/2025/11/27/fun-with-incident-data-and-statistical-process-control/
1•ingve•30m ago•0 comments

DeepChat for Chrome can take actions for user within the browser

https://chromewebstore.google.com/detail/deepchat-chatgpt-sidebar/lhpgkeanbbanaebpobhejoahoknphdhh
1•huang-b62b5756•32m ago•0 comments

Maker Z1 Review: The Ultimate Entry-Level Desktop CNC [video]

https://www.youtube.com/watch?v=8pV940bk2kc
1•Klaster_1•35m ago•0 comments

Artificial Intelligence: A Modern Approach

https://aima.cs.berkeley.edu
2•swatson741•37m ago•0 comments

Show HN: Turn your site into a demo video with one URL

https://autoads.pro
7•lococococo•38m ago•0 comments

A foundation for building tools on the AT Protocol using Unison

https://notes.kaushikc.org/3m6kc5nudgc2x?auth_completed=true
1•todsacerdoti•39m ago•0 comments

I took some random bets in life about what should I do and now I am stuck

1•hopeful_coder•43m ago•0 comments

Duke Nukem 3D running on Arduino matter board

https://community.silabs.com/s/share/a5UVm0000011Q1VMAU/porting-duke-nukem-3d-to-arduino-nano-mat...
4•alejandrosalva•43m ago•0 comments

Ask HN: E-Book or Audio-Book

1•jsxyzb•56m ago•1 comments

Agentic Coding Is Anything But

https://matcohle.me/agentic-coding-is-anything-but/
1•mathewcohle•57m ago•2 comments

Pearly kings and queens of London in their 150th year – photo essay

https://www.theguardian.com/artanddesign/2025/nov/28/pearly-kings-and-queens-of-london-in-their-1...
1•bifftastic•1h ago•0 comments

Show HN: SiteIQ – LLM and Web security testing tool (built by a high schooler)

https://github.com/sastrophy/siteiq
2•sastrophy•1h ago•0 comments

Rethinking Duplication

https://medium.com/@HobokenDays/rethinking-duplication-c1f85f1c0102
3•HideInNews•1h 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•6mo 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 :)