Still, it's a crazy neat idea.
C# Autocomplete Demo Using Bing Code Search Engine
21–30 of 50 posts
Re: C# Autocomplete Demo Using Bing Code Search Engine
#22Re: C# Autocomplete Demo Using Bing Code Search Engine
#23I installed on VS2013 Ultimate wo/Resharper and here is how it worked for me. The '///' then tab does nothing but when I start typing in the IDE however it kicks in with a much better Intellisense complete with the Bing snippets like depicted on the VS Gallery. So perhaps they limited the slash+tab sequence?
Re: C# Autocomplete Demo Using Bing Code Search Engine
#24One of my pet ideas is a new programmer's editor that uses proportionally as much compute resources as Emacs did in the late-80s. An amount of computing that would show up as a major line item on your department's timesharing bill. 1000 cores costs around $50/hr, so if it boosted my productivity measurably it'd be worth it. Searching all public github code for strings matching around my cursor seems like the sort of…
Re: C# Autocomplete Demo Using Bing Code Search Engine
#25Re: C# Autocomplete Demo Using Bing Code Search Engine
#26Does anybody know of a Sublime Text or Atom package that does this?
https://github.com/azac/sublime-howdoi-direct-paste
https://github.com/gleitz/howdoi
Previous discussion: https://news.ycombinator.com/item?id=5027021
Re: C# Autocomplete Demo Using Bing Code Search Engine
#27One of my pet ideas is a new programmer's editor that uses proportionally as much compute resources as Emacs did in the late-80s. An amount of computing that would show up as a major line item on your department's timesharing bill. 1000 cores costs around $50/hr, so if it boosted my productivity measurably it'd be worth it. Searching all public github code for strings matching around my cursor seems like the sort of…
It should be noted that public github repos are _not_ public domain and not even necessarily open source unless the author specifies a license.
"By setting your repositories to be viewed publicly, you agree to allow others to view and fork your repositories."
Re: C# Autocomplete Demo Using Bing Code Search Engine
#28///how to parse json
and it waits...
Re: C# Autocomplete Demo Using Bing Code Search Engine
#29It also aptly demonstrates the issues with doing internet searches for code, the snippet in the demo has a bug! Still, it's a crazy neat idea.
Seems like the search could be better anyways. The StackOverflow result for that example is from a post with 4 other (more useful) examples, but it picks the last one. It was also not the selected Answer for that post.
This is still really cool, even in it's current state, I think I will find it useful.
Re: C# Autocomplete Demo Using Bing Code Search Engine
#30One of my pet ideas is a new programmer's editor that uses proportionally as much compute resources as Emacs did in the late-80s. An amount of computing that would show up as a major line item on your department's timesharing bill. 1000 cores costs around $50/hr, so if it boosted my productivity measurably it'd be worth it. Searching all public github code for strings matching around my cursor seems like the sort of…
Interesting idea, would definitely make you increase the efficiency of your time at the editor if it costs you $50/hour! But you don't need 1000 cores to fire off a bunch of search requests. Network calls are generally IO bound so even one or two cores can handle lots of requests.
In RAM.