About 459,000 results
Open links in new tab
  1. How to view the stored procedure code in SQL Server …

    I am new to SQL Server. I am logged into my database through SQL Server Management Studio. I have a list of stored procedures. How do I view the stored procedure code? Right clicking on …

  2. What is the best way to insert source code examples into a …

    Add code snippets to a word document, with syntax highlighting for easier visibility and differentiation of code and other text. Code snippet shall be inline with other text. Code snippet …

  3. How do I fold/collapse/hide sections of code in Visual Studio Code?

    Learn how to fold, collapse, or hide sections of code in Visual Studio Code effectively for better code organization and readability.

  4. How to indent/format a selection of code in Visual Studio Code?

    276 I want to indent a specific section of code in Visual Studio Code. I read How do you format code in Visual Studio Code? that gives shortcuts to indent the whole code, but it doesn't work …

  5. Changing the Git user inside Visual Studio Code

    The user for my Git commits has changed, but I am not able to change that inside of Visual Studio Code. I changed the global settings in Git, but when I want to push or sync via Visual Studio …

  6. How can I disable GitHub Copilot in VS Code? - Stack Overflow

    90 Official Documentation You can disable the built-in AI features in VS Code with the chat.disableAIFeatures setting, similar to how you configure other features in VS Code. This …

  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 …

  8. How to highlight bash/shell commands in markdown?

    For example, to highlight js, I write: ```js function () { return "This code is highlighted as Javascript!"} ``` To highlight HTML code I use ```html. How can we highlight Bash/shell …

  9. How can I get the source code of a Python function?

    A simple example of a function and a sample output would be helpful, because show_code doesn't actually show the source code of user-defined functions and completely fails for builtin …

  10. How do I measure elapsed time in Python? - Stack Overflow

    The python cProfile and pstats modules offer great support for measuring time elapsed in certain functions without having to add any code around the existing functions.