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
$(window).scroll(function(){ | |
if ($(window).scrollTop() == $(document).height() - $(window).height()){ | |
// calling the function to get the ajax data | |
loadMore(); | |
} | |
}); | |
function loadMore() { | |
$.ajax({ | |
url: base_url + "/infscroll/get_inf_scroll_ajax", |
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
# Video: https://youtu.be/b-KFj8GfvzE | |
# Full Backup | |
mariadb-backup --backup \ | |
--user=$DB_ROOT_USER \ | |
--password=$DB_ROOT_PASSWORD \ | |
--target-dir=$BACKUP_BASE_DIR | |
# Incremental Backup | |
mariadb-backup --backup \ | |
--user=$DB_ROOT_USER \ |