Show HN: Kite, copilot for programmers, available for Python
121–130 of 257 posts
Re: Show HN: Kite, copilot for programmers, available for Python
#122Could you make your website not display a blank page if the browser has Javascript disabled? The content does not seem dynamic, so a simple HTML page should work.
Re: Show HN: Kite, copilot for programmers, available for Python
#123Earlier quoted context omitted.
Totally legit concern. when we started working on this we realized if we wanted to index tens of thousands of libraries, we wouldn't be able to ship the entire index along with the client. Hence the cloud-based architecture. We've thought a lot about privacy and written up our thoughts here: kite.com/security. The short answer is: we don't index anything on your computer that you don't explicitly ask us to, and our p…
At first blush, the "we wouldn't be able to ship the entire index along with the client" makes perfect sense. However, I have found that I can store the entirety of the raw Python 2.7 documentation to disk in under 15 MB. It's mostly text, so it compresses absurdly well (2mb, gzipped). And if it was just an index of all the functions with little to no markup, it would be even smaller (this doesn't even account for th…
Re: Show HN: Kite, copilot for programmers, available for Python
#124Re: Show HN: Kite, copilot for programmers, available for Python
#125Re: Show HN: Kite, copilot for programmers, available for Python
#126I straight up cannot use Kite. The "code-to-cloud" functionality means that I cannot use it at work. I would love to use it, but it's a non-starter.
Re: Show HN: Kite, copilot for programmers, available for Python
#127Re: Show HN: Kite, copilot for programmers, available for Python
#128Adam from Kite here. Thanks for all the feedback and encouragement around the launch today. We're excited to be opening up Kite for everyone to download today. When we launched Kite here on hackernews almost a year ago we were blown away by the enthusiasm for our smart copilot vision. Over 65,000 of you signed up for Kite in the first 72 hours, and over the past year we've been working with many of you to deliver tha…
Re: Show HN: Kite, copilot for programmers, available for Python
#129Earlier quoted context omitted.
But what if it's called "size"?
It works like this: aCollection. list of all the method on given collection pops up. If it's short, just skim it and choose something which appropriate. If it's long: aCollection.l check if there's something similar to length/len, use it, otherwise: aCollection.l c check if there's something similar to count then use it, if not: aCollection.l s check if there's something similar to size and use it. Finally, if all th…
I get your point though and there are cases where completion might be useful, but for me the context-switch to a search engine is just not that much of a hassle, but maybe I never enjoyed a good completion engine, so I might give it a try.
Re: Show HN: Kite, copilot for programmers, available for Python
#130Could you make your website not display a blank page if the browser has Javascript disabled? The content does not seem dynamic, so a simple HTML page should work.