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
| 'use strict'; | |
| // @deprecade | |
| const http = require('http'); | |
| const cpf = process.argv[2]; | |
| const parse = JSON.parse; | |
| const log = console.log; | |
| const url = `http://dabsistemas.saude.gov.br/sistemas/sadab/js/buscar_cpf_dbpessoa.json.php?cpf=${cpf}`; | |
| http.get(url, res => { |
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
| /* | |
| TITLE: CODE GRABBER FOR HT6P20B ENCODER | |
| CREATED BY: AFONSO CELSO TURCATO | |
| DATE: 14/JAN/2014 | |
| E-MAIL: acturcato (at) gmail.com | |
| LICENSE: GPL | |
| REV.: 00 | |
| DESCRIÇÃO: | |
| http://acturcato.wordpress.com/2014/01/14/clonagem-de-controle-remoto-rf-learning-code-ht6p20b-com-arduino/ |
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
| # coding=utf-8 | |
| """ | |
| NAO FUNCIONA MAIS. O sistema de CAPTCHA foi trocado. | |
| **Implementa um Webcrawler para extracao de dados da pesquisa de media de precos realizada periodicamente pela ANP** | |
| Desenvolvido por Fabio C. Barrionuevo da Luz. - 2013 | |
| Simple crawler to ANP site | |
| Copyright (C) 2013 Fabio C. Barrionuevo da Luz. | |
| This program is free software; you can redistribute it and/or | |
| modify it under the terms of the GNU General Public License |
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 | |
| $URL = 'http://example.com/login.php'; | |
| $user = 'USER'; | |
| $pass = 'PASS'; | |
| $cookie_path = dirname(__FILE__).'/cookie.txt'; | |
| /** | |
| * Hace login en la web enviando un POST con el usuario y contraseña. |