chrome://flags/#extensions-toolbar-menu
brave://flags/#extensions-toolbar-menu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Get-WmiObject Win32_PnPSignedDriver| select DeviceName, DriverVersion, Manufacturer | where {$_.DeviceName -like "*Intel*"} | |
| # + filter/sort | |
| Get-WmiObject Win32_PnPSignedDriver| select DeviceName, DriverVersion, Manufacturer | |
| # https://www.thomasmaurer.ch/2016/09/get-installed-driver-version-using-powershell/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Get-Childitem –Path C:\ -Recurse –Force -ErrorAction SilentlyContinue | |
| # https://devblogs.microsoft.com/scripting/use-windows-powershell-to-search-for-files/ |
Enter this in the search box along with your search terms:
Get all gists from the user santisbon.
user:santisbon
Find all gists with a .yml extension.
extension:yml
Find all gists with HTML files.
language:html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart | |
| # https://docs.microsoft.com/en-us/windows/wsl/install-win10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (Get-CimInstance Win32_OperatingSystem) | select Caption, Version, BuildNumber |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pub fn fizz_if_foo(fizzish: &str) -> &str { | |
| if fizzish == "fizz" { | |
| "foo" | |
| } else if fizzish == "fuzz" { | |
| "bar" | |
| } else { | |
| "baz" | |
| } | |
| } |