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
import { | |
KeyClient, | |
CryptographyClient, | |
} from "@azure/keyvault-keys"; | |
import { DefaultAzureCredential } from "@azure/identity"; | |
import { createHash } from "crypto"; | |
const vaultUrl = `https://${process.env.AZURE_KEYVAULT_NAME}.vault.azure.net`; | |
const credential = new DefaultAzureCredential(); | |
const keyClient = new KeyClient(vaultUrl, credential); |
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
import { SecretClient } from "@azure/keyvault-secrets"; | |
import { DefaultAzureCredential } from "@azure/identity"; | |
import * as jose from "node-jose"; | |
const vaultUrl = `https://${process.env.AZURE_KEYVAULT_NAME}.vault.azure.net`; | |
const credential = new DefaultAzureCredential(); | |
const secretClient = new SecretClient(vaultUrl, credential); | |
async function main() { | |
const keyVaultKey = await secretClient.getSecret("jwkdemo"); |
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 | |
export WORK=work | |
# download https://download.developer.apple.com/Developer_Tools/Xcode_13.4.1/Xcode_13.4.1.xip | |
curl -LO https://github.com/macports/macports-base/releases/download/v2.7.2/MacPorts-2.7.2-12-Monterey.pkg | |
read -rsp $'Install XCode and Macports then Press any key to continue...\n' -n1 key |
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
const { Base64 } = require('js-base64') | |
const { Op } = require('sequelize'); | |
// https://github.com/graphql/graphql-relay-js/issues/94#issuecomment-232410564 | |
const effectiveOrder = ({ last }, orderBy) => { | |
/* adds `id ASC` to end of `ORDER BY` if `id` is not already in the `ORDER BY` clause | |
flips `ASC` to `DESC` (and vice-versa) if pagination arg `last` is defined | |
*/ | |
const order = orderBy |
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
CONFIG_LOW_LEVEL_OPTIONS=y | |
# CONFIG_MACH_AVR is not set | |
# CONFIG_MACH_ATSAM is not set | |
# CONFIG_MACH_ATSAMD is not set | |
# CONFIG_MACH_LPC176X is not set | |
CONFIG_MACH_STM32=y | |
# CONFIG_MACH_RP2040 is not set | |
# CONFIG_MACH_PRU is not set | |
# CONFIG_MACH_LINUX is not set | |
# CONFIG_MACH_SIMU is not set |
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
BUSINESS_RELEASE=loris | |
RELEASE_DATE="October 20th, 2020" | |
## update local repo | |
git fetch | |
# housekeeping | |
# delete local branches that are merged | |
git branch --merged | egrep -v "(^\*|master|dev)" >/tmp/merged-branches && \ | |
vi /tmp/merged-branches && xargs git branch -d </tmp/merged-branches | |
# prune remote |
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
ssh_authorized_keys: | |
- github:pixeldrew | |
k3os: | |
k3s_args: | |
- server | |
- "--no-deploy" | |
- traefik |
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
ssh_authorized_keys: | |
- github:pixeldrew | |
k3os: | |
k3s_args: | |
- server | |
- "--no-deploy" | |
- traefik |
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
function useForm(callback, defaultValues, schema) { | |
const [values, setValues] = useState({ ...defaultValues }); | |
const [errors, setErrors] = useState([]); | |
const [validateOnChange, setValidateOnChange] = useState(false); | |
async function validate() { | |
if (schema) { | |
const errors = await catchErrors(); | |
if (errors.length > 0) { | |
setErrors([...errors]); |
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
const path = require("path"); | |
const next = require("next"); | |
const express = require("express"); | |
const { createServer } = require("http"); | |
const { ApolloServer } = require("apollo-server-express"); | |
const helmet = require("helmet"); | |
const { PORT = 3000, NODE_ENV = "dev" } = process.env; | |
const port = parseInt(PORT, 10); |
NewerOlder