Skip to content

Instantly share code, notes, and snippets.

View adagio's full-sized avatar
👨‍💻
practicing Django / learning about blockchain

Edu F adagio

👨‍💻
practicing Django / learning about blockchain
  • HartasCuerdas
  • Lima, Peru
View GitHub Profile
@adagio
adagio / requirements.txt
Created January 28, 2023 15:01
requirements for pizero_bikecomputer
PyQt6
numpy
oyaml
pillow
polyline
aiohttp
aiofiles
qasync
garminconnect
git+https://github.com/hishizuka/pyqtgraph.git
@adagio
adagio / desacoplado.html
Last active December 16, 2020 15:44
Implementando desacoplado de niubiz
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Detalle de pago</title>
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://pocpaymentserve.s3.amazonaws.com/payform.min.css" />
</head>
@adagio
adagio / inicio.html
Last active December 16, 2020 12:08
inicio.html con formulario para carga de niubiz
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Detalle de pago</title>
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
</head>
<body>
@adagio
adagio / docker-compose.yml
Created March 8, 2020 00:18
Redis on docker-compose
version: '3.1'
services:
redis:
image: redis
restart: always
ports:
- '6379:6379'
@adagio
adagio / docker-compose.yml
Created March 8, 2020 00:11
Postgres on docker-compose
# Use postgres/example user/password credentials
version: '3.1'
services:
db:
image: postgres:10
restart: always
environment:
- POSTGRES_PASSWORD=example
@adagio
adagio / stack.yml
Last active July 7, 2019 06:52
Postgres Docker stack
# Use postgres/example user/password credentials
# docker-compose -f stack.yml
version: '3.1'
services:
db:
image: postgres
restart: always
@adagio
adagio / docker-compose.yml
Last active July 8, 2019 05:31
MariaDB on docker-compose
# Use root/example as user/password credentials
version: '3.1'
services:
db:
image: mariadb
restart: always
ports:
- 3306:3306
@adagio
adagio / docker-compose.yml
Created June 27, 2019 17:08
Postgres on docker-compose
# Use postgres/example user/password credentials
version: '3.1'
services:
db:
image: postgres:10
restart: always
environment:
- POSTGRES_PASSWORD=example
@adagio
adagio / first_ocurrence.ipynb
Created December 19, 2018 03:49
First Ocurrence
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@adagio
adagio / sort_tuples.ipynb
Last active December 19, 2018 03:28
Sort Tuples
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.