HackerTrans
トップ新着トレンドコメント過去質問紹介求人

graup

no profile record

投稿

Building an AI-Powered IDE Companion App

mesmacosta.medium.com
1 ポイント·投稿者 graup·2 か月前·2 コメント

コメント

graup
·2 か月前·議論
Thanks, no idea how my Chrome copied the wrong URL. Something weird with Medium. Hopefully a mod can correct the URL
graup
·5 か月前·議論
Ten years ago, I did some experiments building an "input lag measurement device" for touch screen devices with an Arduino. https://github.com/graup/feedback-delay-measurement The research was related to QoE in cloud gaming. At that time, some Android devices had insane lag (125 ms+), whereas Apple devices were already consistently around 30ms. I assume this isn't a problem anymore nowadays.
graup
·6 か月前·議論
Last time I checked (a few years ago), it was cheaper to send letters and small packages from South Korea to Germany than from Germany to Germany. The delay was also not that big (maybe 1-2 weeks instead of 3-5 days). I already envisioned an arbitrage business for this: a simple page where people upload their non-urgent letters as PDFs, and I just print and mail them from Korea.
graup
·7 年前·議論
The problem is that Promise.all stopped infering tuple types. Promise.all([() => A, () => B]) should be Promise<[A, B]> but is now Promise< (A | B) [] >. This issue is being tracked here and a fix seems to be already in the making: https://github.com/microsoft/TypeScript/issues/33752 https://github.com/microsoft/TypeScript/pull/33707