Skip to content

Instantly share code, notes, and snippets.

View wolfcoder's full-sized avatar
💭
Full Stack Developer

Bams wolfcoder

💭
Full Stack Developer
View GitHub Profile
@samuelbles07
samuelbles07 / button.cpp
Last active June 30, 2019 07:53
Workshop Road to RIoT 2019
#include <Arduino.h>
#include <ESPectro32_Board.h>
void setup() {
pinMode(ESPECTRO32_LED_PIN, OUTPUT);
pinMode(ESPECTRO32_BUTTON_A_PIN, INPUT);
}
void loop() {
if (digitalRead(ESPECTRO32_BUTTON_A_PIN) == LOW) {
@johnbillion
johnbillion / gist:4fa3c4228a8bb53cc71d
Last active February 18, 2025 13:06
WordPress Flow
INITIALISATION
==============
load wp-config.php
set up default constants
load wp-content/advanced-cache.php if it exists
load wp-content/db.php if it exists
connect to mysql, select db
load object cache (object-cache.php if it exists, or wp-include/cache.php if not)
load wp-content/sunrise.php if it exists (multisite only)
@davfre
davfre / git_cheat-sheet.md
Last active February 12, 2025 06:24
git commandline cheat-sheet