HackerTrans
TopNewTrendsCommentsPastAskShowJobs

ebcode

756 karmajoined hace 10 años
Eli Bird, web developer in Northern California.

Into open source software, and other forms of freedom.

Feel free to reach out: <username>@proton.me

Submissions

The Great Software Quality Collapse (2025)

techtrenches.dev
2 points·by ebcode·hace 3 meses·0 comments

Show HN: SourceMinder, a Context Aware Code Search for Solo Devs and Claude Code

ebcode.com
2 points·by ebcode·hace 7 meses·3 comments

Coroutine prime number sieve (2022) [pdf]

cs.dartmouth.edu
3 points·by ebcode·hace 10 meses·0 comments

comments

ebcode
·anteayer·discuss
And it reads to me like they have some other reason to move on from SWE Bench Pro, but they don't want to say what it is. They say right up top, "~30% of the tasks are broken." But that leaves ~70% un-broken, which seems pretty good to me. It would be nice if they would also say: "Here's the list of instances that are broken: <CSV>". Or, "Here's the subset of SWE Bench Pro we will use going forward." They're letting the perfect be the enemy of the good.
ebcode
·hace 27 días·discuss
Still plugging away on SourceMinder (https://github.com/ebcode/SourceMinder). I know, I know, everyone and their brother is working on token-saving schemes for LLMs. But I’ve found it to be useful even without the LLM. I’m working on a proper website for it now where you can try it out in the browser (wasm port) — try before you don’t buy (it’s GPL). Feedback welcome.
ebcode
·hace 3 meses·discuss
It's still in beta, and I'm hoping to get more feedback, so feel free to post in the issues or reach out directly if you run into any problems.
ebcode
·hace 3 meses·discuss
I’m working on a tool that is a more token-efficient code search than grep. I don’t have hard numbers yet, but it’s been working for me to get longer sessions. https://github.com/ebcode/SourceMinder
ebcode
·hace 4 meses·discuss
so, “yes false Scotsman”?
ebcode
·hace 4 meses·discuss
That’s why we’ve got the tenth.
ebcode
·hace 4 meses·discuss
Can anyone tell me what Yegge is on, so I can try some? Is it just money/tokens?
ebcode
·hace 6 meses·discuss
too bad about all the ads, this is an excellent comparison of the ends of both Dutch and American empires
ebcode
·hace 6 meses·discuss
Mr. Smith (GN) goes to Washington (Palantir).
ebcode
·hace 6 meses·discuss
SourceMinder: A “code index” tool that finds symbols in a codebase and creates a single table sqlite database for the index. It uses tree-sitter to parse the AST and add the symbols and what they are (function, class, argument, etc) to the db. I currently have it working with TypeScript, C, Go and PHP. I’m working on adding Perl next, after someone requested it here on HN.

https://github.com/ebcode/SourceMinder
ebcode
·hace 7 meses·discuss
Yep! Java, Perl, and Ruby are all on the to-do list. I’ll start with Perl since you asked. And it takes me about two weeks to implement a new language. Check back in January.
ebcode
·hace 7 meses·discuss
Good luck!
ebcode
·hace 7 meses·discuss
> A 10% improvement every month gets to be a 10x improvement in (math...)

1.1^24=9.85, so yeah, if you could reliably get a 10% speed-up each month, you’d get to 10x in roughly 2 years. (But I’d expect the speed-up per month to be non-linear.)
ebcode
·hace 7 meses·discuss
I picked these up at a used bookstore ages ago, since they had the three-volume set. My recommendation would be to familiarize yourself with just the table of contents that’s printed on the binding, and when you come across something adjacent in your day-to-day work (e.g. Search), review the papers in that section. Those books are an excellent snapshot of the field at the time.
ebcode
·hace 8 meses·discuss
low-effort comment with ad hominem and zero rationale. fairly toxic.
ebcode
·hace 8 meses·discuss
The header file does most of the work. I submitted the output of gcc -E (preprocessor only) to ChatGPT: https://chatgpt.com/share/69093ba2-ae74-8006-abbb-5c7f24be23... -- and I found out about "tagged pointers".

https://en.wikipedia.org/wiki/Tagged_pointer
ebcode
·hace 9 meses·discuss
https://archive.is/aHuRO
ebcode
·hace 9 meses·discuss
No, not yet. I'm planning on a proper Show HN, once C and PHP are implemented. But if you want to be updated when I release it, I just created an empty repo for it here: https://github.com/ebcode/indexer-c
ebcode
·hace 9 meses·discuss
A “code index” tool that finds symbols in a codebase and creates a single table sqlite database for querying. It’s my second month using Claude Code, and I see a common pattern where Claude tries to guess patterns with grep, and often comes back with empty results. I’m writing the tool to prevent these fruitless searches. Using tree-sitter to parse the AST and add the symbols and what they are (function, class, argument, etc) to the db. I have it working with TypeScript, and am working on adding C and PHP.
ebcode
·hace 9 meses·discuss
Claude’s memory function adds a note to the file(s) that it reads on startup. Whereas this tool pulls from a database of memories on-demand.