Skip to content

Instantly share code, notes, and snippets.

@jidckii
jidckii / DVRIP-Sonia Reference Codes.md
Created October 15, 2019 07:45 — forked from ekwoodrich/DVRIP-Sonia Reference Codes.md
Reference codes for the DVRIP/Sonia TCP protocol used by the Net Surveillance ActiveX plugin

DVRIP/Sonia Protocol

DVRIP/Sonia TCP protocol used by the Net Surveillance ActiveX plugin

1. Response Codes

Return code Definition
100 Success
101 Unknown error
102 Version not supported
103 Illegal request
@jidckii
jidckii / install_go_pi.sh
Last active January 11, 2019 16:45 — forked from random-robbie/install_go_pi.sh
Install Go Lang on Raspberry Pi 3
#!/bin/sh
# For install
# curl -sSL raw_url | sh
GO_VERSION_DEFAULT=1.11.4
if [ -z "$GO_VERSION" ]; then
GO_VERSION=$GO_VERSION_DEFAULT
fi