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
# Check it working on: https://www.kaggle.com/matiasmiche/image-stylization | |
import matplotlib.pyplot as plt | |
import tensorflow_hub as hub | |
import tensorflow as tf | |
import numpy as np | |
import cv2 | |
content_filename = 'content_image.jpg' | |
style_filename = 'style_image.jpg' |
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
#include <Wire.h> | |
#include "LiquidCrystal_I2C.h" | |
/* If address is not 0x27, then try 0x3F */ | |
LiquidCrystal_I2C lcd(0x27,20,4); | |
/* Custom characters */ | |
byte c0[8] = {0x00,0x00,0x00,0x00,0x01,0x03,0x07,0x0F}; | |
byte c1[8] = {0x04,0x0E,0x1F,0x1F,0x1F,0x1F,0x1F,0x1F}; | |
byte c2[8] = {0x00,0x00,0x00,0x00,0x10,0x18,0x1C,0x1E}; |
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
""" | |
List and plot the top countries with highest number of covid-19 deaths per million people. | |
""" | |
import csv | |
import requests | |
import matplotlib.pyplot as plt | |
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
/* | |
* Doble generador de onda cuadrada de frecuencia variable | |
*/ | |
// Pines | |
#define T1 2 // Salida 1 | |
#define T2 3 // Salida 2 | |
// Frecuencias por defecto (Hz) | |
#define DEF_1 3 // Salida 1 |
NewerOlder