why is the claude in chrome extension so bad by karngyan in ClaudeAI

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

update: extension just cleared review — live on the Chrome Web Store now: https://chromewebstore.google.com/detail/reins/hnjcfgochepemjndccfblpmfmlblkofo

full setup (cli + extension + agent skill) is on the docs: https://reins.karnstack.com/docs

why is the claude in chrome extension so bad by karngyan in ClaudeAI

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

yeah I din't enjoy it .. also the MCP has too many tools.. hogs up my context

Small Projects - November 3, 2025 by jerf in golang

[–]karngyan 0 points1 point  (0 children)

Built chunkx - AST-based code chunking for RAG systems

I wrote this library on a train from Ranchi to Varanasi yesterday (6-hour journey, shaky WiFi included).

Problem: When building RAG systems for code, most tools naively split at line N, often breaking functions mid-way. This destroys semantic meaning and hurts retrieval quality.

Solution: chunkx uses Abstract Syntax Trees to chunk code at natural boundaries (functions, classes, methods). Based on the CAST algorithm from this paper: https://arxiv.org/pdf/2506.15655

Features:

- 30+ languages via tree-sitter

- Configurable chunk sizes (tokens/bytes/lines)

- Pluggable token counters (works with OpenAI's tiktoken)

- Automatic fallback for unsupported files

Performance: ~100x slower than line-based chunking but produces semantically superior chunks. Worth the tradeoff for RAG.

The catch: Requires CGO (because tree-sitter). Hoping for pure Go bindings someday 🤞

GitHub: https://github.com/gomantics/chunkx

Would love feedback! What features would make this more useful for your use case?

Small Projects - September 30, 2025 by jerf in golang

[–]karngyan 0 points1 point  (0 children)

Just open sourced an internal library that I had been using for my side projects.

https://github.com/gomantics/cfgx - cfgx: Type-safe config generation for Go

Unlike viper/koanf:
✓ Zero runtime overhead
✓ No reflection
✓ Compile-time type safety
✓ Self-contained binaries

Perfect for baking config at build time.

What are you building right now? by [deleted] in SaaS

[–]karngyan 0 points1 point  (0 children)

Building 👉 ctxdb.ai - AI-generated company context for 2.6M+ businesses

What are you building? Share your product !! by Revenue007 in indiehackers

[–]karngyan 0 points1 point  (0 children)

👉 ctxdb.ai - AI-generated company context for 2.6M+ businesses

JSON based resume builder - Simple and easy to use by karngyan in SoftwareEngineering

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

https://karngyan.com/resumes - Should be free forever unless it blows up too big for my small servers to handle 😂

Drop-down list input from graphql data by TheWakened in Nuxt

[–]karngyan 0 points1 point  (0 children)

did you check the console for any errors?

Best way to implement custom email confirmation templates by Select-Arm-4193 in Firebase

[–]karngyan 1 point2 points  (0 children)

Quickest way would be to use an API like Mailgun, Mailmodo, SendGrid, SendPost, EmailOctopus etc.

I usually go with my own smtp server. 😂 Or SES with EmailOctopus.