About 10,600,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

    11 request.GET is the dictionary of the GET variables in the http request made to your server for example: python

  3. How can I determine installed SQL Server instances and their …

    0 I know its an old post but I found a nice solution with PoweShell where you can find SQL instances installed on local or a remote machine including the version and also be extend get …

  4. 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?

  5. How to know the jdk version on my machine? - Stack Overflow

    Adding to the complexity, you can also supposedly get your Java version info from Control Panel > Programs > Java > About. For me, that shows Version 8. That's despite java -version …

  6. Find all tables containing column with specified name

    24 To get full information: column name, table name as well as schema of the table..

  7. Python - Can't find pip.ini or pip.conf in Windows

    I have Python 2.7.8 installed on my Windows 7 machine, which comes with pip already preinstalled. I'm able to successfully install new packages from pip and now I need to add a …

  8. 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 …

  9. 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 …

  10. 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