Skip to content

Instantly share code, notes, and snippets.

View SpiZeak's full-sized avatar

Max Trewhitt SpiZeak

View GitHub Profile
@sekcompsci
sekcompsci / Comparison Espressif ESP MCUs.md
Last active February 12, 2026 21:19 — forked from fabianoriccardi/Comparison Espressif ESP MCUs.md
Comparison chips (SoCs) table for ESP8266/ESP32/ESP32-S2/ESP32-S3/ESP32-C3/ESP32-C6. Forked from @fabianoriccardi

Comparison chips (SoCs) table for ESP8266/ESP32/ESP32-S2/ESP32-S3/ESP32-C3/ESP32-C6

A minimal table to compare the Espressif's MCU families.

ESP8266 ESP32 ESP32-S2 ESP32-S3 ESP32-C3 ESP32-C6
Announcement Date 2014, August 2016, September 2019, September 2020, December
@SpiZeak
SpiZeak / svn2git.sh
Last active May 14, 2020 12:32 — forked from mlocati/svn2git.sh
Convert SVN repository to GIT
#!/bin/bash
# This script was written for Ubuntu 14.04 and 16.04
# Other operating systems may need a few changes
WORK_DIR=~/svn2git
AUTHORS_FILE=$WORK_DIR/authors.txt
GITDIR_DIRTY=$WORK_DIR/dirty
GITDIR_FINAL=$WORK_DIR/final
@MogulChris
MogulChris / acf_google_maps.php
Created January 23, 2019 02:24
Programmatically update ACF Google Maps fields
<?php
//You need an API key and an address (as a string) to geocode
//ACF Google Maps field data looks like:
/*
array(
'address' => '123 My Street, Mytown, Mycountry, Mypostcode',
'lat' => '123.45678',
'lng' => '-125.67890',
)
@chrisvasey
chrisvasey / .htaccess
Created August 7, 2017 08:43
Bedrock .htaccess for shared hosting - rewrite to /web directory
Options -Indexes
# .htaccess primary domain to web redirect
# this file must be in the (public_html | web ) folder of your hosting account
# make the changes to the file according to the instructions.
<IfModule mod_rewrite.c>
# Do not change this line.
RewriteEngine on
# Change %host% to be your primary domain.