Skip to content

Instantly share code, notes, and snippets.

View statico's full-sized avatar

Ian Langworth ☠ statico

View GitHub Profile
@statico
statico / ian.1m.sh
Created February 28, 2022 17:36
ian's xbar icon
#!/usr/bin/env bash
export PATH="$HOME/bin:$PATH"
iface="$(route get 1.1.1.1 2>/dev/null | grep interface | perl -ple 's/\s*interface:\s*//')"
if [ $? != 0 ]; then
iface="n/a"
fi
case "$iface" in
@statico
statico / api-helpers.ts
Created February 13, 2022 04:12
Next.js API route helpers
import { encode } from "html-entities"
import { getReasonPhrase, StatusCodes } from "http-status-codes"
import stringify from "json-stringify-safe"
import { NextApiResponse } from "next"
// Semantic sugar for returning various status codes, optionally with messages.
export const statusHelper = (res: NextApiResponse) => ({
codes: StatusCodes,
status(code: number, message?: string): void {
const phrase = getReasonPhrase(code)
@statico
statico / useModals.tsx
Created February 10, 2022 04:09
useModals.tsx
import React, {
createContext,
ReactNode,
useCallback,
useContext,
useRef,
useState,
} from "react"
import {
Button,
@statico
statico / cloudWatchAlarmsToSlack.js
Created January 19, 2022 21:20
Lambdas for Slack Notifications
const fetch = require('./fetch')
const RED = '#cd3131'
const YELLOW = '#e5e512'
const GREEN = '#05bc79'
const BLUE = '#2472c8'
exports.handler = async function(event, context) {
// Debugging
// console.log('event', JSON.stringify(event, null, 2))
@statico
statico / Dockerfile
Last active November 3, 2022 15:54
Push-to-deploy architecture using AWS Fargate and GitHub Actions
# ------------------------------
# * Dependencies
FROM node:16.13.0-alpine3.14 AS deps
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile
@statico
statico / useModals.tsx
Created December 19, 2021 18:26
Chakra UI await-able alert, confirm, and prompt modal dialogs
/*
* Usage:
* const { alert, confirm, prompt } = useModals()
* alert("Hey!") // awaitable too
* if (await confirm("Are you sure?")) ...
* const result = await prompt("Enter a URL", "http://")
*/
import React, {
createContext,
@statico
statico / index.js
Created October 7, 2021 18:27
GitHub Project Card Sorter using GraphQL API
const { graphql } = require("@octokit/graphql")
const REPO_OWNER = "x"
const REPO_NAME = "y"
const PROJECT_NUMBER = 2
const COLUMN_TO_SORT = /To Do/
const api = graphql.defaults({
headers: {
authorization: `token ${process.env.GITHUB_TOKEN}`,
@statico
statico / index.js
Last active May 13, 2021 18:04
simple AWS Lambda -> Firehose -> JSON record -> S3
import { FirehoseClient, PutRecordCommand } from "@aws-sdk/client-firehose"
const streamName = process.env.AWS_FIREHOSE_LOG_EVENT_STREAM
const client = new FirehoseClient({})
export const logEvent = (type: string, data: Object) => {
try {
const record = Buffer.from(
JSON.stringify({
@statico
statico / useOneSignal.ts
Last active April 23, 2021 16:56
useOneSignal hook for OneSignal and Next.js with SSR
import getConfig from "next/config"
// Add publicRuntimeConfig: { oneSignalAppId: ... } to next.config.js
const { publicRuntimeConfig } = getConfig()
export const useOneSignal = (externalUserId?: string): void => {
// react-onsignal tries to use a global `document` variable, so we can only
// use it in the client side. Luckily this method doesn't trigger any "wrong
// number of hooks" errors either.
if (!process.browser) return
@statico
statico / index.js
Last active January 27, 2025 03:55
Simple AWS ECS status update notifications to Slack webhook
/*
Want to know when ECS events happen in Slack? Try this.
(1) Create a new Slack app with an incoming webhook, save the webhook URL
(2) Create an SNS topic called something like ECSEvents
(3) Create a CloudWatch Rule that publishes all ECS events to the topic
(4) Create a Node.js Lambda that is triggered by the SNS topic
(5) Add a WEBHOOK_URL environment variable to the Lambda with the webhook URL
(6) Paste this code into index.js
(7) Paste the contents of https://unpkg.com/node-fetch/lib/index.js into fetch.js
(8) Deploy and enjoy