Adapted from Bill Costin
Texas Hold 'Em is Seven Card Stud where each player gets two down cards; "Hole" cards with the remaining five up cards; "Community" cards being placed in the center of the table which all players use to complete their hand.
{ | |
Styles : [ | |
{ | |
Name : "Light", | |
FilePanel : { | |
CursorBorderColor : -2147483635, | |
ForeColor : 13421772, | |
BackColor : 0, | |
BackColor2 : 0, | |
MarkColor : 10875385, |
For use with ueli.
File location on Windows: $env:AppData\ueli\ueli9.settings.json
Table created using:
$s="|Name|Prefix|Url|`n|----|------|---|`n"; (Get-Content "$env:AppData/ueli/ueli9.settings.json" | ConvertFrom-Json).'extension[CustomWebSearch].customSearchEngines' | Sort-Object name | ForEach-Object { $s+="|{0}|{1}|``{2}``|`n" -f $_.name,$_.prefix,$_.url }; $s
# Derived from WinProdKeyFinder | |
# https://github.com/mrpeardotnet/WinProdKeyFinder | |
$digitalProductId = (Get-ItemProperty -Path 'HKLM:\Software\Microsoft\Windows NT\CurrentVersion').DigitalProductId | |
# First byte appears to be length | |
if ($digitalProductId[0] -ne $digitalProductId.Length) { | |
throw 'Invalid length.' | |
} | |
$ProductId = [Text.Encoding]::UTF8.GetString($digitalProductId[8..30]) |
Adapted from the GTA IV Wiki
Control | PC | 360 |
---|---|---|
Take phone out | Up | D-Pad Up |
These are the most commonly used switches I use in rg.
Command | Description |
---|---|
rg pattern |
Search pattern in current dir recursively |
rg pattern utils.py |
Search in a single file utils.py |
rg pattern src/ |
Search in dir src/ recursively |
rg '^We' test.txt |
Regex searching support (lines starting with We) |
function arch_specific($prop, $manifest, $architecture) { | |
if ($manifest.architecture) { | |
$val = $manifest.architecture.$architecture.$prop | |
if ($val) { return $val } # else fallback to generic prop | |
} | |
if ($manifest.$prop) { return $manifest.$prop } | |
} | |
$scoopdir = Join-Path ([Environment]::GetFolderPath('UserProfile')) 'scoop' |
# Install WinMerge per-user from https://winmerge.org/downloads | |
# or: winget install --id 'WinMerge.WinMerge' | |
# Then do "git config --edit --global" and add the following: | |
[diff] | |
tool = winmerge | |
[difftool "winmerge"] | |
name = WinMerge | |
trustExitCode = true | |
# For Machine-wide install: |
$argumentCompleterScriptBlock = { | |
param($wordToComplete, $commandAst, $cursorPosition) | |
$commands = ` | |
@{Text = 'alias'; Tip = 'Manage scoop aliases' }, ` | |
@{Text = 'bucket'; Tip = 'Manage Scoop buckets' }, ` | |
@{Text = 'cache'; Tip = 'Show or clear the download cache' }, ` | |
@{Text = 'cat'; Tip = 'Show content of specified manifest.' }, ` | |
@{Text = 'checkup'; Tip = 'Check for potential problems' }, ` | |
@{Text = 'cleanup'; Tip = 'Cleanup apps by removing old versions' }, ` |