Skip to content

Instantly share code, notes, and snippets.

@norwd
norwd / aws-policies-2025-05-12.txt
Created May 12, 2025 04:42
Dump of all aws policies as reported by https://awspolicygen.s3.amazonaws.com/js/policies.js as at Mon 12 May 2025 04:42:51 AM UTC
a2c:GetContainerizationJobDetails
a2c:GetDeploymentJobDetails
a2c:StartContainerizationJob
a2c:StartDeploymentJob
a4b:ApproveSkill
a4b:AssociateContactWithAddressBook
a4b:AssociateDeviceWithNetworkProfile
a4b:AssociateDeviceWithRoom
a4b:AssociateSkillGroupWithRoom
a4b:AssociateSkillWithSkillGroup
@norwd
norwd / эспэранто.sed
Last active May 12, 2025 04:51
Програмэто эн сэд пор традуки нормайн литэройн дэ Эспэранто эн ла уникодан прэзэнтон цирилан.
#!/bin/sed -f
#
# Ĉi tiu verko estas markita per "CC0 1.0" (t.e. publika havaĵo).
# https://eo.wikipedia.org/wiki/Krea_Komunaĵo
#
# La skripto tradukas la literojn de la norma Esperanto en la literojn
# de la cirila alfabeto, pli malpli laŭ la tradicia transliterumo:
# https://eo.wikipedia.org/wiki/Transliterumo_de_Esperanto
#
#!/bin/sed -f
# Ĉi tiu skripto tradukas la literojn de la norma Esperanto el la
# unikoda utf8-ĉefenigujo <sdtin> en HTML-koditajn literojn de la Ŝava
# alfabeto, kiujn ĝi sendas en la ĉefeligujon <stdout>. La Ŝava
# alfabeto estas tiu de
# http://eo.wikipedia.org/wiki/%C5%9Cava_alfabeto aŭ
# http://esperanto.us/sxava_alfabeto/ aŭ
# http://kovro.heliohost.org/eo/tools/Sxava/sxava.html
# Neesperantaj signoj restas senŝanĝaj. Ligaĵojn la skripto ne
@norwd
norwd / repository-open-graph-template.md
Last active October 17, 2024 21:13
This is a modified template for GitHub repository images, pre-filled with a grid

Pre-Filled Repository Image Template

repository-open-graph-template

repository-open-graph-template-v2

@norwd
norwd / gender.md
Last active November 29, 2024 22:38 — forked from garbados/gist:f82604ea639e0e47bf44
Falsehoods Programmers Believe About Gender
  1. Gender is bool
  2. Gender is enum
  3. Gender is const
  4. Gender is static
  5. Gender is public
  6. Gender is readonly
@norwd
norwd / README.md
Created March 10, 2023 02:59
3x3-bitmaps.png

3x3-bitmaps-10x-zoom

@norwd
norwd / keep-repo-private.yml
Last active November 27, 2024 03:13
Use GitHub Actions to keep a repo private even if made public manually.
---
on: public
jobs:
make-private:
runs-on: ubuntu-latest
steps:
- run: gh repo edit ${{ github.repository }} --visibility private --accept-visibility-change-consequences
env:
GH_TOKEN: ${{ secrets.KEEP_REPO_PRIVATE }}