- Install
wpasupplicant
- Turn on wifi radios:
sudo nmcli radio wifi on
- Check your devices are recognised even if they're not "managed":
sudo iwconfig
- Check your wifi (here called "wlp3s0") is capable of detecting nearby routers:
sudo iwlist wlp3s0 scan
- Configure
netplan
by dropping a file called01-netcfg.yaml
into/etc/netplan/
or edit existing file there. See example below. netplan try
,netplan generate
,netplan apply
.
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | |
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> --> | |
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> | |
<style> | |
/** |
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
curl https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.csv | awk -F ',' '$2 > 0 {print $1, $2}' | grep "\s4004" |
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
call plug#begin(expand('~/.vim/plugged')) | |
Plug 'arcticicestudio/nord-vim' | |
Plug 'sheerun/vim-polyglot' | |
call plug#end() | |
filetype indent plugin on | |
colorscheme nord | |
syntax on | |
set autoindent | |
set backspace=2 | |
set cursorline |
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
{ | |
"extends": [ | |
"config:base" | |
], | |
"packageRules": [ | |
{ | |
"updateTypes": ["minor", "patch", "pin", "digest"], | |
"automerge": true | |
} | |
] |
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 chain = { | |
value: 0, | |
up () { | |
this.value = this.value + 1; | |
return this; | |
}, | |
down (){ | |
this.value = this.value - 1; | |
return this; |
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
<div className='delete-button' onClick={() => { if (window.confirm('Are you sure you wish to delete this item?')) this.onCancel(item) } } /> |
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
curl -H "Authorization: token $OAUTH_TOKEN" --data '{"archived": true}' https://api.github.com/repos/:user/:repo | |
curl -H "Authorization: token $OAUTH_TOKEN" https://api.github.com/repos/:user/:repo/pulls/:pullId/merge |
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
String str = "BBBBBhuhuhuhuhuhssdsdf"; | |
void setup() { | |
for(int i = 0; i < str.length();i++){ | |
println(lookUpChar(str.charAt(i))); | |
} | |
//char foo = 'a'; |
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
/* | |
..- --.- ..- -.... -..-- .-..-. -.-..---.-.-....--.-- -....-.... -..-- .-.-..-.-.... .- .-- | |
B A S I L . J S | |
Bringing the spirit of the Processing visualization language to Adobe InDesign. | |
License - MIT | |
Core |