Skip to content

Instantly share code, notes, and snippets.

View jaonoctus's full-sized avatar

João Dias jaonoctus

View GitHub Profile
TAG POS=1 TYPE=TD ATTR=TXT:620,10
TAG POS=1 TYPE=INPUT:TEXT ATTR=ID:buy_price CONTENT=620
TAG POS=1 TYPE=SPAN ATTR=ID:fb_global_btc_balance
TAG POS=1 TYPE=BUTTON ATTR=ID:btn_buy1
TAG POS=1 TYPE=BUTTON ATTR=ID:btn_sim
TAG POS=1 TYPE=BUTTON ATTR=ID:btn_dialog_ok
@jaonoctus
jaonoctus / delete_messages.iim
Created January 10, 2018 17:52
Delete campuse.ro messages
VERSION BUILD=1001 RECORDER=CR
URL GOTO=https://campuse.ro/messaging/
TAG XPATH="id('participants-list')/div[2]/div[2]/strong/a"
TAG POS=1 TYPE=SPAN ATTR=TXT:Delete<SP>Thread
@jaonoctus
jaonoctus / snapshot_ranking_cpbr11.json
Last active November 21, 2017 18:19
snapshot ranking 2017-11-21 16:18:36
{
"stats": {
"activities": 165,
"votes": 390,
"updated_at": "2017-11-21 16:18:36"
},
"activities": {
"0": {
"link": "/events/vire-um-curador-CPBR11/talk/iubi-gamificacao-no-tratamento-para-criancas-com-cancer/",
"title": "Iubi - Gamificação no tratamento para crianças com câncer",
@jaonoctus
jaonoctus / gafes_rocelo_lopes.txt
Created November 10, 2017 16:55
Rocelo Lopes, CoinBR. PL 2303/15
"[...] É o princípio da inteligência artificial, fazer com que a máquina pague pelo serviço"
https://youtu.be/VD7vhr6UEmI?t=47m53s
"[...] tem que haver um controle, é uma tecnologia extremamente poderosa [...] aquele episódio de 51 milhões se ele tivesse em bitcoins, a polícia federal jamais saberia onde ia tá, então tem que realmente ser regulamentado [...]"
https://youtu.be/VD7vhr6UEmI?t=48m8s
"[...] talvez a comunidade bitcoin vai tá me xingando [...] porque eu sou a favor de uma regulamentação"
https://youtu.be/VD7vhr6UEmI?t=51m41s
"[...] hoje não se faz lavagem de dinheiro com bitcoin porque o preço brasileiro é mais caro que o do exterior"
@jaonoctus
jaonoctus / app\index.js
Last active October 28, 2017 15:03
VUEX
// ...
export { default as store } from './store'
@jaonoctus
jaonoctus / states_cities_coordinates_brazil.json
Created August 18, 2017 03:48
Brazil's States and Cities with Coordinates
This file has been truncated, but you can view the full file.
{
"ac" : {
"cities" : {
"ac-acrelandia" : {
"coordinates" : {
"lat" : -10.0763918,
"lng" : -67.0586977
},
"key" : "ac-acrelandia",
"name" : "Acrelândia"
#include <stdio.h>
#include <math.h>
float volumeEsfera (float raio)
{
return (4 * M_PI * pow(raio, 3)) / 3;
}
int main ()
{
#include <stdio.h>
#define N 10
int impar[N],
par[N],
qtdI = 0,
qtdP = 0,
i,
v;
#include <stdio.h>
#define BOX 25
int box = 1;
float totalWeight = 0,
weight;
int main ()
{
int i = 0;
#include <stdio.h>
float n;
int main ()
{
printf("Digite um numero: ");
scanf("%f", &n);
if (n > 20) {