frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Moloch: A Revival of the Metropolis LaTeX Beamer Theme

https://jolars.co/blog/2024-05-30-moloch/
1•gjvc•1m ago•0 comments

And fastest domain search website

https://instantdomainsearch.com
1•amukbils•1m ago•1 comments

Euclyd launches "Craftwerk" silicon to shave AI inference cost and power by 100×

https://euclyd.ai/
1•stefvw93•2m ago•0 comments

We Rewrote Our Startup from PHP to Gleam in 3 Weeks

https://www.radical-elements.com/minor-epiphanies/we-rewrote-our-startup-from-php-to-gleam-in-3-w...
1•kamilap•2m ago•0 comments

Show HN: SafeShare – Clean tracking params locally (PWA and bookmarklets

https://j-ai-71.github.io/Supersystem/
1•safeshare•4m ago•0 comments

Ilya Sutskever – We're moving from the age of scaling to the age of research

https://youtu.be/aR20FWCCjAs?si=SD1bp8f5jOcUdl78
1•blufish•6m ago•0 comments

AI Tools Dashboard (Updated Daily)

https://phshort.com/ai
1•mohamadkk7•6m ago•0 comments

Show HN: God's Eye – Subdomain recon with local AI analysis

https://github.com/Vyntral/god-eye
1•vyntral•6m ago•0 comments

Larry Ellison Met with Trump to Discuss Which CNN Reporters They Plan to Fire

https://www.techdirt.com/2025/11/25/larry-ellison-met-with-trump-to-discuss-which-cnn-reporters-t...
3•throw0101a•6m ago•0 comments

Nimbalyst: WYSIWYG Markdown editor with visual diffs powered by Claude Code

https://github.com/Nimbalyst/nimbalyst
2•wek•8m ago•0 comments

DJI ROMO robot vacuum [video]

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

Show HN: StepKit, an open and cross-platform durable execution standard

12•tonyhb•9m ago•1 comments

93% Faster Next.js in (Your) Kubernetes

https://blog.platformatic.dev/93-faster-nextjs-in-your-kubernetes
1•chrisdoc•11m ago•0 comments

Atlassian's DR simulation showed it lived in dependency hell

https://www.theregister.com/2025/11/25/atlassian_dependency_migration/
1•BerislavLopac•12m ago•0 comments

LJV – Lissajous Curve Music Visualization

https://github.com/ThatXliner/ljv
1•thatxliner•12m ago•0 comments

Economist get cold feet about high minimum wages

https://www.economist.com/finance-and-economics/2025/11/20/economists-get-cold-feet-about-high-mi...
1•gdudeman•14m ago•1 comments

Visualizing the Sorites Paradox via LLM Probability Logits

https://joshfonseca.com/blogs/sorites-paradox
1•vuciv•14m ago•1 comments

Show HN: We built an open source, zero webhooks payment processor

https://github.com/flowglad/flowglad
16•agreeahmed•15m ago•10 comments

HubSpot forms are under attack by bots–how do you protect CRM data?

1•rayyanabrar76•16m ago•0 comments

Tampa men charged with smuggling Nvidia chips to China

https://www.tampabay.com/news/crime/2025/11/21/china-computer-chip-smuggling-tampa-nvidia-ai-arre...
1•donsupreme•16m ago•1 comments

It Is OK to Say "CSS Variables" Instead of "Custom Properties"

https://blog.kizu.dev/css-variables/
1•eustoria•17m ago•0 comments

Lowercase head behaves differently in Git worktrees

https://www.brandonpugh.com/til/git/head-is-case-sensitive/
1•eustoria•18m ago•0 comments

Google attacking human thought with Gemini in Google Keep

4•fellowniusmonk•20m ago•0 comments

Modular Code with Reusable Standalone Modules

https://massimo-nazaria.github.io/reusable-standalone-modules.html
1•massimo-nazaria•22m ago•0 comments

Wave of mass brutality accompanied the collapse of first pan-European culture

https://www.science.org/content/article/headless-bodies-hint-why-europe-s-first-farmers-vanished
5•mzs•22m ago•0 comments

Show HN: Memory System Hitting 80.1% Accuracy on LoCoMo (Built in 4.5 Months)

https://github.com/vac-architector/VAC-Memory-System
2•ViktorKuz•23m ago•0 comments

Stop Telling Us XMPP Should Use JSON

https://www.process-one.net/blog/stop-telling-us-xmpp-should-use-json/
2•todsacerdoti•24m ago•0 comments

RDMA over Thunderbolt 5 on Apple Silicon – 14µs latency

https://twitter.com/anemll/status/1993182652204187929
2•anemll•25m ago•1 comments

FBI: Cybercriminals stole $262M by impersonating bank support teams

https://www.bleepingcomputer.com/news/security/fbi-cybercriminals-stole-262-million-by-impersonat...
4•fleahunter•25m ago•0 comments

Super-adjuvant nanoparticles for platform cancer vaccination

https://www.cell.com/cell-reports-medicine/fulltext/S2666-3791(25)00488-4
2•bookofjoe•27m ago•0 comments
Open in hackernews

Show HN: Smart GitHub Contribution Tracker – Fair analysis beyond line counts

https://github.com/kyliemckinleydemo/github-contribution-tracker
1•KylieM•1h ago
GitHub’s built-in analytics are misleading. They treat all lines equally, ignore work type differences, and are easy to game.

I created a free Google Sheets tool that provides fair, nuanced evaluation of contributions.

The problem it solves:

GitHub: “Developer A has 1,913 additions” → appears to be top contributor

This tool: “Developer A: 1,810 pts (40% features, 32% bug fixes, 10% testing)” → shows actual work composition and value

Smart features: • Automatically excludes starter code and library imports • Skips merge commits (no credit for just combining branches) • Minimum line thresholds prevent gaming • Tracks net changes (editing same lines repeatedly doesn’t inflate score) • Uses GitHub username to prevent duplicate entries

Use cases: CS course grading, team analytics, recognizing diverse contribution types beyond just code

Free, open source, runs entirely in Google Sheets (no installation).

https://github.com/kyliemckinleydemo/github-contribution-tra...

Comments

KylieM•1h ago
CS major here. Happy to answer questions! Why this matters:

In my team projects, GitHub’s line counts created really misleading pictures of contribution. A teammate who built a critical authentication system (200 lines) looked like they contributed less than someone who copy-pasted 500 lines of boilerplate config files.

How it works: The tool analyzes commit messages, file types, and change patterns to categorize work into 8 types: • Feature Creation (3.0x default weight) • Bug Fixing (2.0x) • Refactoring (0.7x-0.1x based on scope) • Testing (0.4x) • Documentation (0.3x) • Support Code (0.5x)

You can customize these weights for your project. Building an MVP? Crank up features. Paying down tech debt? Boost refactoring.

Gaming prevention: Students definitely try to game these systems, so it includes: • Minimum 10-line threshold for code commits • Auto-detection of starter code (“provided files”, “libcs50”, etc.) • Merge commit exclusion • Net change tracking per file (editing same lines repeatedly doesn’t help) • Configurable start date to exclude instructor code

Real example: In one project, GitHub showed: • Team Member A: 1,913 additions (looked like top contributor) • Team Member B: 959 additions • Team Member C: 603 additions

This tool revealed: • Team Member B: Actually delivered most value (70% high-impact features + critical bug fixes) • Team Member A: Balanced work (good mix of features, bugs, testing) • Team Member C: Infrastructure specialist (build system, CI/CD - invisible in line counts)

Tech details: • Runs on Google Apps Script (no server needed) • Calls GitHub REST API directly • All data stays in your Google Sheet • Takes about 5 minutes to set up • Works with private repos (just needs a personal access token)

Limitations: • Single repo only (multi-repo aggregation on roadmap) • GitHub only (no GitLab/Bitbucket yet) • Can’t measure code quality or business impact (just categorizes work types) • Line count is still imperfect, but it’s objective and measurable

What’s next: Considering: • Time-series analysis (contribution trends over time) • Team comparison views • Export to PDF reports • GitLab support

Would love feedback on what would be most useful! Try it: https://github.com/kyliemckinleydemo/github-contribution-tra...