Nice idea. Sort of changes ideas as to what an IDE can/should do.
C# Autocomplete Demo Using Bing Code Search Engine
31–40 of 50 posts
Re: C# Autocomplete Demo Using Bing Code Search Engine
#32Because we need to have more people using random copy-pasted code in their programs.
How else are we supposed to learn?
Same goes to all these clowns who champion one language/platform over another simply because of ego.
Re: C# Autocomplete Demo Using Bing Code Search Engine
#33Soon, modular projects will just consist of searching and plugging in components...
Re: C# Autocomplete Demo Using Bing Code Search Engine
#34I always thought that people should have more built-in search power when they code. It's funny that Microsoft is taking the lead over Google on this, though I guess Google doesn't have their own IDE. Soon, modular projects will just consist of searching and plugging in components...
Re: C# Autocomplete Demo Using Bing Code Search Engine
#35Re: C# Autocomplete Demo Using Bing Code Search Engine
#36I fear for the future of working with copy/paste programmers, but then my fears are probably unfounded because after all, this uses the Bing search engine. Searching for "///how to sort an array" will most likely just give me the top ten tourist hotels in Paraguay instead.
Re: C# Autocomplete Demo Using Bing Code Search Engine
#37Earlier quoted context omitted.
It should be noted that public github repos are _not_ public domain and not even necessarily open source unless the author specifies a license.
It's part of the GitHub terms of service: "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
#38Earlier quoted context omitted.
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.
> all public github code In RAM.
RAM: 63 r3.8xlarge @ $2.80/hr = $176.40/hr
SSD: 5 i2.4xlarge @ $3.41/hr = $ 17.05/hr
HDD: 1 hs1.8xlarge @ $4.60/hr = $ 4.60/hr
[1] http://www.elasticsearch.org/case-study/github/Re: C# Autocomplete Demo Using Bing Code Search Engine
#39I always thought that people should have more built-in search power when they code. It's funny that Microsoft is taking the lead over Google on this, though I guess Google doesn't have their own IDE. Soon, modular projects will just consist of searching and plugging in components...
Android Studio.
Re: C# Autocomplete Demo Using Bing Code Search Engine
#40One 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…