Simple old function to load a file into a string.
$s = loadStrFile("file.txt"); function loadStrFile($filename) { $handle = fopen ($filename, "rb"); $contents = fread ($handle, filesize ($filename)); fclose ($handle); return $contents; }
Simple old function to load a file into a string.
$s = loadStrFile("file.txt"); function loadStrFile($filename) { $handle = fopen ($filename, "rb"); $contents = fread ($handle, filesize ($filename)); fclose ($handle); return $contents; }
Testing a simple lightbox javascript in my wordpress theme.
An Arduino library to program the Penguin Bot by Elegoo in an easier way,
Thoughts about Venn's diagram and making software.
A nice solution found by chatGPT
Collection of notes and thoughts on Wordpress Gutenberg blocks development.
Really nice blog, nice snippet codes, thx 4 sharing :D