Skip to content

Instantly share code, notes, and snippets.

View Santiago-j-s's full-sized avatar

Santiago Santana Santiago-j-s

View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import requests
from requests.exceptions import ConnectionError
with open('gi.csv', 'r') as f:
lineas = f.readlines()
urls = enumerate([linea.split(',')[0] for linea in lineas][1::])
@Santiago-j-s
Santiago-j-s / alacritty.yml
Created July 16, 2019 16:51
Alacritty colors
# Colors (Tomorrow Night Bright)
colors:
# Default colors
primary:
background: '0x282c34'
foreground: '0xabb2bf'
# Bright and dim foreground colors
#
# The dimmed foreground color is calculated automatically if it is not present.
@Santiago-j-s
Santiago-j-s / dia1.md
Last active June 8, 2020 00:06
Clasificadores probabilisticos en aprendizaje automático

Día 1

Papers:

  • ImageNet Classification with Deep Convolutional Neural Networks
  • A Neural Probabilistic Language Model
  • Human-level control through deep reinforcement learning
  • Mastering the game of Go with deep neural networks ad tree search
  • A general reinforcement learning algorithm that masters chess, shogi, Go through self-play
  • Human-level performance in 3d multiplayer games with population-based reinforcement learning
@Santiago-j-s
Santiago-j-s / index.md
Last active February 9, 2020 00:13
p5js sketches
  • [Lissajous Curve]
  • [Movers]
  • [Perlin acceleration]
  • [Bouncing ball 3D]
  • [Bouncing ball]
  • [2D noise]
  • [Perlin noise walker]
  • [Exp dist]
  • [Montecarlo walker]
  • [Paint splatter]
@Santiago-j-s
Santiago-j-s / resp_to_speech.ipynb
Created October 3, 2019 02:23
Encoding model resp to speech
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Santiago-j-s
Santiago-j-s / Objects.ipynb
Last active October 7, 2019 01:25
Objetos en python
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Santiago-j-s
Santiago-j-s / machine.js
Last active December 19, 2019 19:34
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@Santiago-j-s
Santiago-j-s / profiles.json
Last active January 19, 2020 04:30
terminal config
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"profiles": [
{
// Make changes here to the powershell.exe profile
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
% Ejercicio 1a
% Comprobar si una lista de elementos constituye un conjunto válido
% Un conjunto es una lista de elementos que no contiene elementos repetidos
% pertenece(Lista, Elemento): true si Elemento esta en Lista
pertenece([], _) :- fail.
pertenece([E|_], E) :- !.
pertenece([_|L], E) :- pertenece(L, E).
% esConjunto(Lista): true si Lista es un conjunto