I hereby claim:
- I am frunkad on github.
- I am frunkad (https://keybase.io/frunkad) on keybase.
- I have a public key ASCbBRSQK2XBGS1ELoDeHsmFWlD6d1WEjcWH0j2_7vk4Hwo
To claim this, I am signing this object:
| # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| #set -g default-terminal screen-256color | |
| set -g status-keys vi | |
| set -g history-limit 10000 |
| javascript:(function(){$("div.stars:not(.ng-hide) > .stars > span.stars > input.yn--1").click();$("div.stars:not(.ng-hide) > .stars > span > label.star.star-1").click();var c = prompt("What to fill in input boxes? (Use different each time)");$("div.stars:not(.ng-hide) > textarea").val(c);setTimeout(() => {$("form button.btn.btn-primary").click()}, 1000)})(); |
| import serial | |
| port = "/home/frunkad/projects/cansat/virtual-hind1" | |
| # Uncomment the next line | |
| # port = "COM1" | |
| with serial.Serial(port, 9600, timeout=None) as ser: | |
| while(True): | |
| l = ser.readline() |
I hereby claim:
To claim this, I am signing this object:
| set -v | |
| PROJECTID=$(curl -s "http://metadata.google.internal/computeMetadata/v1/project/project-id" -H "Metadata-Flavor: Google") | |
| # Install logging monitor. The monitor will automatically pick up logs sent to | |
| # syslog. | |
| curl -s "https://storage.googleapis.com/signals-agents/logging/google-fluentd-install.sh" | bash | |
| service google-fluentd restart & | |
| # Install dependencies from apt |
| const express = require('express'); | |
| const app = express(); | |
| function convertMETAR(metarString) { | |
| const codeList = metarString.split(' '); | |
| const result = {}; | |
| let i = 0; | |
| let current = codeList[i]; |