├── .devcontainer ├── Dockerfile ├── devcontainer.json └── library-scripts │ └── common-debian.sh ├── .gitignore ├── .vscode └── settings.json ├── 01_hello ├── AllTest.ps1 ├── README.md ├── hello.ipynb ├── hello.ps1 ├── solution1.ps1 └── test.ps1 ├── 02_crowsnest ├── AllTest.ps1 ├── README.md ├── crowsnest.ipynb ├── crowsnest.ps1 ├── solution1.ps1 └── test.ps1 ├── 03_picnic ├── AllTest.ps1 ├── README.md ├── picnic.ipynb ├── picnic.ps1 ├── solution1.ps1 └── test.ps1 ├── 04_jump_the_five ├── 04_jump_the_five.ps1 ├── AllTest.ps1 ├── README.md ├── jump.ipynb ├── jump.ps1 ├── solution1.ps1 └── test.ps1 ├── 05_howler ├── AllTest.ps1 ├── README.md ├── howler.ipynb ├── howler.ps1 ├── solution1.ps1 └── test.ps1 ├── 06_wc ├── AllTest.ps1 ├── README.md ├── inputs │ ├── empty.txt │ ├── foo.txt │ ├── one.txt │ └── two.txt ├── solution1.ps1 ├── test.ps1 ├── wc.ipynb └── wc.ps1 ├── 07_gashlycrumb ├── AllTest.ps1 ├── Gashlycrumb.ipynb ├── README.md ├── alternate.txt ├── gashlycrumb.ps1 ├── gashlycrumb.txt ├── solution1.ps1 └── test.ps1 ├── 08_apples_and_bananas ├── AllTest.ps1 ├── README.md ├── apples.ipynb ├── apples.ps1 ├── solution1.ps1 └── test.ps1 ├── 09_abuse ├── AllTest.ps1 ├── README.md ├── abuse.ipynb ├── abuse.ps1 ├── solution1.ps1 └── test.ps1 ├── 10_telephone ├── AllTest.ps1 ├── README.md ├── solution1.ps1 ├── telephone.ipynb ├── telephone.ps1 └── test.ps1 ├── 11_bottles_of_beer ├── AllTest.ps1 ├── README.md ├── bottles.ipynb ├── bottles.ps1 ├── solution1.ps1 └── test.ps1 ├── 12_ransom ├── AllTest.ps1 ├── README.md ├── ransom.ipynb ├── ransom.ps1 ├── solution1.ps1 └── test.ps1 ├── 13_twelve_days ├── AllTest.ps1 ├── README.md ├── solution1.ps1 ├── test.ps1 ├── twelve_days.ipynb └── twelve_days.ps1 ├── 14_rhymer ├── AllTest.ps1 ├── README.md ├── rhymer.ipynb ├── rhymer.ps1 ├── solution1.ps1 └── test.ps1 ├── 15_kentucky_friar ├── AllTest.ps1 ├── README.md ├── friar.ipynb ├── friar.ps1 ├── inputs │ ├── banner.txt │ ├── blake.txt │ ├── dickinson.txt │ ├── raven.txt │ └── shakespeare.txt ├── solution1.ps1 └── test.ps1 ├── 16_scrambler ├── AllTest.ps1 ├── README.md ├── scrambler.ipynb ├── scrambler.ps1 ├── solution1.ps1 └── test.ps1 ├── 17_mad_libs ├── AllTest.ps1 ├── README.md ├── inputs │ └── fox.txt ├── mad.ipynb ├── mad.ps1 ├── solution1.ps1 └── test.ps1 ├── 18_gematria ├── AllTest.ps1 ├── README.md ├── gematria.ipynb ├── gematria.ps1 ├── solution1.ps1 ├── solution2-foreach-pipe.ps1 └── test.ps1 ├── 19_wod ├── 19_wod.ps1 ├── AllTest.ps1 ├── README.md ├── inputs │ ├── bad-delimiter.tab │ ├── bad-empty.csv │ ├── bad-headers-only.csv │ ├── bad-headers.csv │ ├── bad-reps.csv │ ├── exercises.csv │ └── silly-exercises.csv ├── solution1.ps1 ├── test.ps1 ├── wod.ipynb └── wod.ps1 ├── 20_password ├── AllTest.ps1 ├── README.md ├── const │ ├── adjs.txt │ ├── nouns.txt │ └── verbs.txt ├── password.ipynb ├── password.ps1 ├── scarlet │ ├── adjs.txt │ ├── nouns.txt │ └── verbs.txt ├── solution1.ps1 ├── sonnets │ ├── adjs.txt │ ├── nouns.txt │ └── verbs.txt └── test.ps1 ├── 21_tictactoe ├── AllTest.ps1 ├── README.md ├── solution1.ps1 ├── test.ps1 └── tictactoe.ps1 ├── 22_itictactoe ├── AllTest.ps1 ├── README.md ├── itictactoe.ps1 └── test.ps1 ├── Dockerfile ├── LICENSE ├── NuGet.config ├── README.md ├── RunAllTests.ps1 ├── UtilityModules └── UtilityModules.psm1 └── inputFiles ├── const.txt ├── dickinson.txt ├── fox.txt ├── gettysburg.txt ├── issa.txt ├── nobody.txt ├── now.txt ├── out.txt ├── preamble.txt ├── scarlet.txt ├── sonnet-29.txt ├── sonnets.txt ├── spiders.txt ├── the-bustle.txt ├── usdeclar.txt └── words.txt /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/library-scripts/common-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/.devcontainer/library-scripts/common-debian.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | */.ipynb_checkpoints/* 2 | 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "powershell.codeFormatting.addWhitespaceAroundPipe": true 3 | } -------------------------------------------------------------------------------- /01_hello/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/01_hello/AllTest.ps1 -------------------------------------------------------------------------------- /01_hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/01_hello/README.md -------------------------------------------------------------------------------- /01_hello/hello.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/01_hello/hello.ipynb -------------------------------------------------------------------------------- /01_hello/hello.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/01_hello/hello.ps1 -------------------------------------------------------------------------------- /01_hello/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/01_hello/solution1.ps1 -------------------------------------------------------------------------------- /01_hello/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/01_hello/test.ps1 -------------------------------------------------------------------------------- /02_crowsnest/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/02_crowsnest/AllTest.ps1 -------------------------------------------------------------------------------- /02_crowsnest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/02_crowsnest/README.md -------------------------------------------------------------------------------- /02_crowsnest/crowsnest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/02_crowsnest/crowsnest.ipynb -------------------------------------------------------------------------------- /02_crowsnest/crowsnest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/02_crowsnest/crowsnest.ps1 -------------------------------------------------------------------------------- /02_crowsnest/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/02_crowsnest/solution1.ps1 -------------------------------------------------------------------------------- /02_crowsnest/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/02_crowsnest/test.ps1 -------------------------------------------------------------------------------- /03_picnic/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/03_picnic/AllTest.ps1 -------------------------------------------------------------------------------- /03_picnic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/03_picnic/README.md -------------------------------------------------------------------------------- /03_picnic/picnic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/03_picnic/picnic.ipynb -------------------------------------------------------------------------------- /03_picnic/picnic.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/03_picnic/picnic.ps1 -------------------------------------------------------------------------------- /03_picnic/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/03_picnic/solution1.ps1 -------------------------------------------------------------------------------- /03_picnic/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/03_picnic/test.ps1 -------------------------------------------------------------------------------- /04_jump_the_five/04_jump_the_five.ps1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04_jump_the_five/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/04_jump_the_five/AllTest.ps1 -------------------------------------------------------------------------------- /04_jump_the_five/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/04_jump_the_five/README.md -------------------------------------------------------------------------------- /04_jump_the_five/jump.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/04_jump_the_five/jump.ipynb -------------------------------------------------------------------------------- /04_jump_the_five/jump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/04_jump_the_five/jump.ps1 -------------------------------------------------------------------------------- /04_jump_the_five/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/04_jump_the_five/solution1.ps1 -------------------------------------------------------------------------------- /04_jump_the_five/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/04_jump_the_five/test.ps1 -------------------------------------------------------------------------------- /05_howler/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/05_howler/AllTest.ps1 -------------------------------------------------------------------------------- /05_howler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/05_howler/README.md -------------------------------------------------------------------------------- /05_howler/howler.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/05_howler/howler.ipynb -------------------------------------------------------------------------------- /05_howler/howler.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/05_howler/howler.ps1 -------------------------------------------------------------------------------- /05_howler/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/05_howler/solution1.ps1 -------------------------------------------------------------------------------- /05_howler/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/05_howler/test.ps1 -------------------------------------------------------------------------------- /06_wc/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/06_wc/AllTest.ps1 -------------------------------------------------------------------------------- /06_wc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/06_wc/README.md -------------------------------------------------------------------------------- /06_wc/inputs/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /06_wc/inputs/foo.txt: -------------------------------------------------------------------------------- 1 | foo 2 | bar baz 3 | quux 4 | -------------------------------------------------------------------------------- /06_wc/inputs/one.txt: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /06_wc/inputs/two.txt: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | -------------------------------------------------------------------------------- /06_wc/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/06_wc/solution1.ps1 -------------------------------------------------------------------------------- /06_wc/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/06_wc/test.ps1 -------------------------------------------------------------------------------- /06_wc/wc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/06_wc/wc.ipynb -------------------------------------------------------------------------------- /06_wc/wc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/06_wc/wc.ps1 -------------------------------------------------------------------------------- /07_gashlycrumb/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/07_gashlycrumb/AllTest.ps1 -------------------------------------------------------------------------------- /07_gashlycrumb/Gashlycrumb.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/07_gashlycrumb/Gashlycrumb.ipynb -------------------------------------------------------------------------------- /07_gashlycrumb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/07_gashlycrumb/README.md -------------------------------------------------------------------------------- /07_gashlycrumb/alternate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/07_gashlycrumb/alternate.txt -------------------------------------------------------------------------------- /07_gashlycrumb/gashlycrumb.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/07_gashlycrumb/gashlycrumb.ps1 -------------------------------------------------------------------------------- /07_gashlycrumb/gashlycrumb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/07_gashlycrumb/gashlycrumb.txt -------------------------------------------------------------------------------- /07_gashlycrumb/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/07_gashlycrumb/solution1.ps1 -------------------------------------------------------------------------------- /07_gashlycrumb/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/07_gashlycrumb/test.ps1 -------------------------------------------------------------------------------- /08_apples_and_bananas/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/08_apples_and_bananas/AllTest.ps1 -------------------------------------------------------------------------------- /08_apples_and_bananas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/08_apples_and_bananas/README.md -------------------------------------------------------------------------------- /08_apples_and_bananas/apples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/08_apples_and_bananas/apples.ipynb -------------------------------------------------------------------------------- /08_apples_and_bananas/apples.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/08_apples_and_bananas/apples.ps1 -------------------------------------------------------------------------------- /08_apples_and_bananas/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/08_apples_and_bananas/solution1.ps1 -------------------------------------------------------------------------------- /08_apples_and_bananas/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/08_apples_and_bananas/test.ps1 -------------------------------------------------------------------------------- /09_abuse/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/09_abuse/AllTest.ps1 -------------------------------------------------------------------------------- /09_abuse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/09_abuse/README.md -------------------------------------------------------------------------------- /09_abuse/abuse.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/09_abuse/abuse.ipynb -------------------------------------------------------------------------------- /09_abuse/abuse.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/09_abuse/abuse.ps1 -------------------------------------------------------------------------------- /09_abuse/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/09_abuse/solution1.ps1 -------------------------------------------------------------------------------- /09_abuse/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/09_abuse/test.ps1 -------------------------------------------------------------------------------- /10_telephone/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/10_telephone/AllTest.ps1 -------------------------------------------------------------------------------- /10_telephone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/10_telephone/README.md -------------------------------------------------------------------------------- /10_telephone/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/10_telephone/solution1.ps1 -------------------------------------------------------------------------------- /10_telephone/telephone.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/10_telephone/telephone.ipynb -------------------------------------------------------------------------------- /10_telephone/telephone.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/10_telephone/telephone.ps1 -------------------------------------------------------------------------------- /10_telephone/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/10_telephone/test.ps1 -------------------------------------------------------------------------------- /11_bottles_of_beer/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/11_bottles_of_beer/AllTest.ps1 -------------------------------------------------------------------------------- /11_bottles_of_beer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/11_bottles_of_beer/README.md -------------------------------------------------------------------------------- /11_bottles_of_beer/bottles.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/11_bottles_of_beer/bottles.ipynb -------------------------------------------------------------------------------- /11_bottles_of_beer/bottles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/11_bottles_of_beer/bottles.ps1 -------------------------------------------------------------------------------- /11_bottles_of_beer/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/11_bottles_of_beer/solution1.ps1 -------------------------------------------------------------------------------- /11_bottles_of_beer/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/11_bottles_of_beer/test.ps1 -------------------------------------------------------------------------------- /12_ransom/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/12_ransom/AllTest.ps1 -------------------------------------------------------------------------------- /12_ransom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/12_ransom/README.md -------------------------------------------------------------------------------- /12_ransom/ransom.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/12_ransom/ransom.ipynb -------------------------------------------------------------------------------- /12_ransom/ransom.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/12_ransom/ransom.ps1 -------------------------------------------------------------------------------- /12_ransom/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/12_ransom/solution1.ps1 -------------------------------------------------------------------------------- /12_ransom/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/12_ransom/test.ps1 -------------------------------------------------------------------------------- /13_twelve_days/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/13_twelve_days/AllTest.ps1 -------------------------------------------------------------------------------- /13_twelve_days/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/13_twelve_days/README.md -------------------------------------------------------------------------------- /13_twelve_days/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/13_twelve_days/solution1.ps1 -------------------------------------------------------------------------------- /13_twelve_days/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/13_twelve_days/test.ps1 -------------------------------------------------------------------------------- /13_twelve_days/twelve_days.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/13_twelve_days/twelve_days.ipynb -------------------------------------------------------------------------------- /13_twelve_days/twelve_days.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/13_twelve_days/twelve_days.ps1 -------------------------------------------------------------------------------- /14_rhymer/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/14_rhymer/AllTest.ps1 -------------------------------------------------------------------------------- /14_rhymer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/14_rhymer/README.md -------------------------------------------------------------------------------- /14_rhymer/rhymer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/14_rhymer/rhymer.ipynb -------------------------------------------------------------------------------- /14_rhymer/rhymer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/14_rhymer/rhymer.ps1 -------------------------------------------------------------------------------- /14_rhymer/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/14_rhymer/solution1.ps1 -------------------------------------------------------------------------------- /14_rhymer/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/14_rhymer/test.ps1 -------------------------------------------------------------------------------- /15_kentucky_friar/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/15_kentucky_friar/AllTest.ps1 -------------------------------------------------------------------------------- /15_kentucky_friar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/15_kentucky_friar/README.md -------------------------------------------------------------------------------- /15_kentucky_friar/friar.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/15_kentucky_friar/friar.ipynb -------------------------------------------------------------------------------- /15_kentucky_friar/friar.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/15_kentucky_friar/friar.ps1 -------------------------------------------------------------------------------- /15_kentucky_friar/inputs/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/15_kentucky_friar/inputs/banner.txt -------------------------------------------------------------------------------- /15_kentucky_friar/inputs/blake.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/15_kentucky_friar/inputs/blake.txt -------------------------------------------------------------------------------- /15_kentucky_friar/inputs/dickinson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/15_kentucky_friar/inputs/dickinson.txt -------------------------------------------------------------------------------- /15_kentucky_friar/inputs/raven.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/15_kentucky_friar/inputs/raven.txt -------------------------------------------------------------------------------- /15_kentucky_friar/inputs/shakespeare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/15_kentucky_friar/inputs/shakespeare.txt -------------------------------------------------------------------------------- /15_kentucky_friar/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/15_kentucky_friar/solution1.ps1 -------------------------------------------------------------------------------- /15_kentucky_friar/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/15_kentucky_friar/test.ps1 -------------------------------------------------------------------------------- /16_scrambler/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/16_scrambler/AllTest.ps1 -------------------------------------------------------------------------------- /16_scrambler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/16_scrambler/README.md -------------------------------------------------------------------------------- /16_scrambler/scrambler.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/16_scrambler/scrambler.ipynb -------------------------------------------------------------------------------- /16_scrambler/scrambler.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/16_scrambler/scrambler.ps1 -------------------------------------------------------------------------------- /16_scrambler/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/16_scrambler/solution1.ps1 -------------------------------------------------------------------------------- /16_scrambler/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/16_scrambler/test.ps1 -------------------------------------------------------------------------------- /17_mad_libs/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/17_mad_libs/AllTest.ps1 -------------------------------------------------------------------------------- /17_mad_libs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/17_mad_libs/README.md -------------------------------------------------------------------------------- /17_mad_libs/inputs/fox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/17_mad_libs/inputs/fox.txt -------------------------------------------------------------------------------- /17_mad_libs/mad.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/17_mad_libs/mad.ipynb -------------------------------------------------------------------------------- /17_mad_libs/mad.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/17_mad_libs/mad.ps1 -------------------------------------------------------------------------------- /17_mad_libs/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/17_mad_libs/solution1.ps1 -------------------------------------------------------------------------------- /17_mad_libs/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/17_mad_libs/test.ps1 -------------------------------------------------------------------------------- /18_gematria/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/18_gematria/AllTest.ps1 -------------------------------------------------------------------------------- /18_gematria/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/18_gematria/README.md -------------------------------------------------------------------------------- /18_gematria/gematria.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/18_gematria/gematria.ipynb -------------------------------------------------------------------------------- /18_gematria/gematria.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/18_gematria/gematria.ps1 -------------------------------------------------------------------------------- /18_gematria/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/18_gematria/solution1.ps1 -------------------------------------------------------------------------------- /18_gematria/solution2-foreach-pipe.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/18_gematria/solution2-foreach-pipe.ps1 -------------------------------------------------------------------------------- /18_gematria/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/18_gematria/test.ps1 -------------------------------------------------------------------------------- /19_wod/19_wod.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/19_wod/19_wod.ps1 -------------------------------------------------------------------------------- /19_wod/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/19_wod/AllTest.ps1 -------------------------------------------------------------------------------- /19_wod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/19_wod/README.md -------------------------------------------------------------------------------- /19_wod/inputs/bad-delimiter.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/19_wod/inputs/bad-delimiter.tab -------------------------------------------------------------------------------- /19_wod/inputs/bad-empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /19_wod/inputs/bad-headers-only.csv: -------------------------------------------------------------------------------- 1 | exercise,reps 2 | -------------------------------------------------------------------------------- /19_wod/inputs/bad-headers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/19_wod/inputs/bad-headers.csv -------------------------------------------------------------------------------- /19_wod/inputs/bad-reps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/19_wod/inputs/bad-reps.csv -------------------------------------------------------------------------------- /19_wod/inputs/exercises.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/19_wod/inputs/exercises.csv -------------------------------------------------------------------------------- /19_wod/inputs/silly-exercises.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/19_wod/inputs/silly-exercises.csv -------------------------------------------------------------------------------- /19_wod/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/19_wod/solution1.ps1 -------------------------------------------------------------------------------- /19_wod/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/19_wod/test.ps1 -------------------------------------------------------------------------------- /19_wod/wod.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/19_wod/wod.ipynb -------------------------------------------------------------------------------- /19_wod/wod.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/19_wod/wod.ps1 -------------------------------------------------------------------------------- /20_password/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/20_password/AllTest.ps1 -------------------------------------------------------------------------------- /20_password/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/20_password/README.md -------------------------------------------------------------------------------- /20_password/const/adjs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/20_password/const/adjs.txt -------------------------------------------------------------------------------- /20_password/const/nouns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/20_password/const/nouns.txt -------------------------------------------------------------------------------- /20_password/const/verbs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/20_password/const/verbs.txt -------------------------------------------------------------------------------- /20_password/password.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/20_password/password.ipynb -------------------------------------------------------------------------------- /20_password/password.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/20_password/password.ps1 -------------------------------------------------------------------------------- /20_password/scarlet/adjs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/20_password/scarlet/adjs.txt -------------------------------------------------------------------------------- /20_password/scarlet/nouns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/20_password/scarlet/nouns.txt -------------------------------------------------------------------------------- /20_password/scarlet/verbs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/20_password/scarlet/verbs.txt -------------------------------------------------------------------------------- /20_password/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/20_password/solution1.ps1 -------------------------------------------------------------------------------- /20_password/sonnets/adjs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/20_password/sonnets/adjs.txt -------------------------------------------------------------------------------- /20_password/sonnets/nouns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/20_password/sonnets/nouns.txt -------------------------------------------------------------------------------- /20_password/sonnets/verbs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/20_password/sonnets/verbs.txt -------------------------------------------------------------------------------- /20_password/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/20_password/test.ps1 -------------------------------------------------------------------------------- /21_tictactoe/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/21_tictactoe/AllTest.ps1 -------------------------------------------------------------------------------- /21_tictactoe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/21_tictactoe/README.md -------------------------------------------------------------------------------- /21_tictactoe/solution1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/21_tictactoe/solution1.ps1 -------------------------------------------------------------------------------- /21_tictactoe/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/21_tictactoe/test.ps1 -------------------------------------------------------------------------------- /21_tictactoe/tictactoe.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/21_tictactoe/tictactoe.ps1 -------------------------------------------------------------------------------- /22_itictactoe/AllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/22_itictactoe/AllTest.ps1 -------------------------------------------------------------------------------- /22_itictactoe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/22_itictactoe/README.md -------------------------------------------------------------------------------- /22_itictactoe/itictactoe.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/22_itictactoe/itictactoe.ps1 -------------------------------------------------------------------------------- /22_itictactoe/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/22_itictactoe/test.ps1 -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/README.md -------------------------------------------------------------------------------- /RunAllTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/RunAllTests.ps1 -------------------------------------------------------------------------------- /UtilityModules/UtilityModules.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/UtilityModules/UtilityModules.psm1 -------------------------------------------------------------------------------- /inputFiles/const.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/inputFiles/const.txt -------------------------------------------------------------------------------- /inputFiles/dickinson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/inputFiles/dickinson.txt -------------------------------------------------------------------------------- /inputFiles/fox.txt: -------------------------------------------------------------------------------- 1 | The quick brown fox jumps over the lazy dog. -------------------------------------------------------------------------------- /inputFiles/gettysburg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/inputFiles/gettysburg.txt -------------------------------------------------------------------------------- /inputFiles/issa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/inputFiles/issa.txt -------------------------------------------------------------------------------- /inputFiles/nobody.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/inputFiles/nobody.txt -------------------------------------------------------------------------------- /inputFiles/now.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/inputFiles/now.txt -------------------------------------------------------------------------------- /inputFiles/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/inputFiles/out.txt -------------------------------------------------------------------------------- /inputFiles/preamble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/inputFiles/preamble.txt -------------------------------------------------------------------------------- /inputFiles/scarlet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/inputFiles/scarlet.txt -------------------------------------------------------------------------------- /inputFiles/sonnet-29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/inputFiles/sonnet-29.txt -------------------------------------------------------------------------------- /inputFiles/sonnets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/inputFiles/sonnets.txt -------------------------------------------------------------------------------- /inputFiles/spiders.txt: -------------------------------------------------------------------------------- 1 | Don't worry, spiders, 2 | I keep house 3 | casually. -------------------------------------------------------------------------------- /inputFiles/the-bustle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/inputFiles/the-bustle.txt -------------------------------------------------------------------------------- /inputFiles/usdeclar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/inputFiles/usdeclar.txt -------------------------------------------------------------------------------- /inputFiles/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/Tiny-PowerShell-Projects/HEAD/inputFiles/words.txt --------------------------------------------------------------------------------