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
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 |
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
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 |
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
{ | |
"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", |
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
"[...] É 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" |
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
// ... | |
export { default as store } from './store' |
This file has been truncated, but you can view the full file.
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
{ | |
"ac" : { | |
"cities" : { | |
"ac-acrelandia" : { | |
"coordinates" : { | |
"lat" : -10.0763918, | |
"lng" : -67.0586977 | |
}, | |
"key" : "ac-acrelandia", | |
"name" : "Acrelândia" |
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
#include <stdio.h> | |
#include <math.h> | |
float volumeEsfera (float raio) | |
{ | |
return (4 * M_PI * pow(raio, 3)) / 3; | |
} | |
int main () | |
{ |
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
#include <stdio.h> | |
#define N 10 | |
int impar[N], | |
par[N], | |
qtdI = 0, | |
qtdP = 0, | |
i, | |
v; |
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
#include <stdio.h> | |
#define BOX 25 | |
int box = 1; | |
float totalWeight = 0, | |
weight; | |
int main () | |
{ | |
int i = 0; |
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
#include <stdio.h> | |
float n; | |
int main () | |
{ | |
printf("Digite um numero: "); | |
scanf("%f", &n); | |
if (n > 20) { |