HackerTrans
TopNewTrendsCommentsPastAskShowJobs

graup

no profile record

Submissions

Building an AI-Powered IDE Companion App

mesmacosta.medium.com
1 points·by graup·2 месяца назад·2 comments

comments

graup
·2 месяца назад·discuss
Thanks, no idea how my Chrome copied the wrong URL. Something weird with Medium. Hopefully a mod can correct the URL
graup
·5 месяцев назад·discuss
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 месяцев назад·discuss
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 лет назад·discuss
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