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
node_modules |
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
#!/bin/bash | |
# | |
# Brett Morrison, June 2022 | |
# | |
# Script for creating directories for a multi-camera hockey session. | |
# | |
# Usage: mkhockey.sh | |
# Get the current date | |
d=`date +"%m-%d-%Y"` |
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
#!/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 | |
# |
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
[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( |
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
{ | |
"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.", |
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
Verifying my Blockstack ID is secured with the address 1K5RfyxEmKYfWNLqjC78tXet7UJYcPG7dw https://explorer.blockstack.org/address/1K5RfyxEmKYfWNLqjC78tXet7UJYcPG7dw |
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
Show hidden characters
{ | |
"rules": { | |
"align": [ | |
true, | |
"parameters", | |
"statements" | |
], | |
"ban": false, | |
"class-name": true, | |
"comment-format": [ |
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
"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", |
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
// | |
// Brett Morrison, June 2015 | |
// | |
// A simple program to display a list of open pull requests from BitBucket ✔ | |
// | |
package main | |
import ( | |
"encoding/json" | |
"flag" |
NewerOlder