Skip to content

Instantly share code, notes, and snippets.

@macsplit
macsplit / forecast.php
Last active March 2, 2025 14:53
Get Weather from 7Timer!
<?php
date_default_timezone_set('UTC');
$lon = "-0.19759370325694858";
$lat = "51.35956063540873";
$url = "https://www.7timer.info/bin/civil.php?lon=$lon&lat=$lat&unit=metric&ac=0&output=json";
$weathers = [
@macsplit
macsplit / tabulate
Last active March 2, 2025 15:19
Format MySQL output as Markdown
#!/usr/bin/php
<?php
// Usage: /usr/bin/mysql DBNAME -u USERNAME -pPASSWORD -t -e "SELECT * FROM mytable" | tabulate
define ('MAX_ROW_WIDTH', 140);
define ('MAX_DATA_WIDTH', 100);
function convert ($table) {
@macsplit
macsplit / pretty.php
Created October 18, 2022 11:22
Pretty Print PHP Object as JSON with Horizontal Alignment of Colons
<?php
/*
JSON Encode Pretty Print with horizontal alignment of colons
json_encode( $obj, JSON_PRETTY_PRINT | JSON_NUMERIC_CHECK)
{
"title": "languages",