Skip to content

Instantly share code, notes, and snippets.

@tacitochaves
tacitochaves / email-exists.pl
Created February 24, 2017 15:17
E-mail Exists
#!/usr/bin/env perl
use strict;
use warnings;
use LWP;
# emailhippo
https://portal.emailhippo.com/Account/Login
{
"message": "success"
}
{
"nome" : "Tácito Régis Fernandes Chaves",
"email" : "tacito.ma@hotmail.com",
"perfil" : "admin"
}
[{"y":"223","name":"Grupo de Operação Service Desk - SESMA","drilldown":"Grupo de Operação Service Desk - SESMA"},{"y":"56","name":"Grupo Especialista da Cibernix Tecnologia","drilldown":"Grupo Especialista da Cibernix Tecnologia"},{"y":"191","name":"Postmaster","drilldown":"Postmaster"}]
@tacitochaves
tacitochaves / cad_cli.html
Created April 12, 2015 03:52
Tela de Cadastro de Clientes - Pessoa Física
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tela de Cadastro de Cliente - Pessoa Física</title>
<style>
* {
padding: 0;
margin: 0;
}
@tacitochaves
tacitochaves / tabs.html
Last active August 29, 2015 14:18
Tabs an bootstrap
<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery.min.js"></script>
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet" type="text/css" />
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
<meta charset="utf-8">
<title>Tabs an Bootstrap</title>
</head>
<body>
@tacitochaves
tacitochaves / table.html
Created March 3, 2015 00:05
Exemplo de grid html . css
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
<style>
table {
margin-top: 50px;
font-family: Verdana, Arial;
font-size: 12px;
@tacitochaves
tacitochaves / grid.html
Created February 14, 2015 14:46
Criando uma grid na mão
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Exemplo de GRID na mão</title>
<style>
* {
margin: 0;
padding: 0;
}
@tacitochaves
tacitochaves / by-location.pl
Last active August 29, 2015 14:09
Organization hosts monitored in SESMA
#!/usr/bin/env perl
#
# Organization hosts monitored in SESMA
#
# Author: Tácito Chaves - 2014-11-19
# e-mail: chaves@tchaves.com.br
# skype: tacito.chaves
use strict;
#use warnings;
@tacitochaves
tacitochaves / Ping.pm
Last active August 29, 2015 14:06
Object of Packet ICMP
package Ping;
use strict;
use warnings;
sub new {
my $class = shift;
my $self = { _ip => shift, };
bless $self, $class;
return $self;