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
@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 / 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 / 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 / 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 / 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.
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::])
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
# coding: utf-8
import requests
import datetime
API_KEY = '' # Get a free API KEY on https://api.nasa.gov/
URL = 'https://api.nasa.gov/planetary/apod'
START = datetime.date(2019, 1, 1)
END = datetime.date.today()
IMGS_FOLDER = 'imgs'
ERROR_FILE = 'apod_errors.txt'
# zsh
set-option -g default-shell /bin/zsh
# color
set -g default-terminal "tmux-256color"
# counting from 1
set -g base-index 1
# remap prefix
@Santiago-j-s
Santiago-j-s / init.vim
Created October 18, 2018 22:18
config de neovim
call plug#begin('~/.vim/plugged')
" git
Plug 'tpope/vim-fugitive'
Plug 'mhinz/vim-signify'
" status line
Plug 'itchyny/lightline.vim'
" start screen