- Global Dark Theme: On
- GTK+: Numix
- Icons: EPapirus
- Cursor: Adwaita
- Shell Theme: United-Ubuntu
This file contains 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
Param( | |
[string]$DestPath = "C:/Tests/", | |
[switch]$Robo | |
) | |
if (!(Test-Path -Path "$DestPath/TestDir")) { | |
New-Item -Path "$DestPath/TestDir" -Type Directory | Out-Null | |
} | |
for ($i = 0; $i -lt 10; $i++) { |
This file contains 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
import random | |
import math | |
import argparse | |
import re | |
def main(): | |
# Parse given arguments | |
parser = argparse.ArgumentParser(description='Roll dice.') | |
parser.add_argument( | |
'rollArg', |
This file contains 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
source ~/.config/zsh/antigen.zsh | |
antigen bundle robbyrussell/oh-my-zsh lib/ | |
antigen bundle git | |
antigen bundle zsh-users/zsh-syntax-highlighting | |
antigen bundle zsh-users/zsh-autosuggestions | |
antigen bundle zsh-users/zsh-completions | |
antigen bundle zsh-users/zsh-history-substring-search |