Readit News logoReadit News
breadchris commented on Share Your CLAUDE.mds   claudemd.dev... · Posted by u/breadchris
breadchris · 2 months ago
TL;DR https://claudemd.dev is where you can find guidelines to make your vibe coding more effective

If you haven't used claude code, I highly recommend you check it out. You may have used other AI tools in development, but being a cli with a refined "plan" step has revolutionized my development workflow. The fact that I can dispatch three prompts to run concurrently, and reliably trust the actions being taken feels incredible. I am spending less time thinking about code and more about the higher level direction of the code.

If you want claude code to be more reliable in its output, it can further be directed by using CLAUDE.md files. These files are included in the plan step and significantly improve the quality of its output. What makes a useful CLAUDE.md is similar to a well written style guide [1]. By providing a set of guidelines for what patterns to follow, the LLM can be more focused when building its plan. In a sense, a CLAUDE.md can be thought of as a "language semantics" for your codebase or directory for how to "compile" your thoughts into actions. Fortunately, you don't need to write your semantics in BNF [2], but the completeness of your semantics matter nonetheless. Without forethought, an LLM will happily come up with its own plan for your codebase.

I thought of and published https://claudemd.dev last night with the idea that sharing these files will improve the quality of code that we will be writing for this next abstraction of software development.

If you want to learn more about these files, I recommend reading this https://claudelog.com/mechanics/claude-md-supremacy.

[1] https://github.com/airbnb/javascript [2] https://en.wikipedia.org/wiki/Backus%E2%80%93Naur_form

breadchris commented on Ask HN: What are you working on? (May 2025)    · Posted by u/david927
breadchris · 3 months ago
A recipe site that makes my favorite cooking youtuber videos easier to follow https://justshare.io/recipe/1Dd7GNm68hI
breadchris commented on Show HN: Defuddle, an HTML-to-Markdown alternative to Readability   github.com/kepano/defuddl... · Posted by u/kepano
acrophobic · 3 months ago
> ...it being Javascript didn't suit my project.

If you're using Go, I maintain Go ports of Readability[0] and Trafilatura[1]. They're actively maintained, and for Trafilatura, the extraction performance is comparable to the Python version.

[0]: https://github.com/go-shiori/go-readability

[1]: https://github.com/markusmobius/go-trafilatura

breadchris · 3 months ago
this is what i came here to see, thanks!
breadchris commented on Roto: A Compiled Scripting Language for Rust   blog.nlnetlabs.nl/introdu... · Posted by u/gbxyz
breadchris · 3 months ago
I like yaegi [1] for go because it is an interpreter for the go language (almost fully supported, generics need some love). The most important part for me is being able to keep all my language tooling when switching between interpreted/compiled code. Also, there is little needed distinction between what is going to be interpreted and compiled. Once you start including libraries it gets dicey and the need for including the libraries in the compiled part is necessary. There is also a blog post that comes along with it describing how it was built! [2]

[1] https://github.com/traefik/yaegi [2] https://marc.vertes.org/yaegi-internals/

breadchris commented on The curse of knowing how, or; fixing everything   notashelf.dev/posts/curse... · Posted by u/Lunar5227
breadchris · 4 months ago
I was just journaling about this. Your post nailed the sentiment.
breadchris commented on Typed Lisp, a Primer   alhassy.com/TypedLisp.htm... · Posted by u/todsacerdoti
breadchris · 4 months ago
I have really fallen in love with LISP recently, specifically clojure. A strong type system is really needed for it to make me feel like I can confidently develop with it.

u/breadchris

KarmaCake day297April 6, 2020
About
I think about things here: https://breadchris.com

I am building this: https://github.com/justshare-io/justshare

View Original