Skip to content

Instantly share code, notes, and snippets.

View abrahamnm's full-sized avatar
🤓
Always learning

Abraham Nuñez abrahamnm

🤓
Always learning
View GitHub Profile
@abrahamnm
abrahamnm / build.json
Created December 8, 2018 21:35
Apache Cordova build configuration for Xcode 10
{
"ios": {
"debug": {
"buildFlag": ["-UseModernBuildSystem=0"]
},
"release": {
"buildFlag": ["-UseModernBuildSystem=0"]
}
}
}
@abrahamnm
abrahamnm / delete_files_cron_job.md
Last active November 17, 2015 04:18
Cron Job for Deleting files with a certain extension and older than 'X' days in a directory and subdirectories.

#Cron Job for deleting old files (PHP)

This code deletes ".gz" files older than 30 days in a "directory" and its subdirectories. It's intended to be used for automatic delete of old cPanel backups.

<?php

$count=0;
rrmdir(public_html);  //target directory
echo $count . ' file(s) deleted!';