Skip to content

Instantly share code, notes, and snippets.

View guimafx's full-sized avatar

Guilherme Borges Viana guimafx

View GitHub Profile
@icaromh
icaromh / gvdata.js
Created August 5, 2015 23:33
Script em nodejs para navegar até o portal do aluno do SENACRS e buscar as informações financeiras :)
var timeInit = new Date();
var Nightmare = require('nightmare');
// Dados de acesso
var Aluno = {
usuario : 'seu_usuario',
senha : 'sua_senha',
unidade : '1' // número da unidade, ex.: 63
};
@kharysharpe
kharysharpe / copydb.php
Last active March 20, 2023 08:48
Copy a table from one MYSQL database server to another database another
<?php
/**
*
* Code was adapted from SitePoint
* http://www.sitepoint.com/forums/showthread.php?697857-Copy-mysql-table-from-one-server-to-another-through-php&s=b5b25e09ff44749d2e49e0d7c1640fd8&p=4680578&viewfull=1#post4680578
*
*/
// Prevent script from timing out
set_time_limit(0);