This file contains hidden or 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
| /* | |
| * Gets all GitHub Issues as JSON with the specified fields | |
| * Command: gh issue list --json 'number,title,body,labels,milestone' | |
| * GitHub Issues Reference - https://cli.github.com/manual/gh_issue_list | |
| * https://nodejs.org/api/child_process.html#child_processexeccommand-options-callback | |
| * Snip from Node Docs: Never pass unsanitized user input to this function. Any input containing shell metacharacters may be used to trigger arbitrary command execution. | |
| * Snippet Assumes you have installed Github CLI and have authenticated already | |
| */ | |
This file contains hidden or 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
| {"lastUpload":"2019-03-26T02:22:11.822Z","extensionVersion":"v3.2.7"} |
This file contains hidden or 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
| # Step 0 - Open a PowerShell Command Prompt as Administrator | |
| # Step 0.5 - Set execution policy to remotesigned | |
| # Set-ExecutionPolicy remotesigned | |
| iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1')) | |
| #Apps and Utilities | |
| choco install greenshot --yes | |
| choco install googlechrome --yes |