Skip to content

Instantly share code, notes, and snippets.

Setting up Dump1090, PiAware, FlightRadar24Feed, PlaneFinder Client, AdsbExchange Feeder, AirNav RadarBox Feeder & OpenSky Network Feeder

  1. Fix dump1090-mutability service not working by default, due to missing udev rules:

    sudo wget -O /etc/udev/rules.d/rtl-sdr.rules "https://raw.githubusercontent.com/osmocom/rtl-sdr/master/rtl-sdr.rules"

    sudo reboot

@cecilemuller
cecilemuller / 2019-https-localhost.md
Last active January 26, 2026 09:00
How to create an HTTPS certificate for localhost domains

How to create an HTTPS certificate for localhost domains

This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.

Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).

@CodyKochmann
CodyKochmann / SetUpCouchDBSSL.sh
Created August 3, 2016 14:51
This script will set up ssl for couchdb on a raspberry pi, debian or ubuntu system. I added a password generator plugged into openssl so you can just copy and paste that into the server key password prompt unless you either dont trust openssl (which would defeat the purpose of using SSL) or can come up with a better password than a SHA-512 bit h…
#!/bin/bash
# this creates a self signed certificate for couchdb
function SetUpCouchDBSSL
{
mkdir -p /etc/couchdb/ssl \
&& cd /etc/couchdb/ssl \
&& suggestion=`openssl rand -base64 4096 | openssl dgst -sha512 | sed "s/(stdin)= //g"` \
&& echo "Here is a secure password you can use - ${suggestion}" \
&& suggestion="" \