- On Becoming a Guinea Fowl (2024) (馃崊 100%)
- A woman returns to Zambia to attend the funeral of her uncle. As funeral preparations unfold, she must navigate complex family dynamics.
- Lady Bird (2017) (馃崊 99%)
- A teenager navigates a loving but turbulent relationship with her strong-willed mother over the course of an eventful and poignant senior year of high school.
- Eighth Grade (2018) (馃崊 99%)
- An introverted teenage girl tries to survive the last week of her disastrous eighth grade year before
- The Metabarons Series
- Metabarons Genesis: Castaka
- Dayal, the First Ancestor (2007)
- The Rival Twins (2013)
- The Metabarons (8 volumes)
- Othon (2004)
- Honorata (2004)
- Metabarons Genesis: Castaka
- Aghnar (2004)
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 useIsVirtualKeyboardVisible = () => { | |
| const [isVirtualKeyboardVisible, setIsVirtualKeyboardVisible] = React.useState(false); | |
| React.useEffect(() => { | |
| // probably incomplete, good enough for me | |
| const inputTypesThatOpenTheVirtualKeyboard = ['text', 'email', 'password', 'number', 'search']; | |
| const handleFocus = (event: Event) => { | |
| if ( | |
| event.target instanceof HTMLTextAreaElement || |
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 tesseractTsvToJson = (tsvFilename, jsonFilename) => { | |
| console.log(`> tsvToJson ${tsvFilename} => ${jsonFilename}`); | |
| const tsvLines = fs.readFileSync(tsvFilename, 'utf-8').trim().split('\n').reverse(); | |
| /** @type {any} */ | |
| const json = {pages: []}; | |
| // discard header | |
| tsvLines.pop(); |
- Linux Mint 20.2 x86_64
- Kernel 5.4.0-135-generic
sudo apt-get remove exfat-fuse exfat-utils
Install exfat-linux.
Some notes to adjust the MX4000 parameters for retro gaming. These notes apply to my model (SW 2.0)
$ uname -r
From:
- http://www.hifi-remote.com/forums/viewtopic.php?t=14120
- http://www.remotecentral.com/cgi-bin/mboard/rc-discrete/thread.cgi?7852
Code:
Protocol: NEC1
Device: 2
SubDevice: 160
Func. OBC HEX EFC
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 crypto = require('crypto'); | |
| const urlBase64 = require('urlsafe-base64'); | |
| function generateVAPIDKeys() { | |
| const curve = crypto.createECDH('prime256v1'); | |
| curve.generateKeys(); | |
| return { | |
| publicKey: urlBase64.encode(curve.getPublicKey()), | |
| privateKey: urlBase64.encode(curve.getPrivateKey()) |
NewerOlder