This file contains hidden or 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
| sudo su | |
| #display/search for boot partition | |
| fdisk -l # or lsblk -f | |
| # encrypted luks partition | |
| cryptsetup luksOpen /dev/nvme0n1p3 disk | |
| # mount all | |
| mkdir -p /mnt/boot/efi |
This file contains hidden or 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
| //################################################### | |
| // flashy.js | |
| //################################################### | |
| window.$ = document.querySelector.bind(document); | |
| window.$$ = document.querySelectorAll.bind(document); | |
| Node.prototype.on = window.on = function (name, onFn) { | |
| this.addEventListener(name, onFn); | |
| }; |
This file contains hidden or 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
| stages: | |
| - publish | |
| pages: | |
| image: node:16-alpine | |
| stage: publish | |
| before_script: | |
| - npm install fs-extra | |
| script: | |
| - node ./tools/scripts/generate-documentation.ts |