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
| Manjaro Gnome Wayland | |
| Wayland: | |
| 1. Fractional scaling: https://wiki.archlinux.org/title/HiDPI#Wayland | |
| 2. Electorn https://wiki.archlinux.org/title/Wayland#Electron | |
| Key Mapping: input-remapper | |
| Theme: ZorinOS GTK Theme |
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
| const interval = setInterval(() => { | |
| if ($('.edit-account-button').length === 0) { | |
| clearInterval(interval) | |
| } else { | |
| $('.edit-account-button').first().click() | |
| $('button:contains("Delete account")').click() | |
| $('.confirm-button').click() | |
| } | |
| }, 1000) |
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
| import { readFileSync, writeFileSync } from 'fs' | |
| import { brotliCompressSync, gzipSync } from 'zlib' | |
| import hf from 'human-format' | |
| import lunr from 'lunr' | |
| // https://gutenberg.org/ebooks/6130 | |
| const file = readFileSync('./6130-0.txt', 'utf8') | |
| const opts = { | |
| scale: 'binary', |
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
| body { | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| text-rendering: optimizeLegibility; | |
| text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px; | |
| } |
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
| from json import loads | |
| from urllib.request import urlopen | |
| from random import choice | |
| from time import sleep | |
| from html import escape | |
| from requests import get | |
| with urlopen("https://api.nordvpn.com/server") as url: |
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
| https://wiki.archlinux.org/index.php/PCI_passthrough_via_OVMF#Prerequisites | |
| # DL | |
| https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win.iso | |
| # Enable IOMMU | |
| vim /etc/default/grub | |
| intel_iommu=on |