I hereby claim:
- I am kaave on github.
- I am kaave (https://keybase.io/kaave) on keybase.
- I have a public key ASCHIHL5CDGn3xsP32QTFHbG0kb74COOQauLiBq4Tc_IJwo
To claim this, I am signing this object:
| // For format details, see https://aka.ms/devcontainer.json. For config options, see the | |
| // README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu | |
| { | |
| "name": "Ubuntu", | |
| // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile | |
| "image": "mcr.microsoft.com/devcontainers/base:jammy", | |
| "features": { | |
| // Programming languages | |
| "ghcr.io/devcontainers/features/node:1": { | |
| "nodeGypDependencies": true, |
| :root { | |
| --height-header: 10rem; | |
| --width-left: 20rem; | |
| --color-fg: #24292f; | |
| --color-canvas-sub: #f6f8fa; | |
| --color-code: #cf222e; | |
| } | |
| html { | |
| font-size: 62.5%; |
| import * as Hex from './hex'; | |
| const red = Hex.create('#f00'); | |
| const nonBrandedRed = '#f00'; | |
| function stdoutOnlyHex(hex: Hex) { | |
| console.log(hex); | |
| } | |
| stdoutOnlyHex(red); |
| import scrapboxData from '../scrapbox.json'; | |
| import fs from 'fs-extra'; | |
| import path from 'path'; | |
| const distPath = path.join(process.cwd(), 'dist'); | |
| async function main() { | |
| fs.mkdirp(distPath); | |
| scrapboxData.pages.forEach(page => { |
| import * as admin from 'firebase-admin'; | |
| import * as functions from 'firebase-functions'; | |
| const validReferrers = [ | |
| 'http://localhost:9012', | |
| ]; | |
| admin.initializeApp(functions.config().firebase); | |
| const db = admin.firestore(); |
| yarn add -D @types/webmidi |
| **/*.d.ts |
I hereby claim:
To claim this, I am signing this object:
| import XMonad | |
| import XMonad.Hooks.EwmhDesktops -- for chrome's fullscreen mode | |
| -- | |
| -- import XMonad.Config.Desktop | |
| -- | |
| -- baseConfig = desktopConfig | |
| main = do | |
| xmonad $ defaultConfig | |
| { terminal = myTerminal |
| def show_tag(self, tag): | |
| # print tags | |
| print(tag) | |
| # create url values | |
| url_values = urllib.urlencode({"read": tag}) | |
| # create request url | |
| url = "http://localhost:8000/?" + url_values | |
| print(" Request to: " + url) |