- 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 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 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 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()) |
This file contains 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
/* | |
* Original file: | |
* https://github.com/40thieves/webpack-sentry-plugin/blob/master/src/index.js | |
*/ | |
const request = require('request-promise'); | |
const fs = require('fs'); | |
const crypto = require('crypto'); | |
const {green, yellow, red} = require('colors/safe'); | |
const Queue = require('promise-queue'); |
NewerOlder