Skip to content

Instantly share code, notes, and snippets.

View iamkilo's full-sized avatar

James Reynolds iamkilo

View GitHub Profile
function Iterate-Numbers{
Param(
[parameter(mandatory = $true)]
$prefix,
[parameter(mandatory = $true)]
$suffix,
[parameter(mandatory = $true)]
$range,
[switch]$singleDigits
)
@iamkilo
iamkilo / addglow.ps1
Last active June 13, 2019 20:10
This adds the cool Synthwave 84' theme by Robb Owen to VSCode for you.
Param(
[switch]$installExtensions,
[switch]$downloadCSS
)
if ($installExtensions.IsPresent) {
code --install-extension robbowen.synthwave-vscode
code --install-extension be5invis.vscode-custom-css
}