Surprised more people aren't talking about how Microsoft has a near monopoly on the developer ecosystem. They've got GitHub, OpenAI, and VS Code all working together and collecting data that strengthen each other's products while also using their embrace, extend, extinguish strategy with WSL and all of these steer people towards Azure services whenever possible. Seems like something that verges on an anti-trust situa…
I would expect them to purchase StackOverflow too. I guess it's not that essential, seems a low cost acquisition.
GitHub code search is generally available
81–90 of 156 posts
Re: GitHub code search is generally available
#82Earlier quoted context omitted.
> more people aren't talking about how Microsoft has a near monopoly on the developer ecosystem. But do they? In my day job, outside of the occasional use of Visual Studio and developing on a Windows machine, I use no Microsoft products for development. > credit to Microsoft for rehabbing their reputation with developers With a fair number of younger developers, but certainly not all. Most devs I know don't think of…
I don't think they have one today, but it is looking like they could soon have one. Especially since I believe recent reports show that Azure is starting out pace AWS in adoption? So you have .NET, Visual Studio (Code), Azure, Github, OpenAI, Windows, and I am pretty sure more I am forgetting about. I think the big one that wasn't initially mentioned was Azure.
Re: GitHub code search is generally available
#83Earlier quoted context omitted.
Absolutely. GitHub Code Search is by far the most valuable online development tool I have used the past year. It is so much more useful than Copilot or any of the AI LLMs in my experience. With Code Search, I have: * Rewritten a CMake build system, which would have been practically impossible without access to real-world examples because of how poorly designed and documented it is; * Validated machine-generated trans…
That's really interesting, do you have any examples handy of search queries you used?
Searching how an API is used.
Searching how people configured something.
Searching accidental uses of an attribute:
https://github.com/dotnet/csharplang/discussions/5657#discus...
Re: GitHub code search is generally available
#84I'm Colin from GitHub's code search team, happy to answer any questions. For more info on how we built this, you can check out our technical blog post from a few months ago https://github.blog/2023-02-06-the-technology-behind-githubs...
Re: GitHub code search is generally available
#85Earlier quoted context omitted.
It seems you still need to enable the feature. Click your user icon in the top right -> choose "Feature preview" in the dropdown -> enable the "New Code Search and Code View" feature.
How that is not standard for the last 10 years is baffling.
Re: GitHub code search is generally available
#86Re: GitHub code search is generally available
#87Earlier quoted context omitted.
I would expect them to purchase StackOverflow too. I guess it's not that essential, seems a low cost acquisition.
Why would they purchase StackOverflow ? They are partnered with the StackOverflow killer: ChatGPT.
After all, the capabilities of ChatGPT are basically proportional to how well a topic is represented in the training data, which is largely the internet.
Re: GitHub code search is generally available
#88Re: GitHub code search is generally available
#89Surprised more people aren't talking about how Microsoft has a near monopoly on the developer ecosystem. They've got GitHub, OpenAI, and VS Code all working together and collecting data that strengthen each other's products while also using their embrace, extend, extinguish strategy with WSL and all of these steer people towards Azure services whenever possible. Seems like something that verges on an anti-trust situa…
Then Dependabot for large swatches of more developers outside of the earlier mentioned ecosystems. LinkedIn for everyone's career.
Re: GitHub code search is generally available
#90Earlier quoted context omitted.
Loving the new Code Search! Might be super specific, but is there any syntax for searching attributes in HTML elements. For example if a React Component called what's the best way to find all the buttons that are red?
Hmm, you can construct a regular expression, something like: lang:tsx / Example: https://github.com/search?q=lang%3Atsx+%2F%3CButton%5B%5E%5C...