frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

InvisiCaps: Pointers in Fil-C by Example

https://fil-c.org/invisicaps_by_example
1•fanf2•1m ago•0 comments

Bill Gates makes a claim about climate change

https://www.rnz.co.nz/news/world/577152/bill-gates-makes-a-stunning-claim-about-climate-change
1•colinprince•1m ago•0 comments

Display Resolution Calculator

https://www.cl.cam.ac.uk/research/rainbow/projects/display_calc/
1•bookofjoe•4m ago•0 comments

Glibc malloc performance degradation with CPU affinity masks

https://bugs.launchpad.net/ubuntu/+source/glibc/+bug/2089789
1•asaiacai•5m ago•0 comments

What Is FedCM?

https://fusionauth.io/blog/what-is-fedcm
1•mooreds•5m ago•0 comments

Visual website feedback and QA tool for agencies, freelancers and product teams

https://huddlekit.com
1•kevinlarsson•6m ago•1 comments

Bay Area School Finder – filter nearby schools by grade and price

https://tools.encona.com/schoolfinder
1•rahimnathwani•6m ago•0 comments

Miami's Robocop

https://puck.news/an-autonomous-police-vehicle-rolls-out-in-miami/
1•msHidden•8m ago•0 comments

Tor Browser 15.0

https://blog.torproject.org/new-release-tor-browser-150/
1•pentagrama•10m ago•0 comments

If you don't tinker, you don't have taste

https://seated.ro/blog/tinkering-a-lost-art
2•jxmorris12•11m ago•0 comments

Why 29 October Matters: The Turkish Republic Was Born Today

https://en.wikipedia.org/wiki/Republic_Day_(Turkey)
2•bakigul•12m ago•1 comments

What Problem Is Traditional RAG Solving?

https://www.gojiberries.io/what-problem-is-traditional-rag-solving/
1•neehao•16m ago•0 comments

Rehab. Of 75-Year-Old Woman with Parkinson's Using Logic Workout Training

https://arxiv.org/abs/2510.23093
2•bikenaga•17m ago•1 comments

A blimp from LTA Research was spotted flying over San Francisco Bay

https://www.kron4.com/news/bay-area/white-blimp-san-francisco/
1•caust1c•19m ago•0 comments

In Rio cartels use DIY combat drones against police

https://www.riotimesonline.com/drones-over-the-favelas-rios-cartel-crackdown-turns-deadly/
1•phront•19m ago•0 comments

WorkVerify – The Verified Reputation Network for Today's Workforce

https://work-verify.com/
1•jeremyalfred•20m ago•1 comments

KeenWrite 3.6.4

https://keenwrite.com/
3•Bogdanp•21m ago•1 comments

Show HN: Permit Watch, Turning Ireland's work permits into a job-demand proxy

https://www.permitwatch.ie/
2•fredthedeve•22m ago•0 comments

Morocco shortens the day during Ramadan

https://www.worlddata.info/africa/morocco/timezones.php
2•valzevul•23m ago•0 comments

Tracking 1M Async Jobs in 125KB of Memory with Redis Bitmaps

https://relativelinks.io/blog/scaling-batch-progress-tracking
1•cwestman•25m ago•0 comments

To Boost Longevity, Walk This Way

https://www.medscape.com/viewarticle/boost-longevity-walk-this-way-2025a1000t8i
1•wjb3•27m ago•2 comments

Hunter Biden Added to the White House Timeline

https://www.whitehouse.gov/about-the-white-house/the-white-house/
3•stevenhubertron•27m ago•5 comments

AI is an accelerant for capitalist extraction

https://www.delta-fund.org/ai-as-accelerant-amplifying-extraction-not-escaping-it/
2•kellystonelake•27m ago•0 comments

The Republican Plan to Reform the Census Could Put Everyone's Privacy at Risk

https://www.wired.com/story/republicans-differential-privacy-census-overhaul/
4•rbanffy•28m ago•0 comments

The Capital Providers That Help Founder-Led Companies Grow

https://www.inc.com/founder-friendly-investors/2025
1•mooreds•29m ago•0 comments

A Defense of Philosophical Intuitions

https://hilariusbookbinder.substack.com/p/a-defense-of-philosophical-intuitions
2•Caiero•30m ago•0 comments

Rupert Murdoch is launching a newspaper in California

https://www.hollywoodreporter.com/business/business-news/rupert-murdoch-california-post-la-times-...
1•zanon234•31m ago•1 comments

I ate the Destroying Angel and survived (2006)

https://blog.mycology.cornell.edu/2006/11/22/i-survived-the-destroying-angel/
2•valzevul•33m ago•0 comments

History of Internet: IoT's Expanding Role

https://spectrum.ieee.org/history-of-internet-7-phases
1•rbanffy•33m ago•0 comments

Building for the Future

https://icy.leaflet.pub/3m47cll72hs25
1•dandep•34m ago•0 comments
Open in hackernews

Show HN: Code Compass – Coding agent that finds the best task to work on next

https://codecompass.sh
2•rkhanna23•2h ago
Code Compass is an AI agent that helps engineers determine the best task to work on next, given the codebase context from the engineer’s current task.

- Code Compass indexes a GitHub repo with AST parsing, enabling agents to understand where developers are developing codebase context [1]

- Given a current linear ticket, Code Compass's agent provides context about the relevant codebase locations, implementation patterns, and starting points needed to complete the task and feeds those instructions directly to your coding agent [2]

- Given a current ticket, Code Compass’ agent identifies the next ticket to work on that will maintain as much of the engineer's existing codebase context as possible [3]

Why we built it

As engineers, we often struggled with deciding what to pick up next, especially when deep in a particular section of the codebase. Each context switch slows us down, and a lot of valuable attention can be lost when switching too often between unrelated tasks. Context switching is also expensive for AI models: each switch requires re-ingesting the same files for reindexing, driving up token costs and more importantly wasting time. We built Code Compass to help engineers seamlessly flow from one meaningful task to the next, maintaining momentum and minimizing friction, and to save both humans and models from unnecessary context resets.

Tech implementation details

- Code Compass indexes your entire GitHub repo using AST parsing to capture the code structure and developer context.

- It also syncs with your Linear workspace, mapping tickets to relevant code areas based on historical changes.

- Our agent combines this insight, leveraging up-to-date context to ensure suggestions always build on your current work.

- We utilize modern LLM architectures and lightweight vector databases to enable real-time, context-aware recommendations.

- Use Cursor command tools and manage branches and create PRs with each linear ticket.

Challenges we overcame

Visualizing code graphs proved much trickier than we thought. Representing complex dependencies in a meaningful way for both the AI and human user took multiple iterations. We took inspiration from projects like GitHub Next's repository visualization (https://githubnext.com/projects/repo-visualization/), eventually building a visualization layer that helps users quickly see project hot spots and context flows.

Potential Extensions

- Codebase + Developer understanding - Find who has expertise and triage tickets accordingly.

- Project planning - Architect new projects with developer and codebase understanding

- Expanding integration to include additional issue tracking systems (such as Jira and Trello), further streamlining workflows for a wider range of teams.

- Other languages (currently only supports typescript)

Try it yourself

You can sign up at https://codecompass.sh. We truly welcome your feedback and are eager to see how engineers use it to streamline their workflows.

[1] https://youtu.be/0EJl8b3fWYg

[2] https://youtu.be/hpxFagxHqu0

[3] https://youtu.be/fGLIlh3q1-k