Skip to content

Instantly share code, notes, and snippets.

View harivemula's full-sized avatar

Hari Krishna Vemula harivemula

View GitHub Profile
@laduke
laduke / zerotier-rpi-bridge.md
Last active January 26, 2024 13:01
Various Network Configuration Output

Motivation

Use a Raspberry Pi as a bridge into my home LAN. The pi is plugged into a switch, which is plugged into an airport express, which is plugged into a cable modem; Nothing fancy.

This isn't a tutorial. Just some example output from a working setup.

steps

off the top of my head, here's the order I would do it in:

  • make sure plain old device to device zerotier is working with my LAN/Router/Firewall/ISP
@benwwchen
benwwchen / Sensor_accessory.js
Created November 8, 2016 17:08
HAP-NodeJS MQTT Temperature and Humidity Sensor
var Accessory = require('../').Accessory;
var Service = require('../').Service;
var Characteristic = require('../').Characteristic;
var uuid = require('../').uuid;
var SENSOR = {
currentTemperature: 25,
currentHumidity: 50,
getTemperature: function() {
console.log("Getting the current temperature!");
@p3t3r67x0
p3t3r67x0 / openssl_commands.md
Last active May 22, 2024 02:19
Some list of openssl commands for check and verify your keys

openssl

Install

Install the OpenSSL on Debian based systems

sudo apt-get install openssl