Viewing profile — dhamidi
dhamidi
HN member- Joined
- Sun, Mar 17, 2013, 6:45 PM UTC
- HN karma
- 74
- Public activity
- 52 items
- HN profile
- View on Hacker News ↗
About dhamidi
meet.hn/city/ee-Tallinn
Socials: - instagram.com/lendavvaip
Interests: Fitness, Entrepreneurship, Remote Work, Programming, Web Development
---
Recent public activity
-
comment
Comment #49202370
HTMX is great, Hypermedia and HATEOAS are great, HTML-string-templates are not great. For some reason they are still popular. A fun experiment is to use a JS runtime with React but…
-
comment
Comment #49106569
You can swipe the Termux special ribbon to the left and then get a native text input where dictation etc all work.
-
comment
Comment #49034471
This: node + npm + vitest + vite Turns into: bun That's the benefit
-
comment
Comment #48919514
There's vuego: https://github.com/titpetric/vuego And my own version (I learned of vuego only after): https://htmlc.sh Not a fan of html/template and tmpl myself, because HTML shou…
-
comment
Comment #48916664
I understand the sentiment. Rails was my introduction to hypermedia and it was convenient and easy, so experiencing friction when building with Go/HTMX came as a surprise. After a …
-
comment
Comment #48827477
Disclaimer: I'm part of the team building it That's what Amp is built around! By default conversations are shares in your team (you can also make them private), and the agent has a…
-
comment
Comment #47919863
I know it's in vogue to bash Bash but I feel that criticism is unfair. Shell scripting is a victim of its own success: it is _so easy_ to get started that most users get value out …
-
comment
Comment #46621980
Maybe useful inspiration from TCL: there are many commands that define new variables, which makes modeling the stack unnecessary. For example: lappend responses [dict status 200 bo…
-
comment
Comment #46590166
Feather, a fresh implementation of TCL: https://www.feather-lang.dev Command languages are underrated, and being able to add a Bash-like REPL for agents and users alike is somethin…
-
comment
Comment #46462791
Thank you! > Are you doing a mostly one-to-one port, or something more novel? Step 1 is a one-to-one port of all the non-I/O, non-OO stuff. I've got it down to a single skill for O…
-
story
Show HN: Feather – a fresh Tcl reimplementation (WASM, Go)
Hey HN! First time showing something here, but I've been furiously working over the holidays on Feather, a from scratch reimplementation of TCL designed for embedding in modern app…
-
comment
Comment #45845882
Not affiliated, just have been following development closely: Phrasing leverages existing content , e.g. subtitles from your favorite shows. The quality depends on the source mater…
-
comment
Comment #45743395
This is great, I was literally looking for something like this yesterday to embed TCL into a Go application without needing CGo
-
comment
Comment #45613801
That's already the case with https://docs.claude.com/en/docs/claude-code/plugins
-
comment
Comment #45010139
The `source` builtin searches through all directories on PATH, not quite a library system, but useable with a bit of discipline in the to-be-sourced shellscripts.
-
story
Show HN: A scriptable text editor for LLMs
Built this out of curiosity to see whether LLMs get better a editing if they express edits as a series of operations instead of a diff. I don't have my answers yet, but actually bu…
-
comment
Comment #44095422
More tools / toys / sandboxes to play with. Growing a coding agent as a "game": https://github.com/dhamidi/smolcode . Started with https://ampcode.com/how-to-build-an-agent and the…
-
comment
Comment #43889732
Modash.io | Senior Product Engineer | Remote (EU) | Full-time Modash is an end-to-end influencer marketing platform for Shopify stores. We help every creator earn a living. Headqua…
-
comment
Comment #42850977
So cool to see this here! I bought a house in Nyland [1] a few years ago and now I'm turning it into a place to retreat to for focus time / being close to nature. If someone is int…
-
comment
Comment #42657380
It's not much different than with Postgres: ssh your-server sqlite3 /tmp/path/to/your/db.sqlite3 Or if you're using Kamal, then the choice of database is completely transparent: ka…
-
comment
Comment #41722765
I had the pleasure of meeting Ben in real life and watch him work — he's just really good at what he does, and his experience with ClojureScript is deep and wide. One thing that se…
-
comment
Comment #17884111
Actually plain less works quite well when using filters: #!/bin/bash # ~/.lessfilter case $1 in *.md) view-md $1;; *.json) jq -C . $1;; *) pygmentize $1;; esac Where view-md is jus…
-
comment
Comment #17883439
Is anybody here aware of any TUI/CLI tools that bring UX patterns/ideas from other programs to the terminal? Examples: - bash/zsh/fish bring suggestions/autocompletion - fzf brings…
-
comment
Comment #17798544
> It is not a good idea to use the backslash as the trigger key since it is the traditional line continuation and escape character on UNIX. Well it is also the default key binding …
- story