Skip to content

Instantly share code, notes, and snippets.

View blazejrypak's full-sized avatar
🏠
Working from home

Blažej Rypák blazejrypak

🏠
Working from home
View GitHub Profile
@blazejrypak
blazejrypak / MQTT-influxDB-telegraf-grafana-in-armv6-raspberry.md
Created April 6, 2024 10:28 — forked from lpla/MQTT-influxDB-telegraf-grafana-in-armv6-raspberry.md
Install MQTT + influxDB + telegraf + grafana in Raspberry Pi 1 or Zero (armv6)

I tried to install this set of technologies for an small home project using BME280 in a Raspberry Pi Zero, but all guides I tried to follow are based on newer Raspberry Pi versions (armv7) (like this guide or this one), so the docker instructions don't work for some of these packages.

TL;DR: don't use any docker image, use only apt commands and repos from each project official documentation

Mosquitto (MQTT)

As official documentation details, simply use the already available package from Raspbian/Raspberry Pi OS archive repository:

@blazejrypak
blazejrypak / gist:910380dc107254afd43d5d7751a69e82
Last active October 5, 2023 18:25
Burp HMAC Authentication for HTTP Requests
# Description: This script adds HMAC authentication headers to an HTTP request.
# Title: HMAC Authentication for HTTP Requests
import sys
import time
import uuid
import hashlib
import hmac
import base64
import re