Skip to content

Instantly share code, notes, and snippets.

View twistedpixel's full-sized avatar

Scott twistedpixel

View GitHub Profile
@anubhavshrimal
anubhavshrimal / CountryCodes.json
Last active April 26, 2024 05:10 — forked from Goles/CountryCodes.json
Country and Dial or Phone codes in JSON format
[
{
"name": "Afghanistan",
"dial_code": "+93",
"code": "AF"
},
{
"name": "Aland Islands",
"dial_code": "+358",
"code": "AX"
@tdebatty
tdebatty / delete_older_than.php
Last active November 15, 2023 07:23
A simple PHP function to delete files older than a given age. Very handy to rotate backup or log files, for example...
<?php
/**
* A simple function that uses mtime to delete files older than a given age (in seconds)
* Very handy to rotate backup or log files, for example...
*
* $dir String whhere the files are
* $max_age Int in seconds
* return String[] the list of deleted files
*/