Ctrl + Alt + Space
Route all traffic with a raspberry pi like a VPN.
- get raspbian up and running https://www.raspberrypi.org/downloads/raspbian/
- turn on ssh https://www.raspberrypi.org/documentation/remote-access/ssh/README.md
- maybe update your packages
| //eos3 | |
| wget https://origin.ostree.endlessm.com/keys/eos-flatpak-keyring.gpg | |
| flatpak remote-add --gpg-import=eos-flatpak-keyring.gpg eos-apps https://ostree.endlessm.com/ostree/eos-apps | |
| flatpak remote-add --gpg-import=eos-flatpak-keyring.gpg eos-sdk https://ostree.endlessm.com/ostree/eos-sdk | |
| flatpak install eos-apps com.google.Chrome | |
| git clone git@github.com:endlessm/eos-google-chrome-app.git | |
| cd eos-google-chrome-app | |
| chmod +x eos-google-chrome-app | |
| ./eos-google-chrome-app |
You are running helm init or helm install foo commands and getting errors like this one?
Error: release foo failed: namespaces "bar" is forbidden: User "system:serviceaccount:kube-system:default" cannot get namespaces in the namespace "bar"
Now you have two options:
- Starting from scratch (and learn a thing or two) by following the documentation
$ helm reset --force
| Run here: https://developer.github.com/v4/explorer/ | |
| query GetUsers{ | |
| search(query:"location:india", first: 100, type: USER, ) { | |
| userCount | |
| pageInfo { | |
| endCursor | |
| hasNextPage | |
| } | |
| edges { |
If you can't get X11 or Wayland GUI Linux apps to start anymore on Chrome OS, try the following.
In the Terminal app, this will show the status of your systemd user services/units:
systemctl --user
If sommelier@0.service and sommelier-x@0.service show a failed status, the following worked for me:
sudo ln -s /opt/google/cros-containers/bin/sommelier.elf /usr/bin/
Use a Raspberry Pi as a bridge into my home LAN. The pi is plugged into a switch, which is plugged into an airport express, which is plugged into a cable modem; Nothing fancy.
This isn't a tutorial. Just some example output from a working setup.
off the top of my head, here's the order I would do it in:
- make sure plain old device to device zerotier is working with my LAN/Router/Firewall/ISP
| " With this function you can reuse the same terminal in neovim. | |
| " You can toggle the terminal and also send a command to the same terminal. | |
| let s:monkey_terminal_window = -1 | |
| let s:monkey_terminal_buffer = -1 | |
| let s:monkey_terminal_job_id = -1 | |
| function! MonkeyTerminalOpen() | |
| " Check if buffer exists, if not create a window and a buffer | |
| if !bufexists(s:monkey_terminal_buffer) |
Original post : https://unix.stackexchange.com/a/310699
nmcli con add type wifi ifname wlan0 con-name Hostspot autoconnect yes ssid Hostspot
nmcli con modify Hostspot 802-11-wireless.mode ap 802-11-wireless.band bg ipv4.method shared
nmcli con modify Hostspot wifi-sec.key-mgmt wpa-psk
nmcli con modify Hostspot wifi-sec.psk "veryveryhardpassword1234"
| package main | |
| import ( | |
| "flag" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "os" | |
| "golang.org/x/net/webdav" |