I hereby claim:
- I am notthetup on github.
- I am notthetup (https://keybase.io/notthetup) on keybase.
- I have a public key whose fingerprint is C0EF A65E 48CF A414 58F5 548C 11C1 79B9 1E30 2E6A
To claim this, I am signing this object:
echo "GET / HTTP/1.1\r\n\r\n" | nc 192.168.0.62 80 |
I hereby claim:
To claim this, I am signing this object:
TRACEFILE:trace1:/var/log/ser2net.log | |
2947:raw:0:/dev/ttyACM0: 115200 8DATABITS NONE 1STOPBIT NOBREAK max-connections=5 tr=trace1 |
#!/bin/sh | |
# | |
# Copy this file to /etc/update-motd.d/ | |
# Remove all other files from /etc/update-motd.d/ | |
date=`date` | |
load=`cat /proc/loadavg | awk '{print $1}'` | |
root_usage=`df -h / | awk '/\// {print $(NF-1)}'` | |
memory_usage=`free -m | awk '/Mem/ { printf("%3.1f%%", $3/$2*100) }'` | |
users=`users | wc -w` |
#!/usr/bin/env python3 | |
# Calculates distance between two GPS (NMEA) devices sharing location over TCP. | |
# | |
# Dependencies : pynmea2, arlpy | |
# | |
# Usage dist.py <local-ip-address> <local-gps-port> <remote-ip-address> <remote-gps-port> | |
# Usage dist.py <local-ip-address> <remote-ip-address> | |
Peer Review Checklist: Embedded C Code | |
Before Review: | |
0 _____ Code compiles clean with extensive warning checks (e.g. MISRA C rules) | |
Reviewer #1: | |
1 _____ Commenting: top of file, start of function, code that needs an explanation | |
2 _____ Style is consistent and follows style guidelines | |
3 _____ Proper modularity, module size, use of .h files and #includes | |
4 _____ No orphans (redundant, dead, commented out, unused code & variables) |