I hereby claim:
- I am morrisonbrett on github.
- I am brett (https://keybase.io/brett) on keybase.
- I have a public key whose fingerprint is 0266 9B69 B305 D97F B840 96C1 85BA B00E E517 4D13
To claim this, I am signing this object:
| -----BEGIN PGP PUBLIC KEY BLOCK----- | |
| Version: GnuPG v2 | |
| mQINBFMsrJ4BEADArqH8XlnoWGaWinYwZ11rk2ndBJNdH2JdLTtOddaoLXBPbCFr | |
| tWEhMgHSBfKUov6Qr9lnsyND3VJ3qQbdmB3WIxUZJVX1BBS89SSgFtDd4lk9dWna | |
| sFvqcQwXPzIpDv7+EswTwK+PNjOISyLxlJVplbPx1QiPvd5Sa+19C1wglIcA9k/O | |
| Ovjm0iXADFlpjLtd4aNbTBUDFDXp97Uxs9nLONHFSxThWcEmOrTZLUh3iFxoV+Av | |
| ECtV94vS/CNwBYVeSxal2yvPSvnz72GeMvFzPHFn8RZFXcPGvZH37Zn2xC4U+hLh | |
| 20w+nPV+Jtgj0Iit/iyMqIylJA8RAJYJ/Y3MkVEirZaV1OLulpJE6LOeDD7wLs1m | |
| 7b+bwj6SyXiL6zZ3K8+z+cf66RTp4LUOJpuUHRmxGxAoUNG5oko+ugkeaChV8REy |
I hereby claim:
To claim this, I am signing this object:
| // | |
| // Brett Morrison, June 2015 | |
| // | |
| // A simple program to display a list of open pull requests from BitBucket ✔ | |
| // | |
| package main | |
| import ( | |
| "encoding/json" | |
| "flag" |
| "scripts": { | |
| "clean": "ionic-app-scripts clean", | |
| "build": "npm run ionic:build", | |
| "start": "concurrently \"npm run build:watch\" \"npm run serve\"", | |
| "serve": "lite-server -c=bs-config.json", | |
| "ionic:build": "gulp default && npm run lint && ionic-app-scripts build", | |
| "ionic:serve": "gulp default && npm run lint && ionic-app-scripts serve --sourceMap source-map --iscordovaserve --wwwDir platforms/browser/www/ --buildDir platforms/browser/www/build", | |
| "build-prod-browser": "gulp browser && ionic-app-scripts build browser --wwwDir platforms/browser/www --sourceMap source-map", | |
| "build-dev-browser": "gulp browser && ionic-app-scripts build browser --wwwDir platforms/browser/www --sourceMap source-map --dev", | |
| "build-dev-android": "gulp default && cordova build android --debug", |
| { | |
| "rules": { | |
| "align": [ | |
| true, | |
| "parameters", | |
| "statements" | |
| ], | |
| "ban": false, | |
| "class-name": true, | |
| "comment-format": [ |
| Verifying my Blockstack ID is secured with the address 1K5RfyxEmKYfWNLqjC78tXet7UJYcPG7dw https://explorer.blockstack.org/address/1K5RfyxEmKYfWNLqjC78tXet7UJYcPG7dw |
| { | |
| "dashboard": { | |
| "dashboardNative": true, | |
| "dashboardNativeAllSubsidiaries": true, | |
| "dashboardNativeSubsidiaryNames": [], | |
| "dashboardNativeMessage": "We are working to improve your experience and expect to be back online soon. Thanks for your patience.", | |
| "dashboardBrowser": true, | |
| "dashboardBrowserAllSubsidiaries": false, | |
| "dashboardBrowserSubsidiaryNames": ["elite", "mck", "stc"], | |
| "dashboardBrowserMessage": "We are working to improve your experience and expect to be back online soon. Thanks for your patience.", |
| [FunctionName("status")] | |
| [OpenApiOperation(operationId: "Run", tags: new[] { "Status" })] | |
| [OpenApiSecurity("function_key", SecuritySchemeType.ApiKey, Name = "code", In = OpenApiSecurityLocationType.Query)] | |
| [OpenApiResponseWithBody(statusCode: HttpStatusCode.OK, contentType: "application/json", bodyType: typeof(StatusModel), Description = "OK")] | |
| public async Task<IActionResult> Run( |
| #!/bin/bash | |
| # | |
| # Brett Morrison, June 2022 | |
| # | |
| # Below is a script for concatenating multiple mp4 files into one mp4 file. | |
| # This is useful for GoPro camera output. The workflow is: | |
| # 1. Copy files from the GoPro microSD card onto a drive | |
| # 2. Open up a command prompt and CD into the directory you put the MP4 files | |
| # 3. Run the command, catmp4 with the output file name as the one and only parameter | |
| # |