I like this recipe because it nails the bready fluffy butter milk pancakes. Make sure your stuff is room temperature so you don't resolidify your butter on mixing
You can use something other than mustard for this. I've been using Trader Joe's Chili Onion Crunch in combination with mayo and mustard.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import linecache | |
import os | |
import tracemalloc | |
def display_top(snapshot, key_type='lineno', limit=10): | |
snapshot = snapshot.filter_traces(( | |
tracemalloc.Filter(False, "<frozen importlib._bootstrap>"), | |
tracemalloc.Filter(False, "<unknown>"), | |
)) | |
top_stats = snapshot.statistics(key_type) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
homeassistant: | |
container_name: homeassistant | |
image: "ghcr.io/home-assistant/raspberrypi4-homeassistant:stable" | |
volumes: | |
- /home/pi/home_assistant/config:/config | |
- /etc/localtime:/etc/localtime:ro | |
restart: unless-stopped |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# File generated by pre-commit: https://pre-commit.com | |
# ID: unique_id | |
import os | |
import sys | |
# we try our best, but the shebang of this script is difficult to determine: | |
# - macos doesn't ship with python3 | |
# - windows executables are almost always `python.exe` | |
# therefore we continue to support python2 for this small script |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
oven thermometer with MQTT | |
based on: | |
- https://github.com/pawl/oven_thermometer | |
- https://simple-circuit.com/esp8266-nodemcu-ili9341-tft-display/ | |
- https://randomnerdtutorials.com/esp32-mqtt-publish-subscribe-arduino-ide/ | |
parts: | |
- 2.8in SPI TFT ILI9341 screen | |
- MAX6675 temperature sensor | |
- k-type thermocouple |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; PURPOSE: Use hotkeys to switch between audio devices | |
; source: https://www.autohotkey.com/boards/viewtopic.php?t=49980 | |
Devices := {} | |
IMMDeviceEnumerator := ComObjCreate("{BCDE0395-E52F-467C-8E3D-C4579291692E}", "{A95664D2-9614-4F35-A746-DE8DB63617E6}") | |
; IMMDeviceEnumerator::EnumAudioEndpoints | |
; eRender = 0, eCapture, eAll | |
; 0x1 = DEVICE_STATE_ACTIVE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <glad/glad.h> | |
#include <GLFW/glfw3.h> | |
#include <iostream> | |
// used to allow for window resizing | |
void framebuffer_size_callback(GLFWwindow* window, int width, int height); | |
void processInput(GLFWwindow* window); | |
const char* vertex_shader_source = "#version 330 core\n" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; create new text file in current window focus | |
#IfWinActive ahk_class CabinetWClass | |
>!t:: ;explorer - create new text file and focus/select it | |
#IfWinActive ahk_class ExploreWClass | |
>!t:: ;explorer - create new text file and focus/select it | |
;note: similar to: right-click, New, Text Document | |
vNameNoExt := "New Text Document" | |
vDotExt := ".txt" | |
WinGet, hWnd, ID, A | |
for oWin in ComObjCreate("Shell.Application").Windows |
NewerOlder