OG star tracker
Presumed Innocent by Scott Turow
Takuya Kuroda
How to demagnetize concealed magnets
Case’s magnets interfering with drawing precision with S-Pen : r/GalaxyTab
Hyperion (Hyperion Cantos, #1) by Dan Simmons
WebSockets on nginx
location /api/websocket {
proxy_pass ws://192.168.56.101:8123/api/websocket;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection “upgrade”;
}
location / {
proxy_pass http://192.168.56.101:8123/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection “upgrade”;
}