QTDDTOT: Questions that don’t deserve their own thread
This is the thread for one-liner questions about /pol/-related topics. “What does /pol/ think of [x],” “is [x] redpilled,” and associated questions belong here. Threads created based on a single, simple question will be deleted. If your thread is deleted, come here and ask again. REMINDER TO SEARCH THE CATALOG FIRST.
OP - https://8ch.net/pol/res/12021208.html
view the rest of the comments →
16078978? ago
GUIDS, GET YOUR GUIDS HERE, HOT OFF THE CACHE
GUID Generator for PowerShell$count = Read-Host "Number of GUIDs to generate"[char]$upper = Read-Host "Upper case? (y/n)"if($upper -eq 'y') { do { $n += 1 [guid]::NewGuid().ToString().ToUpper() } while ($n -lt $count)} elseif ($upper -eq 'n') { do { $n += 1 [guid]::NewGuid() } while ($n -lt $count)} else { Write-Host "Invalid input. Exiting"}