Skip to content

Instantly share code, notes, and snippets.

View ilkergzlkkr's full-sized avatar
🦍

ilkergzlkkr

🦍
View GitHub Profile
@ilkergzlkkr
ilkergzlkkr / docker-multi-registry-push-action.md
Created April 28, 2022 20:38
push docker images to multiple registries with github actions
@KATT
KATT / favourite-ts-tricks.md
Last active April 8, 2025 01:25
🧙‍♂️ Favourite non-obvious TS tricks

Record<string, x | undefined>

Represent maps

// rather than 
const map: {[ key: string ]: string} = {
  foo: 'bar',
}