Skip to content

Instantly share code, notes, and snippets.

View Mau5trakt's full-sized avatar
🕳️
Reallity In Motion

Mau5trakt

🕳️
Reallity In Motion
View GitHub Profile
@Mau5trakt
Mau5trakt / normarv1.py
Created November 29, 2023 06:38
NORMAR BEAM GUI
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'jjj.ui'
#
# Created by: PyQt5 UI code generator 5.15.9
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing.
CREATE TABLE IF NOT EXISTS admin(
admin_id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
hash text
);
CREATE TABLE IF NOT EXISTS usuarios(
usuario_id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
username TEXT,
cedula TEXT,
def get_image(symbol):
try:
api_key = os.environ.get("API_KEY")
url = f"https://api.iex.cloud/v1/stock/{symbol.lower()}/logo?token={api_key}"
response = requests.get(url)
return response.json()["url"]
except:
return None
CREATE TABLE IF NOT EXISTS users(
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
username TEXT,
hash TEXT,
cash REAL DEFAULT 10000
);
CREATE TABLE IF NOT EXISTS transactions (
transaction_id INTEGER PRIMARY KEY AUTOINCREMENT,
symbol TEXT,
@Mau5trakt
Mau5trakt / Bigboss.py
Created April 2, 2021 04:16
Primer Big Boss Curso Python
import time
import random
a = random.randint(1, 99)
b = random.randint(1, 99)
d = a * b
print("Hola, bienvenido a mi juego. En este juego eres prisionero un prisionero \n"
"que acaba de escapar junto a su compañero de celda. Tras unos minutos de huida \n"
"atrapan a tu amigo pero tu has logrado safarte y tienes 2 vias de escape cual eliges... ")
alternativa= input("¿Decides escapar por la puerta entreabierta o la reja? [Introduce reja o puerta]: \n")
if 'reja' == alternativa.lower():
@Mau5trakt
Mau5trakt / colacao.py
Created March 30, 2021 23:45
Codigo para hacer un colacao en python
print("Me voy a la cocina")
print("Abro la nevera")
leche = input("¿Hay leche?(S/N): ")
hay_colacao = input("¿Hay Colacao?:(S/N) ")
if leche != 'S' or hay_colacao != "S":
print("Voy a comprar al súper... ")
if leche != 'S':
print("Compro leche")
@Mau5trakt
Mau5trakt / minmaxuser.py
Created March 30, 2021 19:24
Código corregido y esteticamente ordenado
''' Pide al usuario que introduzca 5 números e imprime
el numero menor y el número mayor '''
nombre = input("Introduzca su nombre: ")
print("hola, ", nombre ,"ingrese 5 números y luego se le imprimira el número mayor y el número menor")
a = int(input("Ingrese un número: "))
b = int(input("Ingrese un número: "))
c = int(input("Ingrese un número: "))
d = int(input("Ingrese un número: "))
e = int(input("Ingrese un número: "))