Viewing profile — kennyfrc
kennyfrc
HN member- Joined
- Tue, Oct 14, 2014, 9:29 PM UTC
- HN karma
- 144
- Public activity
- 42 items
- HN profile
- View on Hacker News ↗
About kennyfrc
monolithgrowth.com & jetdraftai.com
Recent public activity
- story
-
story
Show HN: llm_ctx – Format your codebase for LLMs using Unix-style commands
Hey HN! I found myself wanting a way to create prompts using `git diff`, `find`, and glob patterns, but from what I saw, there weren't any tools that did that. So built this, and I…
-
comment
Comment #38180915
I've mainly designed this for backend devs (i.e. rails, django people who just render plain html/css on the front-end), and we generally do HTML sanitization on the server side. Ex…
-
comment
Comment #38180864
Yes, the lib's great! Unfortunately I haven't thought much yet about interoperability with other web components libraries like lit. I imagined folks would choose just one web compo…
- comment
- story
-
comment
Comment #38148042
Thank you! That’s exactly the segment I was going for.
-
comment
Comment #38148037
This is great feedback, thanks! I think there’s something around JSDoc types that can accommodate this. Something I’ll put as a milestone before v1.
-
comment
Comment #38147004
Interesting! Many points are indeed similar. Apart from components, Cami also has immutability built-in and state management.
-
comment
Comment #38146249
Thanks! Cami is technically a combination of both. I like the intuitiveness of observables so that’s used: ``` // define observable this.count = this.observable(0); // getting this…
-
comment
Comment #38146114
You can consider Cami as the light dom sibling of Lit (which uses shadow dom). Cami loses out on slots & style encapsulation, but you can style Cami components with normal / global…
-
comment
Comment #38146036
Yes, Cami uses fine-grained reactivity, so it’s a cousin of similar solutions like Solid signals, Svelte runes, Knockout / and MobX observables. It doesn’t support SSR as it aims t…
-
story
Show HN: Cami.js – A no build, web component based reactive framework
Hi Everyone! My main motivation for making this was that I wanted something as powerful as Svelte or React but I wanted no build steps, no JSON API, and I wanted something as close…
- story
-
comment
Comment #36594357
Yes, exactly!
-
comment
Comment #36582615
Yes, I have used this for feature roadmaps. I don’t do what you mentioned (ie. look for paid apps with lots of ratings & a low score), I look for any app with at least one 1 star o…
-
comment
Comment #36582442
If you want to create a B2B product, I would look for 1-star reviews in G2 and Capterra and see if you can solve these problems yourself. You could also check what people are compl…
- story
- story
-
comment
Comment #35064712
Marketer here. If I were to define the fundamental aspects of marketing, it would be as follows (I also have a note about feedback loops after): 1. Customer empathy: you need to kn…
- story
-
comment
Comment #34544862
I built a SaaS MVP in 2 months (nights and weekends) using Roda + HTMX + Alpine.js + Missing CSS + Postgres. I was quite happy with how moldable Roda is. I tried rails in conjuncti…
-
comment
Comment #34412674
Yes, and I would typically search for simple projects using keywords such as “micro”, “small”, “tiny”, or “pico”. I would then try to re-implement the “getting started” code in the…
-
comment
Comment #34412466
If you’re a pure beginner with zero programming experience, yes. If you’ve programmed a few scripts and have done a flask web app, his first book might be too easy.
-
comment
Comment #34412324
There’s quite a few: - Zed Shaw’s Learn More Python the Hard Way[1] - Brian Hogan’s Exercises for Programmers (best for beginners or for learning a new language)[2] - Hal Fulton’s …