Skip to content

Instantly share code, notes, and snippets.

View tonydub's full-sized avatar

Tony Dubreil tonydub

  • Wrike
  • France
  • 17:03 (UTC -12:00)
View GitHub Profile
<?php
interface ClockInterface
{
public function currentTime(): DateTimeImmutable;
}
#!/usr/bin/env bash
swapsize=2048
grep -q "swapfile" /etc/fstab
if [ $? -ne 0 ]; then
echo 'swapfile not found. Adding swapfile.'
fallocate -l ${swapsize}M /swapfile
chmod 600 /swapfile