frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Facebook's ad targeting algorithm is inherently biased

https://motherboard.vice.com/en_us/article/59x79k/researchers-find-facebook-ad-targeting-algorith...
1•fanf2•1m ago•0 comments

Ask HN: Effective Way to Deal with Mosquitoes?

1•simonebrunozzi•2m ago•0 comments

To Have Machines Make Math Proofs, Turn Them into a Puzzle

https://www.quantamagazine.org/to-have-machines-make-math-proofs-turn-them-into-a-puzzle-20251110/
1•oldgradstudent•8m ago•0 comments

Visa and Mastercard might have a deal to lower merchant fees

https://www.cnn.com/2025/11/10/business/visa-mastercard-deal-merchant-fees
1•raw_anon_1111•12m ago•0 comments

Gifmaker

https://github.com/madprops/gifmaker
1•vistos•12m ago•0 comments

G4 (Severe) Watch in Effect for 12 November

https://www.swpc.noaa.gov/news/g4-severe-watch-effect-12-november
3•hnburnsy•14m ago•0 comments

Abe shooting suspect Yamagami pleads guilty to murder

https://www.japantimes.co.jp/news/2025/10/28/japan/crime-legal/yamagami-first-trial-hearing/
1•PaulHoule•14m ago•0 comments

Show HN: MCP-framework – Build MCP servers and AI agents in Rust

https://github.com/koki7o/mcp-framework
1•wiwoworld•15m ago•0 comments

The Head of the Cybertruck Program Quit Tesla. Model Y Leader Left Hours Later

https://gizmodo.com/the-head-of-the-cybertruck-program-quit-tesla-the-model-y-leader-left-hours-l...
6•rbanffy•16m ago•0 comments

Show HN: Building UI Interfaces That AI Can Control

2•akdeepankar•16m ago•0 comments

Building Our Gen AI Sales Knowledge Assistant on Snowflake

https://medium.com/snowflake/from-chaos-to-clarity-building-our-gen-ai-sales-knowledge-assistant-...
2•gk1•16m ago•0 comments

Cogensec Joins Nvidia Inception Program to Accelerate Next-Gen AI Security

https://cogensec.com/news/nvidia-inception-2025
2•tarique192•16m ago•1 comments

Karl Landsteiner Facts for Kids

https://kids.kiddle.co/Karl_Landsteiner
2•kamaraju•16m ago•0 comments

I didn't reverse-engineer the protocol for my blood pressure monitor in 24 hours

https://james.belchamber.com/articles/blood-pressure-monitor-reverse-engineering/
3•jamesbelchamber•18m ago•0 comments

Doctype Magazine

https://vole.wtf/doctype/
2•klez•21m ago•0 comments

AlignEval: Building an App to Make Evals Easy, Fun, and Automated

https://eugeneyan.com/writing/aligneval/
2•gk1•21m ago•0 comments

Wikipedia, under fire from conservatives and shaken by AI

https://www.lemonde.fr/en/pixels/article/2025/11/11/wikipedia-under-fire-from-conservatives-and-s...
4•geox•22m ago•0 comments

9 Years Ago, I Started a Marketing Consultancy Called Reify

https://www.reifyworks.com/writing/2016-12-12-introducing-reify
2•mrbbk•23m ago•0 comments

Show HN: FakerFill – a browser extension that fills web forms with fake data

https://www.fakerfill.com
2•jundymek•23m ago•0 comments

Ultima VII Revisited

https://github.com/ViridianGames/U7Revisited
2•erickhill•24m ago•0 comments

X5.1 solar flare, G4 geomagnetic storm watch

https://www.spaceweatherlive.com/en/news/view/593/20251111-x5-1-solar-flare-g4-geomagnetic-storm-...
3•sva_•24m ago•0 comments

Show HN: A commercial standard library for JSON Schema / OpenAPI projects

https://www.sourcemeta.com/products/std/
2•jviotti•25m ago•0 comments

Gelato-30B-A3B: A Grounding Model for GUI Computer-Use Tasks

https://huggingface.co/mlfoundations/Gelato-30B-A3B
2•CKMo•25m ago•0 comments

AWS Top Secret Cloud

https://aws.amazon.com/federal/top-secret-cloud/
2•belter•31m ago•0 comments

The Software Engineer's Guidebook: A Recap

https://newsletter.pragmaticengineer.com/p/the-software-engineers-guidebook
2•andection•35m ago•0 comments

Multiple Security Issues in Rust-sudo-rs

https://bugs.launchpad.net/ubuntu/+source/rust-sudo-rs/+bug/2130623
13•eyberg•35m ago•1 comments

Ask HN: Building Privacy-Compliant LLM Apps (e.g. Section 203 StGB)

2•privacycurios•38m ago•1 comments

GitLab – do you host one? Or use the cloud?

3•roscas•38m ago•0 comments

Debian Mandates Rust for Apt, Reshaping Ubuntu and Other Linux Distros

https://thenewstack.io/debian-mandates-rust-for-apt-reshaping-ubuntu-and-other-linux-distros/
8•CrankyBear•39m ago•0 comments

Fish 4.2.0

https://github.com/fish-shell/fish-shell/releases/tag/4.2.0
2•robin_reala•39m ago•0 comments
Open in hackernews

Show HN: Skim – 90% token reduction for LLM code analysis

https://github.com/dean0x/skim
2•dean0x•1h ago

Comments

dean0x•1h ago
I built Skim to solve a specific problem: coding agents hitting context limits when analyzing codebases.

  The insight: humans don't read every line of code. We skim structure,
  signatures, comments. Agents should do the same.

  What it does:
  - Walks your repository
  - Removes function bodies and implementation details
  - Keeps structure, signatures, docstrings
  - Result: ~90% token reduction without semantic loss

  Built in Rust for performance on large repos.

  Works with most major languages (also markdown). Designed for Claude Code, GitHub Copilot, Cursor,
  or any LLM that analyzes code.

  GitHub: https://github.com/dean0x/skim

  MIT licensed. Looking for feedback on the approach and edge cases I might
  have missed.
onion2k•1h ago
One of the main reasons why code is often hard to understand is that it doesn't actually do what it appears to do unless you get in and read the code in depth. It looks like skim is making an assumption that would make this happen a lot - that the code doesn't rely on side effects (modifying a global, using exceptions to control flow, throwing an event on a bus for something else to pick up, etc.)

I imagine this is a really useful tool for a codebase built on pure functions, but it'll get very confused by legacy code that hasn't been written without that goal.

dean0x•1h ago
Thats a great point, thank you. I use it mostly to get my agent oriented in the beginning of a task. Been using it for the last couple of weeks and I seem to get better results, less code duplication, and better integrated features. I still need to reference specific files I want the agent to work on.
onion2k•1h ago
I suspect, but will probably never find the time to try, that you could build an AST from the source, discard the bits that are just the internals of functions and methods, and then turn what remains back into something an LLM could use.
dean0x•55m ago
just plug this in to your CLAUDE.md or AGENTS.md ;)

  ## Codebase Analysis

  **Before analyzing unfamiliar codebases**, use skim for efficient context:

  ```bash
  # Get architectural overview (60% reduction)
  skim src/ --mode structure

  # Get API surface (88% reduction)
  skim src/ --mode signatures

  # Get type system (91% reduction)
  skim src/ --mode types

  When to use:
  - First time exploring a repository
  - Understanding service architecture
  - Mapping API boundaries
  - Analyzing type relationships

  Install: npm install -g rskim or cargo install rskim