Skip to content

Instantly share code, notes, and snippets.

@myobie
myobie / tests.ts
Created January 7, 2021 17:00
Build tests with esbuild, serve them with vercel's serve-handler, then use playwright to open a browser and stream the console back to the node console
// NOTE: we are just assuming _tests is an alright place to render to
export async function buildAndRunTests (cwd: string): Promise<void> {
const [{ once }] = cliopts.parse(
['o, once', 'run the tests and then exit']
)
await file.mkdirs(join(cwd, '_tests'))
await buildBrowserTests(cwd)
@myobie
myobie / estrella-utils.cjs
Created January 4, 2021 09:20
Build a project with estrella by convention using the settings in package.json
/* eslint-disable @typescript-eslint/no-var-requires */
const { join } = require('path')
const { build, file, cliopts } = require('estrella')
module.exports = {
buildPackage,
buildBrowserAndNodeModule,
buildBrowserModule,
buildNodeModule
@myobie
myobie / tsc-build.cjs
Created January 4, 2021 09:18
Alternative to estrella's tslint; instead use tsc --build so we can choose to produce declaration files (.d.ts)
/* eslint-disable @typescript-eslint/no-var-requires */
const perf = require('perf_hooks')
const { spawn } = require('child_process')
const { cliopts, fmtDuration, findInPATH, log, stdoutStyle } = require('estrella')
module.exports = {
clock,
tscBuild
}
@myobie
myobie / clone.sh
Created November 23, 2020 09:10
Keep things organized with a clone bash function which always puts repos into the correct place
clone() {
org=$(echo $1 | awk -F/ '{ print $1 }')
mkdir -p ~/src/github.com/$org
path=~/src/github.com/$1
git clone $@ $path
cd $path
}
# Examples:
# $ clone myobie/dot-files
@myobie
myobie / application.ex
Last active November 19, 2020 14:48
Gentle request task in elixir
defmodule Gentle.Application do
use Application
def start(_type, _args) do
children = [
{Task.Supervisor, name: Gentle.TaskSupervisor}
]
opts = [strategy: :one_for_one, name: Gentle.Supervisor]
Supervisor.start_link(children, opts)
@myobie
myobie / ci.yml
Last active January 8, 2025 15:35
Don't run GitHub Actions for pull requests that are drafts
on:
push:
branches:
- master
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
@myobie
myobie / .eslintrc.js
Last active August 10, 2020 14:01
How to setup a hugo repo (or any static website) with eslint and the standard config
module.exports = {
root: true,
env: {
browser: true,
mocha: true
},
globals: {
expect: true
},
plugins: [],
@myobie
myobie / .eslintrc.js
Created July 17, 2020 15:23
My eslint config for typescript projects
module.exports = {
root: true,
env: {
browser: true,
mocha: true
},
globals: {
expect: true
},
parser: '@typescript-eslint/parser',
@myobie
myobie / service-worker.ts
Last active October 18, 2024 07:29
A small example of a service worker in typescript along with the tsconfig.json that allows tsserver and IDEs to understand what's going on
// NOTE: We must export or import at least one thing so we are not in
// the "global" scope, but in a module scope which is re-declarable.
//
// The error from tsserver is: 2451: Cannot redeclare block-scoped
// variable 'self'.
//
// Even tho this is not really a module and cannot be: ServiceWorkers
// cannot be modules.
export type Version = number
@myobie
myobie / socket.ts
Created July 2, 2020 16:13
An example of how I seem to always end up wrapping the phoenix socket client
import { Socket, Channel } from 'phoenix'
import { encode, decode } from './serializer'
import createState, { UpdateCallback } from './create-state'
import { enableMapSet } from 'immer'
enableMapSet()
type MessageCallback = (payload?: unknown) => void
type ChannelState = {