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 | |
namespace App\Lib; | |
use Doctrine\ORM\EntityManagerInterface; | |
use Exception; | |
use Google_Client; | |
use Google_Exception; | |
use Google_Service_Sheets; |
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
object(stdClass)#183 (29) { | |
["type"]=> | |
string(4) "text" | |
["blog_name"]=> | |
string(11) "nicecreamfm" | |
["blog"]=> | |
object(stdClass)#184 (6) { | |
["name"]=> | |
string(11) "nicecreamfm" | |
["title"]=> |
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 | |
if [ $# -eq 0 ] | |
then | |
echo "Usage ./test-hdd.sh /mounted-path-of-hdd [size-in-Mb]" | |
exit; | |
fi | |
actualDisk=$(df $1 | grep dev | cut --d ' ' -f1) | |
#echo Running hdparm -Tt $actualDisk |
OlderNewer