We don’t have very many external contributors and, by keeping the repository open source, we are costing the company more money.
To answer this, we’ll need to query the GitHub API:
We don’t have very many external contributors and, by keeping the repository open source, we are costing the company more money.
To answer this, we’ll need to query the GitHub API:
| import * as path from 'path'; | |
| import * as glob from 'glob'; | |
| import * as yaml from 'js-yaml'; | |
| import * as fs from 'fs'; | |
| import Quickstart from './lib/Quickstart'; | |
| import InstallPlan from './lib/InstallPlan'; | |
| import type { | |
| DataSourceConfig, |
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:1D0B8944DED6ADAB32D075C8C9E6A0DE473AF883]
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:B0D6229AC073165289FBAB3050EF40C07B15FE27]
| #!/bin/sh | |
| RED='\033[0;31m' | |
| RESET='\033[0m' | |
| UNDERLINE='\033[4m' | |
| REGEX="^(revert|feat|fix|ci|chore|docs|test|style|refactor)(\(.+?\))?:.{1,}$" | |
| if ! head -1 "$1" | grep -qE $REGEX; then | |
| echo "${RED}Commit message invalid: please use conventional commits${RESET}" |
| #! /usr/bin/python | |
| import requests | |
| import json | |
| import itertools | |
| API_URL = "https://api.github.com" | |
| HEADERS = {"Accept":"application/vnd.github.inertia-preview+json"} | |
| ORG = "newrelic" |
| Nerdpack | Observability Pack | |
|---|---|---|
| Propriatary term to NR | ✅ | ✅ |
| Contains multiple things that get added to an account | ✅ | ✅ |
| Explained on the developer site | ✅ | ✅ |
| Contains a top-level configuration file | ✅ | ✅ |
| Contains a top-level logo / icon file | ✅ | ✅ |
| Has a directory for each type of component | ✅ | ✅ |
| Can be discovered through a catalog | ✅ | ✅ |
| "pack" | ✅ | ✅ |
| // Generates a simplified kanban board view for a Github project. | |
| // Author: Zack Stickles | |
| // | |
| // Requires a GH_TOKEN is set in the environment (with org and repo read permissions). | |
| /* | |
| */ | |
| const { Octokit } = require("@octokit/rest"); |
vimtutor:help user-manualWhat does Control-R do? :help <C-r>
How do I use completion in insert mode? :help ins-completion