Skip to content

Instantly share code, notes, and snippets.

@vreemt
vreemt / check.php
Created June 25, 2025 11:18 — forked from Sandra-headscape/check.php
php datetime
<?php
$datetime = [
['May 11, 2023', 'Europe/London'],
['June 1, 2023', 'Europe/London'],
];
@vreemt
vreemt / download.sh
Created June 25, 2025 11:10 — forked from Sandra-headscape/download.sh
Download list of URLs from a txt file
#!/bin/bash
INPUT=$(find . -name "*.txt")
COUNT=1;
while IFS= read -r line
do
curl -O "$line"
let COUNT++
done < "$INPUT"
echo "count $COUNT"