I hereby claim:
- I am dbrrt on github.
- I am dbrrt (https://keybase.io/dbrrt) on keybase.
- I have a public key ASBVPUG-CDs4y49m2HcrX-4iG96JXjPdUYLYrH_GK0k1Qwo
To claim this, I am signing this object:
sudo inputattach --daemon -w8001 /dev/ttyS4 |
npx tsc --init --rootDir src --outDir dist \ | |
--esModuleInterop --resolveJsonModule --lib es6 \ | |
--module commonjs --allowJs true --noImplicitAny true | |
yarn init |
sudo apt remove --purge blueberry | |
sudo apt install blueman |
create table cc_stage( | |
cc_num int, | |
cc_mgr varchar | |
); | |
create table cc_prod( | |
cc_num int | |
cc_mgr varchar, | |
valid_from date, | |
valid_to date, |
import type { VercelRequest, VercelResponse } from "@vercel/node"; | |
export const vercelWrapper = | |
(handler_: Function) => async (req: VercelRequest, res: VercelResponse) => { | |
const { statusCode, body } = await handler_(req); | |
res.status(statusCode).json(JSON.parse(body)); | |
}; |
https://github.com/microsoft/WSL/issues/5401 | |
- "The user has not been granted the requested logon type at this computer" | |
Type `gpupdate /force` in a shell. | |
Then reboot. | |
The error shouldn't appear anymore. | |
I hereby claim:
To claim this, I am signing this object:
go run . > output.png
wget https://mirror.alpix.eu/endeavouros/repo/endeavouros/x86_64/endeavouros-keyring-<VERSION>-any.pkg.tar.xz | |
sudo pacman -U endeavouros-keyring-<VERSION>-any.pkg.tar.xz |
const fs = require('fs') | |
const cloudformationSchema = require('@serverless/utils/cloudformation-schema') | |
const esbuild = require('esbuild') | |
const yaml = require('js-yaml') | |
const rimraf = require('rimraf') | |
const SERVERLESS_YML_PATH = './serverless.yml' | |
const OUT_DIR = './dist' | |
// ref: https://esbuild.github.io/api/#simple-options |