This file contains 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
mysqldump DB -hHOST > OUTFILE.sql | |
# copy to local | |
rsync -avPz --progress USER@HOST:/PATH/TO/OUTFILE.sql . | |
# import to local db | |
mysql -uroot -p -DDATABASE < OUTFILE.sql |
This file contains 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
document.body.addEventListener('DOMSubtreeModified', function(e) { console.log(e.target); }); |
This file contains 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
set xdata time | |
set timefmt "%Y%m%d" | |
set offset graph 0.1, graph 0.1, graph 0.1, graph 0.1 | |
plot "temp.data" using 2:1 with lines |
NewerOlder