ajitid's comments

ajitid | 8 days ago | on: Cursor Composer 2 is just Kimi K2.5 with RL

Could you explain how much improvement RL+fine tuning has given to Composer 2.0 over Kimi K2.5? I don't fully grasp the work Cursor model has done here and why it is difficult to achieve these results with RL.

ajitid | 2 years ago | on: In loving memory of square checkbox

This assumption breaks if you use macOS. Windows uses (or used to use) Apply button in its settings. Macintosh OSes were reactive from the start. Which means that checkboxes have immediate-ness on Macs.

ajitid | 2 years ago | on: Fly through your shell history

As a non-Mac user I really want to know why one would prefer Homebrew on Linux.

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: Making Python faster with Rust

Ever tried gluing Go with either Python or JavaScript? I'm interested in learning what libraries are there to glue them and how complicated and slow they could be.

ajitid | 3 years ago | on: Telltail: Universal Clipboard for Text

Hi folks!

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

[2]: https://tailscale.com

[3]: https://hemarkable.com/prose/telltail

[4]: https://guide-on.gitbook.io/telltail

ajitid | 4 years ago | on: FZF for JavaScript (Preview)

Hi, author of the library here. FZF does fuzzy matching and helps you find a string from a list of strings by typing as few characters as possible.

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

He later corrected it by saying:

> There is no intuitive interface, not even the nipple. It's all learned.

ajitid | 5 years ago | on: API pagination design

I have question, lets say we have

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

> use a more streamable format than JSON

Did you mean we should stream data over WebSocket or use HTTP/2 or do we need to do something different altogether?

page 1