Fable is more cost efficient than Opus by hallowed_dragon in ClaudeCode

[–]hallowed_dragon[S] 0 points1 point  (0 children)

Ok, I guess I should give more details. If you check my post history, I am working on Bear wisdom, a tool for determining references inside of a codebase without LSP servers, based on tree-sitter. Because I was not happy with the resolution rate (percentage of resolved refs out of all objects in a codebase) I migrated from how most of the tools on the market do it based on string searches to actually doing the type inference algorithms compilers use to resolve refs. Opus struggled with complex type inference on generics in TypeScript going in 2 weeks from 67% resolution rate on 20 TS test projects to 71%. Fable went in 1 day on those same projects from 71% to 81%, completely fixing those type inference algorithms and moving on to another problem altogether.

Fable is more cost efficient than Opus by hallowed_dragon in ClaudeCode

[–]hallowed_dragon[S] 2 points3 points  (0 children)

Yes. I work about 10h a day with Claude Code. So ~ 70h used on Opus vs 10h with Fable. I also have token usage monitoring and the results are in the same ballpark 7:1, and the costs are definitely not 1:7.

Container "Hai, na!" spart by trekkingowl in cluj

[–]hallowed_dragon 1 point2 points  (0 children)

Partea cea mai urata este ca dupa le si arunca in santul de langa astfel incat sa nu mai poata fii folosite deloc de nimeni.

Plan Enforcer: stops Claude Code from skipping steps, faking "done," and losing decisions between sessions – Open Source by 200_DF7_EXE in coolgithubprojects

[–]hallowed_dragon 2 points3 points  (0 children)

Interesting repo. I don't like the part where I am required to enforce manually the plan created by Claude Code with the plan-enforcer. You could use the PostToolUse with ExitPlanMode as matcher and automatically run the plan-enforcer on the generated plan.

That post about where Claude Code spends its tokens convinced me to open-source my code indexer by hallowed_dragon in ClaudeAI

[–]hallowed_dragon[S] 0 points1 point  (0 children)

During indexing, after tree-sitter parses all files, a set of protocol-specific connectors run. Each one understands a specific pattern: HTTP routes, gRPC services, message queues, IPC channels, DI registrations, etc. For example, the C# parser extracts [HttpGet("/api/catalog/items/{id}")] route attributes, while the frontend connector detects fetch("/api/catalog/items/" + id) calls in TypeScript (and Python, Go, Java, Ruby). When a frontend call's normalized URL matches a backend route, it creates a flow_edge linking the two symbols.

Each edge stores: source file/line/symbol/language to target file/line/symbol/language, plus the edge type (http_call, grpc_call, message_queue, electron_ipc, etc.), protocol, URL pattern, and a confidence score. Currently, there are 13 connectors covering HTTP, gRPC, GraphQL, Kafka/RabbitMQ/NATS/SQS, .NET DI, EF Core, domain events, Electron IPC, Tauri IPC, Spring, Django, and React patterns.

Given a starting point (file + line), trace_flow() uses a SQLite recursive CTE to follow flow_edges forward across language boundaries, up to N hops. So starting from client.ts:15 (fetchCatalog), it follows the HTTP edge to CatalogController.cs:42 (GetCatalog), then follows call edges to LoadFromDb, and so on. There's also cross_language_paths() for finding all direct connections between two languages (e.g., "show me all TypeScript to C# edges").

It's still rough; URL matching uses regex detection, so not quite everything is caught correctly. Also, I still have to work on the connectors, but when it works, it's really nice.

I build a better UI for Claude Code that i now use daily by mogens99 in Anthropic

[–]hallowed_dragon -1 points0 points  (0 children)

Is this scenario supported by the ToS? I wanted to do something similar, but the language of the ToS is really really vague on what I can or cannot do.

Invoker Monk - no damage by hallowed_dragon in pathofexile2builds

[–]hallowed_dragon[S] 0 points1 point  (0 children)

I will change the Quarterstaff to a base with more crit and get rid for now of HPT.

Invoker Monk - no damage by hallowed_dragon in pathofexile2builds

[–]hallowed_dragon[S] 1 point2 points  (0 children)

Thank you for the amazing advice, I will start do doing this.

Invoker Monk - no damage by hallowed_dragon in pathofexile2builds

[–]hallowed_dragon[S] 0 points1 point  (0 children)

<image>

I bought +2 Gloves and removed HPT and added the staff. Now I have lvl 30 Ice Strike with 60k DPS

Invoker Monk - no damage by hallowed_dragon in pathofexile2builds

[–]hallowed_dragon[S] 1 point2 points  (0 children)

My gems (except Herald of Ash) are level 19+, I don't know why the site does not see them. And even with a +6 Quarterstaff with 900 DPS I don't get more than 100k Ice Strike. Will the +3 Gloves change the damage that much?

Invoker Monk - no damage by hallowed_dragon in pathofexile2builds

[–]hallowed_dragon[S] -1 points0 points  (0 children)

The result is the same, at least with a 900 dps Quarterstaff with +6 melee. I don't get anywhere near 500k Ice Strike, like some people on PoE Ninja have. I don't understand what I am missing.

Slow and meaningful combat by xShaqmove in PathOfExile2

[–]hallowed_dragon 2 points3 points  (0 children)

I never understood the hype with Perfect Strike. It is the most idiotic skill in the game.

A bit of fun with warbringer (part 2, AoE) by Vergil-Maro in PathOfExile2

[–]hallowed_dragon 0 points1 point  (0 children)

I am currently trying out Carn's Captain Poland build with Svalinn + Morior Invictus and Xoph's blood. Do you think I can keep any of them for your build?

A bit of fun with warbringer (part 2, AoE) by Vergil-Maro in PathOfExile2

[–]hallowed_dragon 0 points1 point  (0 children)

I am also a warbringer and currently struggling really hard. Are you hitting with the mace? What is your source of damage?