Download Arch Linux iso file: https://www.archlinux.org/download/
Plug and identify your USB flash drive
lsblk
Unmount if necessary
# ~/.config/fish/functions/check_nvmrc.fish | |
function check_nvmrc --on-variable PWD | |
if test -e .nvmrc | |
eval "nvm use" | |
end | |
end | |
# ~/.config/fish/fish.config | |
source ~/.config/fish/functions/check_nvmrc.fish |
Download Arch Linux iso file: https://www.archlinux.org/download/
Plug and identify your USB flash drive
lsblk
Unmount if necessary
import 'dart:convert'; | |
void main() { | |
var jsonData = '{ "id": 1, "name": "Pena", "skills": ["C", "Java", "Kobol"] }'; | |
User user = User.fromJson(jsonDecode(jsonData)); | |
} | |
class User { | |
User(this.id, this.name, this.skills); | |
To disable non-breaking space, e.g. AltGr
+ Spacebar
, one can issue:
setxkbmap -option "nbsp:none"
This fixes it for programs like vscode but GNOME doesn't honor it. To fix that dump dconf
settings for input-sources:
dconf dump /org/gnome/desktop/input-sources/ > input-sources.dconf
Open input-sources.dconf
with editor and add 'nbsp:none'
to xkb-options
list so that you'll end up with something like: