Skip to content

Instantly share code, notes, and snippets.

View wlensinas's full-sized avatar
👀

Walter Lensinas wlensinas

👀
View GitHub Profile
@wlensinas
wlensinas / mini_crypto_scraper.py
Last active February 8, 2022 03:10
This is a simple scraper for get a list of crypto currency prices
import requests
import concurrent.futures
from bs4 import BeautifulSoup
from pprint import pprint
from re import sub
sites = [
('Bitcoin', 'https://coinmarketcap.com/currencies/bitcoin/'),
('Ethereum', 'https://coinmarketcap.com/currencies/ethereum/'),
('BNB', 'https://coinmarketcap.com/currencies/bnb/'),
@wlensinas
wlensinas / randon.number.c
Last active May 22, 2021 16:48
Get Random number in C between 0 and 100
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
time_t tiempo = time(NULL);
int r = 0;
int opcion = 0;
@wlensinas
wlensinas / docker-raspberry.md
Created May 9, 2021 02:19 — forked from pablokbs/docker-raspberry.md
Docker en raspberry
@wlensinas
wlensinas / index.dart
Created December 29, 2018 06:21
Platzi - Flutter - Primer reto
void main() {
double promedio = 0;
double acumulador = 0;
int mayor = 0;
int menor = 200;
var ages = [33, 15, 27, 40, 22];
var indice = ages.length;
int edad = 0;
for (int i = 0; i < indice; i++) {