Skip to content

Instantly share code, notes, and snippets.

View harpiechoise's full-sized avatar
🎯
Focusing

Jaime Crispi harpiechoise

🎯
Focusing
  • Santiago, Chile
View GitHub Profile
@harpiechoise
harpiechoise / Texto Ejercios.ipynb
Last active September 28, 2023 22:55
Ejercicios Basicos de Python Resueltos
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@harpiechoise
harpiechoise / entrenamiento.hs
Created June 3, 2017 01:43
Si estas empezando en haskell esto te sera util
--doble de x * doble de y
dobleUs x y = x * 2 + y * 2
--con dos Funciones
doble x = x + x
dobleUs2 x y = doble x + doble y
--triple ?
triple x = doble x + x
promedio :: [Double] -> Double
promedio [] = 0
promedio bs= sum bs / fromIntegral(length bs)
factorial:: Integer -> Integer
factorial 0 = 1
factorial n = product[1..n]
--comb
comb n k = (factorial(n)) `div` ((factorial(k)) * factorial(n-k))
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#Antes de usar instalen clint abran el CMD y escriban pip intall clint
from random import randint as r
import time
from clint.textui import colored
def randomizer():
rand = r(1,255)
return chr(rand)
def espacer():
rand = r(1,2)
import bs4
from urllib.request import urlopen as uReq
from bs4 import BeautifulSoup as soup
import csv
myurl = "https://www.lider.cl/supermercado/category/Despensa/Pastas/Fideos-Largos/_/N-673e4a"
uClient = uReq(myurl)
page_html = uClient.read()
nombres = []
marcas = []
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.