About 485,000 results
Open links in new tab
  1. How can I manually download .vsix files now that the VS Code ...

    Jan 16, 2025 · FWIW, VS Code Marketplace has a public "extensionquery" API endpoint, where if you pass a filter, it will return the info about an extension, including VSIXPackage asset download URLs for each version.

  2. What does a question mark mean in C# code? - Stack Overflow

    What does a question mark mean in C# code? [duplicate] Asked 8 years, 4 months ago Modified 5 years ago Viewed 56k times

  3. How should I use Outlook to send code snippets? [closed]

    Jul 20, 2009 · As a programmer at a big corporation, I frequently send Outlook emails that contain code samples. I'll actually type code directly into an email. This inevitably causes problems, as Outlook really

  4. git - How to modify GitHub pull request? - Stack Overflow

    I've opened a pull request to a project. The maintainer has decided to accept it, but told me to modify some contents. How can I do it? Whether I should keep the commit hash unchanged, how can I ...

  5. How do you format code in Visual Studio Code (VSCode)?

    Apr 30, 2015 · Visual Studio Code allows the user to customize the default settings. If you want to auto format your content while saving, add the below code snippet in the work space settings of Visual Studio Code.

  6. How to change interpreter in Visual Studio Code? - Stack Overflow

    Dec 2, 2017 · When I run code with CodeRunner extension, it always run it in Python 3.x. Does anyone have similar issue and found how to change Python environment used by this integrated terminal?

  7. The VSCode `code .` command is not working in the …

    I get this error: code . is not recognised as an external or internal command, operable program or batch file Morevoer, shell commands are not coming in my compiler VS code neither do setx path...

  8. How to activate Python virtual environment in VS Code's terminal …

    The terminal in VS Code by default uses PowerShell or PS. If you are mostly coding in python and switching environments frequently ,set the default terminal to CMD:

  9. How can I install VS Code extension manually? - Stack Overflow

    Feb 3, 2017 · I am not able to download any extension via VS Code on my office system due to the proxy. Is there a way that I can do it manually by downloading and placing the downloaded files at the right place?

  10. How can I iterate over rows in a Pandas DataFrame?

    Mar 19, 2019 · Notice that apply doesn't "iteratite" over rows, rather it applies a function row-wise. The above code wouldn't work if you really do need iterations and indeces, for instance when comparing values across different rows (in that case you can do nothing but iterating).