Skip to content

Instantly share code, notes, and snippets.

View viniciuscsouza's full-sized avatar
💭
I may be slow to respond.

Vinicius Costa viniciuscsouza

💭
I may be slow to respond.
View GitHub Profile
@viniciuscsouza
viniciuscsouza / Bot.py
Created February 9, 2018 23:01
Telegram Bot - Python
# Bibliotecas padrão
import sys
import time
# Telegram bot
import telepot
from telepot.loop import MessageLoop
# Chatterbot
from chatterbot import ChatBot
from chatterbot.trainers import ChatterBotCorpusTrainer
from settings import *
@viniciuscsouza
viniciuscsouza / exibe-opcoes.js
Created October 21, 2020 23:41
Bookmarklet que exibe opções disponíveis nas caixas de seleção.
javascript:(function() {
var frames = document.querySelectorAll('iframe');
var listaDeParcelas;
var valores;
for(let frm of frames){
if(frm.contentWindow.document.body.querySelectorAll('select').length > 0){
valores = [];
valores.push("Opções disponíveis: \n");