Skip to content

Instantly share code, notes, and snippets.

View otherguy's full-sized avatar
:octocat:
Working on OSS!

Alexander Graf otherguy

:octocat:
Working on OSS!
View GitHub Profile
{
"type": "object",
"title": "hello_world",
"description": "A very simple custom context",
"properties": {
"hello": {
"type": "string"
},
"hello_array": {
"type": "array",
@otherguy
otherguy / commands.sh
Last active February 22, 2022 12:25 — forked from SxDx/commands.sh
Custom native JIRA app
// Icon by [Elias](https://macosicons.com/#/u/Elias)
curl -Lo jira.icns https://media.macosicons.com/parse/files/macOSicons/58921463ceb5ae244469378f1dc9ca1f_Jira_Cloud.icns
// macOS
nativefier https://canvadev.atlassian.net/jira/software/c/projects/VAI/boards/1295 --icon jira.icns --name "Jira" --single-instance --internal-urls ".*?(canvadev\.atlassian\.net|www.google.com\/a\/canva.com\/acs|accounts.google.com|id.atlassian.com/login|safetysync.atlassian.net).*?" --inject jira.css --title-bar-style="hiddenInset"
// Windows
nativefier https://canvadev.atlassian.net/jira/software/c/projects/VAI/boards/1295 --icon jira.icns --name "Jira" --single-instance --internal-urls ".*?(canvadev\.atlassian\.net|www.google.com\/a\/canva.com\/acs|accounts.google.com|id.atlassian.com/login|safetysync.atlassian.net).*?" --inject jira.css --platform="windows"
// Linux
@otherguy
otherguy / add-team-to-repos.js
Last active February 18, 2022 22:46 — forked from davidrleonard/add-team-to-repos.js
Add a new team to all Github repos in an organization
/*
* Adds a team to all the repos in a Github organization. This is a tedious
* process in the UI.
*
* Instructions:
*
* 1. Copy this file somewhere on your computer, e.g. ~/addteamrepos.js
* 2. Fill in the uppercase variables below with the right values
* 3. Run this file: `$ node ~/addteamrepos.js`
*/