Skip to content

Instantly share code, notes, and snippets.

View itepifanio's full-sized avatar
🏠
Working from home

Ítalo Epifânio itepifanio

🏠
Working from home
View GitHub Profile
@itepifanio
itepifanio / gist:7f35e7222d78ba80addf19d68a99f886
Created August 30, 2021 23:39
Recuperar todos os emails dos participantes de uma turma do sigaa
[...document.querySelectorAll('[valign="top"]')].slice(3).map(item => item.children[9].textContent)
@itepifanio
itepifanio / bash-installer.sh
Last active May 30, 2020 15:36
Env install
#!/bin/bash
TIMEDOCTOR=~/./timedoctor-desktop_latest_linux-x86_64.AppImage
TOOLBOX=~/./jetbrains-toolbox-1.16.6319.tar.gz
PGSQLPWD=postgres
apt update
apt autoremove
apt install vim
snap install spotify
snap install slack
#include <iostream>
struct node {
int dado;
struct node *prox;
};
typedef struct _lista {
node *inicio;
} lista;
@itepifanio
itepifanio / txt
Created July 20, 2017 22:49
Adding qr code to page python and django
In yout app create a folder name "templatetags", into him one file __init__.py
and web_extras.py (This second is just a example name).
Into web_extras.py insert:
from django import template
register = template.Library()
@register.filter()