Skip to content

Instantly share code, notes, and snippets.

View SebastianCB-dev's full-sized avatar
💙
Chelsea F.C.

SebastianCB SebastianCB-dev

💙
Chelsea F.C.
View GitHub Profile
@SebastianCB-dev
SebastianCB-dev / Connection between Python and PostgreSQL
Created July 14, 2022 19:31
This is a script to connect PostgreSQL with Python3
import psycopg2 as pg
conn = pg.connect(user="postgres",
password="root",
host="localhost",
port="5432",
database="python_postgres")
try:
with conn as cn:
@SebastianCB-dev
SebastianCB-dev / iris_data.csv
Last active June 9, 2022 13:42
Iris flower Dataset
sepal_length sepal_width petal_length petal_width class
5.1 3.5 1.4 0.2 0
4.9 3.0 1.4 0.2 0
4.7 3.2 1.3 0.2 0
4.6 3.1 1.5 0.2 0
5.0 3.6 1.4 0.2 0
5.4 3.9 1.7 0.4 0
4.6 3.4 1.4 0.3 0
5.0 3.4 1.5 0.2 0
4.4 2.9 1.4 0.2 0
@SebastianCB-dev
SebastianCB-dev / instalacionesCapacitacion2022.md
Last active March 21, 2022 16:02
Instalaciones recomendadas para la capacitación de desarrollo web 2022

Instalaciones recomendadas Desarrollo Web 2022

Todas las instalaciones acá serán gratuitas.

Visual Studio Code

  • Visual Studio Code es nuestro editor de codigo que nos ayudará a escribir codigo de manera mas rapida y sencilla.

Click para descargar VSCode

Git

# How to use Angular with SASS
1. Create Angular project with SCSS
2. Execute "npm i -g sass"
3. Go to angular.json and in the configurations-development add the next line:
"inlineStyleLanguage": "scss"