ajitid | 8 days ago | on: Cursor Composer 2 is just Kimi K2.5 with RL
ajitid's comments
ajitid | 8 days ago | on: Cursor Composer 2 is just Kimi K2.5 with RL
ajitid | 8 days ago | on: Cursor Composer 2 is just Kimi K2.5 with RL
ajitid | 1 year ago | on: Deep Learning Is Not So Mysterious or Different
ajitid | 1 year ago | on: Zed on Linux Is Here
ajitid | 2 years ago | on: Neovide – A simple, no-nonsense, cross-platform GUI for Neovim
ajitid | 2 years ago | on: In loving memory of square checkbox
ajitid | 2 years ago | on: Fly through your shell history
My assumption is OS package manager would always have more packages compared to Homebrew, and I don't know if Homebrew on Linux even supports GUI packages or not.
ajitid | 3 years ago | on: Telltail: Universal Clipboard for Text
Here's the updated submission: https://news.ycombinator.com/item?id=35373349
ajitid | 3 years ago | on: Making Python faster with Rust
ajitid | 3 years ago | on: Telltail: Universal Clipboard for Text
Telltail [1] lets you copy text from one device onto another. If you've used or ever known about Apple's Universal Clipboard, it is quite like that. It uses Tailscale [2] to achieve this.
I must tell you that setting it up requires you to have some familiarity with the terminal (which already comes installed on your computer).
I've written a blog post about it which you can find here [3]. The instructions to install it are here [4].
It is a personal project of mine and is not affiliated to or promoted by any org.
[1]: https://github.com/ajitid/telltail-center
ajitid | 3 years ago | on: Stop spamming the em dash everywhere
ajitid | 3 years ago | on: A Spiritual Successor to Emacs
ajitid | 4 years ago | on: Hoppscotch: Open-source alternative to Postman
ajitid | 4 years ago | on: Command line tools for productive programmers
If you are on
/home/user/projects/app/src/handlers/
and you want to go to `app/`, you'll do: > up src
Or give name of any other child folder/file of `app/`. So if `.git` exists in `app/`, > up .git
would work too.I made it for Fish shell: https://gist.github.com/ajitid/81a4993be410586c038f8b3fc140b...
ajitid | 4 years ago | on: FZF for JavaScript (Preview)
This is a preview release (0.x), so breaking changes and improvement in docs would be introduced. That being said, I would be happy to receive feedback on improving the docs, code or on other things.
ajitid | 4 years ago | on: Neovim 0.5 is overpowering
> There is no intuitive interface, not even the nipple. It's all learned.
ajitid | 4 years ago | on: Neovim 0.5 is overpowering
ajitid | 5 years ago | on: API pagination design
page 1 elements: A B C D E
page 2 elements: F G H I J
so 5 elements in each page.
Suppose I'm on page 2. If I insert a new element Q and it gets pushed as first then page 1 will have Q A B C D. Now if I go back to page 1, I'll get A B C D E and also a token/pointer to go back one more time only to retrieve Q.
So while cursor solved the issues you mentioned, it still will have this case in which pagination gets broken. I'm interested how we can tackle this.
ajitid | 5 years ago | on: API pagination design
Did you mean we should stream data over WebSocket or use HTTP/2 or do we need to do something different altogether?