-
Se crea el repositorio git init
-
Se suben los archivos a la zona de preparacion git add Xarchivos
-
Se comenta el porque de esos archivos git commit -m ‘bla bla bla’
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'''Crear archivo requirements.txt a partir de PIP FREEZE | |
pip freeze > requirements.txt | |
Actualizar un paquete de PIP | |
pip install --upgrade Django==1.4.2 | |
Checar inconsistencias | |
pip check | |
Instalar paquetes de requirements.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
######################### Linux y OS X ######################### | |
====================== Python3 ========================= | |
# Viene por defecto en python3 | |
# Para borrar, solo eliminas la carpeta que crea | |
python3 -m venv MYVENV |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
DIRNAME = os.path.abspath(os.path.dirname(__file__)) | |
# BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) | |
DEBUG = True | |
DATABASES = { | |
'default': { | |
'ENGINE': 'django.db.backends.mysql', | |
'NAME': 'nameDB', | |
'USER': 'root', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Conocer Version de Symfony instalada | |
php app/console --version | |
---- Creando Proyecto Nuevo En Symfony---- | |
Crear una carpeta | |
mkdir CarpetaNueva | |
------------------ Composer ------------------ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ---------------- CONSOLA ---------------- | |
''' | |
pwd (cd en windows) | |
ls (dir en windows) | |
cd Desktop | |
mkdir practica | |
Pequeño reto: En el directorio de práctica, crea una nueva carpeta llamada test. | |
Use los comandos cd y mkdir. |
============ Este post se encuentra publicado en https://pybaq.co/blog/el-zen-de-python-explicado/ ===========
Si alguna vez abren la consola de python y escriben import this
verán que les aparecerán las líneas con el famoso Zen de Python:
- Beautiful is better than ugly.
- Explicit is better than implicit.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 1. Libro Tribes: We Need You to Lead Us | |
# https://www.amazon.com/Tribes-We-need-you-lead-ebook/dp/B004L622IW/ref=sr_1_2?keywords=tribes&qid=1549730795&s=gateway&sr=8-2 | |
# 2. Libro High Output Management | |
# https://www.amazon.com/High-Output-Management-Andrew-Grove/dp/0679762884 | |
# 3. Libro The Manager's Path: A Guide for Tech Leaders Navigating Growth and Change | |
# https://www.amazon.com/Managers-Path-Leaders-Navigating-Growth/dp/1491973897 | |
# 4. Managing the Unmanageable: Rules, Tools, and Insights for Managing Software People and Teams |
Hola, mi nombre es Javier Daza. Soy ingeniero electrónico de la Universidad del Norte y me he desempeñado como desarrollador web desde el 2014. Soy el fundador de Python Barranquilla y co-organizador de PyCon Colombia 2018, 2019 y diversos eventos de Django Girls en Colombia. Actualmente trabajo en una empresa que se llama WeKnow Inc donde desarrollamos en tecnologías como Drupal, NodeJS, ReactJS, Python y Flutter.
Hasta el momento he participado en los siguientes eventos:
- Understanding Risk Forum 2016 (Venezia, Italia)
- PyCon Colombia 2018 y 2019 (Bogotá y Medellín, Colombia)
OlderNewer