Hacker News

Subscribe to Hacker News feed
Hacker News RSS
Updated: 1 hour 57 min ago

ByteDance Seed 2.0

Sun, 02/15/2026 - 3:10am

Article URL: https://seed.bytedance.com/en/seed2

Comments URL: https://news.ycombinator.com/item?id=47021944

Points: 1

# Comments: 0

Categories: Hacker News

Solve Everything

Sun, 02/15/2026 - 3:01am

Article URL: https://solveeverything.org/

Comments URL: https://news.ycombinator.com/item?id=47021899

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: GPACalc – Free GPA and CGPA Calculator (4.0/5.0/10.0 scales)

Sun, 02/15/2026 - 2:57am

Hi HN — I built GPACalc to help students quickly calculate GPA/CGPA and convert GPA to percentage across different grading systems (4.0, 5.0, and 10.0).

It also lets you estimate cumulative results from current CGPA, completed credits, and expected semester grades. It’s free, no sign-up, and mobile-friendly.

I’d really value feedback on:

missing grading scales or country systems confusing parts of the UX features that would make this more useful for students/counselors

Comments URL: https://news.ycombinator.com/item?id=47021885

Points: 1

# Comments: 1

Categories: Hacker News

Project Oberon: A Late Appraisal (2025)

Sun, 02/15/2026 - 2:56am
Categories: Hacker News

Need Help, the Softraid and Lvm

Sun, 02/15/2026 - 2:54am

I'm a novice. I'm asking this question not to cause any argument. I need to set up an internal server for the company. Initially, there were 8 4T hard drives. In the future, depending on business growth, it may increase to 32 or more. As a novice, I learned some knowledge about storage pools on the Internet. Only two cases met the requirements. Softraid and LVM. However, it's impossible to determine which one is more suitable for my needs. Additionally, I noticed that both of these technologies haven't had major feature upgrades for a long time. They seem to be quite mature. So I sincerely would like to ask which of these two technologies is more suitable for me. Thank you very much. Regardless of which one you prefer, please don't argue. Thank you again.

Comments URL: https://news.ycombinator.com/item?id=47021868

Points: 1

# Comments: 0

Categories: Hacker News

Are productivity gains due to AI hard-sell where you work?

Sun, 02/15/2026 - 2:46am

Comments URL: https://news.ycombinator.com/item?id=47021821

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: DocSync – Git hooks that block commits with stale documentation

Sun, 02/15/2026 - 2:20am

Hi HN,

I built DocSync because every team I've worked on has the same problem: documentation that was accurate when it was written and never updated after.

DocSync uses tree-sitter to parse your code and extract symbols (functions, classes, types). On every commit, a pre-commit hook compares those symbols against existing docs. If you added a function without documenting it, the commit is blocked.

How it works:

1. `clawhub install docsync` (free) 2. `docsync generate .` — generates docs from your code 3. `docsync hooks install` — installs a lefthook pre-commit hook 4. From now on, every commit checks for doc drift

Key design decisions: - 100% local — no code leaves your machine. Uses tree-sitter for AST parsing, not an LLM. - Falls back to regex if tree-sitter isn't installed - Uses lefthook (not husky) for git hooks — it's faster and language-agnostic - License validation is offline (signed JWT, no phone-home) - Free tier does one-shot doc generation. Pro ($29/user/mo) adds hooks and drift detection.

Supports TypeScript, JavaScript, Python, Rust, Go, Java, C/C++, Ruby, PHP, C#, Swift, Kotlin.

Landing page: https://docsync-1q4.pages.dev

Would love feedback on the approach. Is doc drift detection something your team would actually use?

Comments URL: https://news.ycombinator.com/item?id=47021705

Points: 1

# Comments: 0

Categories: Hacker News

Zero Dependency Markdown Editor

Sun, 02/15/2026 - 2:18am

Article URL: https://overtype.dev/

Comments URL: https://news.ycombinator.com/item?id=47021698

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: AI-optimized x86-64 assembly vs. GCC -O3 on three production kernels

Sun, 02/15/2026 - 1:58am

Show HN: AI-generated assembly vs GCC -O3 on real codebases (300K fuzz, 0 failures) Three kernels extracted from real open source projects, optimized with AI-generated x86-64 assembly, verified with 100K differential fuzz each: KernelAI strategySpeedupVerdictBase64 decodeSSSE3 pshufb table-free lookup4.8–6.3xAI winsLZ4 fast decodeSSE 16-byte match copy~1.05xAI wins (marginal)Redis SipHashReordered SIPROUND scheduling0.97xGCC wins The base64 win: GCC can't auto-vectorize a 256-byte lookup table (it's a gather pattern). The AI replaces it with a pshufb nibble trick — 16 parallel lookups in one instruction, zero table accesses. 1.8 GB/s → 11.6 GB/s. The SipHash loss: on pure ALU kernels (adds, rotates, XORs), GCC's scheduler is already near-optimal. 300K total fuzz iterations, zero mismatches. Every result is one command to reproduce.

Comments URL: https://news.ycombinator.com/item?id=47021641

Points: 1

# Comments: 1

Categories: Hacker News

Pages