About 9,720,000 results
Open links in new tab
  1. How do I show my global Git configuration? - Stack Overflow

    I'd like to show all configured Git sections. I only found git config --get core.editor, and I'd like to output everything that's configured globally, not only the configured default editor.

  2. python - What does request.GET.get mean? - Stack Overflow

    What your snippet of code is doing is saying, "Get the value of a GET variable with name 'page', and if it doesn't exist, return 1". Likewise, you will see request.POST used when a user …

  3. Pull a certain branch from the remote server - Stack Overflow

    Say that someone created a branch xyz. How do I pull the branch xyz from the remote server (e.g. GitHub) and merge it into an existing branch xyz in my local repo? The answer to Push …

  4. How do I get the value of a registry key and ONLY the value using ...

    Can anyone help me pull the value of a registry key and place it into a variable in PowerShell? So far I have used Get-ItemProperty and reg query and although both will pull the value, both also …

  5. How to list all installed packages and their versions in Python?

    38 If you want to get information about your installed python distributions and don't want to use your cmd console or terminal for it, but rather through python code, you can use the following …

  6. How to get all groups that a user is a member of? - Stack Overflow

    PowerShell's Get-ADGroupMember cmdlet returns members of a specific group. Is there a cmdlet or property to get all the groups that a particular user is a member of?

  7. How to read AppSettings values from a .json file in ASP.NET Core

    To get settings data in .Net 6, I use the IConfiguration interface with some abstraction added to help me test it in my projects, making my code more flexible. For example, there is some API …

  8. Get the last day of the month in SQL - Stack Overflow

    Basically, you get the number of months from the beginning of (SQL Server) time for YOUR_DATE. Then add one to it to get the sequence number of the next month. Then you …

  9. How do I select rows from a DataFrame based on column values?

    How can I select rows from a DataFrame based on values in some column in Pandas? In SQL, I would use: SELECT * FROM table WHERE column_name = some_value

  10. Install winget by the command line (powershell) - Stack Overflow

    I'm trying to write a PowerShell script to setup windows dev machines. I want to use winget but I don't see any easy way just to install winget using the commandline. You have to either use …