Skip to content

Instantly share code, notes, and snippets.

web interface:
- set radio config / lora / region to EU_868
- set radio config / lora / modem preset to long fast
- set modem config / neighbor info / enabled to 'on'
command-line:
- meshtastic --set-ham ...callsign...
- meshtastic --set lora.override_frequency 869.525
- meshtastic --ch-set psk none --ch-index 0
- meshtastic --ch-index 0 --ch-longfast
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"basics": {
"name": "Folkert van Heusden",
"label": "software developer",
"image": "https://vanheusden.com/resume.json.jpg",
"email": "mail@vanheusden.com",
"phone": "+31182796546",
"url": "https://www.vanheusden.com/",
"summary": "I'm someone who wants to know everything there is to know about a subject, curiosity is in my nature. In my work I like to think out of the box, I als like to share knowledge. Finally, I stand for my opinion and like to propagate my vision to others, I have an open attitude and am curious about other people's visions and motivations.",
@folkertvanheusden
folkertvanheusden / go-list.txt
Last active October 26, 2023 15:54
list of Go/Baduk AI software (open source only)
* Go
** Python3 or C++
** https://github.com/shedskin/shedskin/blob/master/examples/go/
* DarkForest
** C
** https://github.com/facebookresearch/darkforestGo
* INDIGO
** ?

[Verifying my cryptographic key:openpgp4fpr:44253F8F43240526C19DB0936B6455EDFEED3BD1]

@folkertvanheusden
folkertvanheusden / keybase.md
Created March 13, 2023 21:20
keybase proof

Keybase proof

I hereby claim:

  • I am folkertvanheusden on github.
  • I am vanheusdencom (https://keybase.io/vanheusdencom) on keybase.
  • I have a public key whose fingerprint is 4425 3F8F 4324 0526 C19D B093 6B64 55ED FEED 3BD1

To claim this, I am signing this object:

@folkertvanheusden
folkertvanheusden / zorgverzekering.py
Created February 8, 2022 21:25
1e bot using @r3boot's new bot framework
#! /usr/bin/python3
# by FvH, released under Apache License v2.0
# either install 'python3-paho-mqtt' or 'pip3 install paho-mqtt'
import paho.mqtt.client as mqtt
import time
mqtt_server = '192.168.64.1'
@folkertvanheusden
folkertvanheusden / mdns.ino
Created December 8, 2021 15:58
mdns for arduino (esp8266)
#include <ESP8266WiFi.h>
#include <WiFiClient.h>
#include <WiFiUdp.h>
#include <AppleMIDI.h>
APPLEMIDI_CREATE_DEFAULTSESSION_INSTANCE();
char ssid[] = " your ssid "; // your network SSID (name)
char pass[] = " wifi password "; // your network password (use for WPA, or use as key for WEP)
@folkertvanheusden
folkertvanheusden / import-json-influxdb.py
Last active August 23, 2021 11:32
import a json into influx. need to manually create the influx-db before and also adjust username, password, url, etc.
#! /usr/bin/python3
from influxdb import InfluxDBClient
import json
import time
import urllib3
http = urllib3.PoolManager()
resp = http.request('GET', 'http://www.hackerspace-gouda.nl/stats.json')