Skip to content

Instantly share code, notes, and snippets.

View eder-projetos-dev's full-sized avatar

Éder Luís Britto Garcia eder-projetos-dev

View GitHub Profile
<!-- HTML -->
<details open id="details_vermelho" class="collapse1">
<summary class="title">Vermelho</summary>
<div style="background-color: #e14747"><br></div>
<div>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit.</p>
</div>
</details>
@eder-projetos-dev
eder-projetos-dev / gist:9684a93879cfc819b13a5f8c704436d2
Created June 1, 2023 13:40
CSS - Mudar a cor do radio button
<style>
input[type='radio'] {
accent-color: #232323;
}
</style>
@eder-projetos-dev
eder-projetos-dev / simple_sign_in_and_sign_out.py
Created May 17, 2023 19:28 — forked from daGrevis/simple_sign_in_and_sign_out.py
Python - Simple sign in and sign out in Python's Flask
from flask import Flask, session, escape, request, redirect, url_for
from os import urandom
app = Flask(__name__)
app.debug = True
app.secret_key = urandom(24)
@app.route('/')
@eder-projetos-dev
eder-projetos-dev / teste.html
Created May 14, 2023 15:04
JavaScript - Copiar para o Clipboard
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="data:," />
<title>Copy to Clipboard</title>
</head>
<body>
@eder-projetos-dev
eder-projetos-dev / README.md
Last active March 4, 2023 01:07
Python - Barcode generator

Barcode Generator in Python

Install python-barcode

pip install python-barcode

Test

#!/usr/bin/env python
@eder-projetos-dev
eder-projetos-dev / cotacao_btc_dolar_gist.py
Created March 3, 2023 14:17
Python - Cotação BTC em dólar com a API do CoinMarketCap
from requests import Request, Session
import json
import time
import webbrowser
import pprint
def getInfo (): # Function to get the info
url = 'https://pro-api.coinmarketcap.com/v1/cryptocurrency/quotes/latest' # Coinmarketcap API url
@eder-projetos-dev
eder-projetos-dev / README.md
Last active March 3, 2023 00:43
Python - Gerador de QR Code

Pure Python QR Code Generator

pip install qrcode
pip install "qrcode[pil]"
@eder-projetos-dev
eder-projetos-dev / coinmarketcap-python.md
Last active March 4, 2023 20:47 — forked from SrNightmare09/coinmarketcap-api.md
Python - Using Coinmarketcap API

Using Coinmarketcap API with Python

This is a Gist for anyone looking to learn everything about retrieving cryptocurrency data from Coinmarketcap.com. A handful of information is provided here - Getting started, how to get the API key, what problems I faced, the API limitations and many others...

@eder-projetos-dev
eder-projetos-dev / gist:5f4ea8de8afbce261d45799cfbc32cb5
Created February 24, 2023 13:03
Debian - Criar usuário, trocar senha, adicionar e remover usuário de um grupo
# Criar um novo usuário
sudo useradd -d /home/desenvolvimento -c "Desenvolvimento" desenvolvimento
# Adicionar o usuário desenvolvimento no grupo ftp
sudo usermod -aG ftp desenvolvimento
# Remover usuário desenvolvimento do grupo ftp
sudo gpasswd -d desenvolvimento ftp
# Visualizar grupos em que o usuário está
@eder-projetos-dev
eder-projetos-dev / gist:b2d12cdb563659f74aaaf77882ea9108
Last active March 5, 2023 18:31
Python - Instalando o Flask em ambiente virtual (venv)
# No Linux utilize:
mkdir myproject
cd myproject
python3 -m venv venv
. venv/bin/activate
deactivate venv
pip3 install Flask
# No Windows utilize:
# md myproject