Skip to content

Instantly share code, notes, and snippets.

View Ronaldomata34's full-sized avatar
:octocat:
Working from home

Ronaldo Mata Ronaldomata34

:octocat:
Working from home
View GitHub Profile
@emmettna
emmettna / Docker-compose Nginx + Django + Gunicorn
Last active June 27, 2021 20:50
Docker-compose Nginx + Django + Gunicorn
1. Make folder tree like these
mi_project
├── src
│ ├── midjangoapp
│ ├── manage.py
├── config
│ ├── requirements.pip
│ ├── nginx
│ ├── midjangoapp.conf
├── Dockerfile
@xombra
xombra / bancos
Last active May 30, 2023 18:16
Codigo y Bancos correspondientes de Venezuela
Banco:
<select name="banco">
<option value=""></option>
<option value="0156">100%BANCO</option>
<option value="0196">ABN AMRO BANK</option>
<option value="0172">BANCAMIGA BANCO MICROFINANCIERO, C.A.</option>
<option value="0171">BANCO ACTIVO BANCO COMERCIAL, C.A.</option>
<option value="0166">BANCO AGRICOLA</option>
<option value="0175">BANCO BICENTENARIO</option>
<option value="0128">BANCO CARONI, C.A. BANCO UNIVERSAL</option>
@7mp
7mp / django_phantom.py
Last active January 10, 2018 23:37
Selenium driver extensions for PhantomJS and Django (and its admin)
# -*- coding: utf-8 -*-
"""
Phantom JS test drivers for Django
Tips:
* to check a value of a (global) JS variable, one can use:
driver.execute_script('return <variable_name>')
"""