Skip to content

Instantly share code, notes, and snippets.

View matheuslao's full-sized avatar

Matheus Andrade matheuslao

View GitHub Profile
@matheuslao
matheuslao / mysql_backup_ftp.sh
Created May 19, 2016 01:34
Script para Backup de banco de dados mysql e envio via FTP para servidor externo
#!/bin/bash
MYSQL_DB="database"
MYSQL_USER="user"
MYSQL_PASSWORD="senha"
MYSQLDUMP_COMMAND="$(which mysqldump)"
BACKUP_FOLDER="/caminho/para/pasta/do/backup"
GZIP_COMMAND="$(which gzip)"
@matheuslao
matheuslao / gist:88444ffed8713263d437
Created June 29, 2015 23:34
DataTable Custom with MomentJS and DataTools
var foo = function() {
return {
init: function() {
// Initialize Bootstrap Datatables Integration
App.datatables();
//Moment.js + datetime-moment.js to date's sorting in datatable
$.fn.dataTable.moment( 'DD/MM/YYYY' );