This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
hash pv | |
if [ $? -ne 0 ]; then | |
echo "ERROR: Command pv is not available but required, please run: sudo apt-get install pv" | |
exit 1 | |
fi | |
WORKDIR=$(pwd) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Created by PhpStorm. | |
* User: Rudde | |
* Date: 01.04.2016 | |
* Time: 00.25 | |
*/ | |
function firstDayofFirstWeekinCurrentMonth($date = NULL) { | |
$date = is_null ($date) ? new DateTime('first day of this month') : $date->modify('first day of this month'); |
NewerOlder