Programming
How to post text and images to Bluesky using PHP
Bluesky has really been taking off this week, and I’ve been posting more and more on there both for myself read more
November 14th, 2024 Posted in ProgrammingGeneral PHP code snippets
A collection of bits and pieces in PHP Where am I? Read all files in directory into array Set timezone read more
March 17th, 2022 Posted in ProgrammingDate and time utilities in PHP
To check to see if we have gone past a specific date: if (new DateTime() > new DateTime(“2022-03-09 09:11:00”)) { read more
March 9th, 2022 Posted in ProgrammingHow to get rid of “episodes and shows” from Spotify:
It’s really annoying to see loads of podcasts and shows you’ve never listened to take priority over music you want read more
March 6th, 2022 Posted in ProgrammingExample of character counter using Bootstrap and jQuery
It helps to get the scripts in the right order! <html> <head> <link rel=”stylesheet” href=”https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css” integrity=”sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T” crossorigin=”anonymous”> </head> <body> <div read more
February 19th, 2022 Posted in ProgrammingHow to create a simple Twitter bot
This article originally appeared on https://robmanuelfuckyeah.substack.com/p/how-to-create-a-simple-twitter-bot People often ask me how to get started on writing bots and generally I read more
February 19th, 2022 Posted in ProgrammingFinding the first and last day of a month in PHP
Some code to find the first and last day of this current month, and then pushing that on month by read more
February 1st, 2022 Posted in ProgrammingJavascript countdown timer
Here’s a nice compact version to display a countdown to a certain date and time on a webpage. <span id=”countdown” read more
December 7th, 2021 Posted in ProgrammingCreating a WordPress theme from scratch
1. Basic information Before getting stuck into the build process, it’s important to know how WordPress themes work. If you’ve read more
October 25th, 2021 Posted in Programming