Skip to content

Instantly share code, notes, and snippets.

View kodewilliams's full-sized avatar
🎯
Focusing

Kodé Williams kodewilliams

🎯
Focusing
View GitHub Profile
@BlakeStevenson
BlakeStevenson / texas-dps.js
Last active March 13, 2025 14:35
Create an appointment at the Texas DPS at the closest location, soonest time, programatically.
const axios = require('axios');
async function getLocations() {
const locationsData = await axios.post("https://publicapi.txdpsscheduler.com/api/AvailableLocation", {
"TypeId": 71,
"ZipCode": "10001",
"CityName": "",
"PreferredDay": 0
});
return locationsData.data;
}
@bmaupin
bmaupin / free-backend-hosting.md
Last active April 25, 2025 15:13
Free backend hosting
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active April 26, 2025 10:50
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname