[](https://gitpod.io/#https://github.com/[your GitHub username]/[your repository])
/** | |
* USB HID Keyboard scan codes as per USB spec 1.11 | |
* plus some additional codes | |
* | |
* Created by MightyPork, 2016 | |
* Public domain | |
* | |
* Adapted from: | |
* https://source.android.com/devices/input/keyboard-devices.html | |
*/ |
- Disable IOMMU in your BIOS
- In /etc/default/grub, add
"iommu=soft"
toGRUB_CMD_LINUX
(if there is already content in there, ex "rhgb quiet", append iommu=soft to it, EXGRUB_CMD_LINUX="rhgb quiet iommu=soft"
)
Krister explains the changes really well in his blog
In the olden days, HTML was prepared by the server, and JavaScript was little more than a garnish, considered by some to have a soapy taste.
After a fashion, it was decided that sometimes our HTML is best rendered by JavaScript, running in a user's browser. While some would decry this new-found intimacy, the age of interactivity had begun.
But all was not right in the world. Somewhere along the way, we had slipped. Our pages went uncrawled by Bing, time to first meaningful paint grew faster than npm, and it became clear: something must be done.
And so it was decided that the applications first forged for the browser would also run on the server. We would render our HTML using the same logic on the server and the browser, and reap the advantages of both worlds. In a confusing series of events a name for this approach was agreed upon: Server-side rendering. What could go wrong?
In dark rooms, in hushed tones, we speak of colours.
JSON=$(cat <<EOF | |
{ | |
"private": true, | |
"scripts": { | |
"start": "parcel index.html", | |
"build": "parcel build index.html --public-url ./", | |
"format": "prettier --write ." | |
}, | |
"dependencies": { | |