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
#!/usr/bin/env bash | |
# | |
# <bitbar.title>Purple Air PM2.5 AQI</bitbar.title> | |
# <bitbar.dependencies>bash,jq,node</bitbar.dependencies> | |
# | |
# Derived from https://github.com/matryer/bitbar-plugins/blob/master/Weather/aqi.15m.sh by Chongyu Yuan | |
COLORS=("#0ed812" "#ffde33" "#ff9933" "#cc0033" "#660099" "#7e0023" "#404040") | |
PURPLE_AIR_SENSOR_ID=5220 |
Some support LinkedIn import.
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
# Remember that additional env vars can be in a .env, which docker-compose | |
# uses when building the image. | |
FROM node:12.9.0-alpine AS base | |
VOLUME /usr/local/share/.cache/yarn | |
COPY ./ /app/ | |
WORKDIR /app/ | |
RUN npm install --silent --global yarn | |
RUN yarn install --pure-lockfile --non-interactive |
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
.DS_Store | |
.env | |
.vscode | |
Dockerfile | |
docker-compose.yml | |
frontend/.next | |
frontned/out/ | |
node_modules | |
npm-debug.log* | |
yarn-debug.log* |
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
// This is free and unencumbered software released into the public domain. | |
const csv = require('fast-csv') | |
const dir = process.argv[2] | |
if (!dir) { | |
throw new Error('usage: export.js <export-dir>') | |
} | |
// Raw data from Google Hire export |
statico.link short URLs
Why? I wanted an easy way to paste URLs that I use and share a lot.
How? It's just a domain plus a big list of urls (see links.conf
) which I edit with a script (see links.sh
)
Also: People kept asking for an index page, so I made one (https://github.com/statico/statico-link-list). I'll add social media previews when I can get it to work.
- Go to https://zelda.gamepedia.com/Items_in_Breath_of_the_Wild and "Save as Web Page" with Chrome
- In a new folder,
cp ../*/*BotW_*png .
- Use rename to rename all the files, hopefully keeping the larger version of all files:
rename -f '$_=lc $_; s/botw\W//g; s/\d+px.//i; s/_Icon//i; s/_/-/g; s/^(botw-)?/botw-/; s/[^\w.-]+//g; s/-+\.png/.png/' *
- Resize to 128x128px max with ImageMagick:
mogrify -resize '128x128>' *.png
- Upload with the neutral-face-emoji-tools Chrome extension, possibly merging in Fauntleroy/neutral-face-emoji-tools#15 to rate limit uploads
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 * as stringify from 'csv-stringify/lib/sync' | |
import * as fs from 'fs-extra' | |
import { Writable } from 'stream' | |
import * as tempy from 'tempy' | |
// Stringifies and writes a row at a time to disk. Call close() when finished to | |
// get the path to a temporary file where the CSV was written. You are | |
// responsible for deleting that file when finished. | |
export class StreamingCSVWriter { | |
private count: number |
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 * as fs from 'fs-extra' | |
import { google } from 'googleapis' | |
import * as pathlib from 'path' | |
const getSheet = async ( | |
keyFile: string, | |
spreadsheetId: string, | |
range: string | |
): Promise<string[][]> => { | |
const auth = await google.auth.getClient({ |