Skip to content

Instantly share code, notes, and snippets.

View ivanvladimir's full-sized avatar

Ivan Vladimir Meza Ruiz ivanvladimir

View GitHub Profile
@ivanvladimir
ivanvladimir / artificial_art_gan-s.ipynb
Last active June 15, 2022 04:55
Artificial_Art_GAN's
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ivanvladimir
ivanvladimir / pushbullet IP
Last active March 12, 2020 20:43
Bash function to update my given IP via Pushbullet
#!/bin/bash
function pb_msg {
curl -vs -o /dev/null \
-u PUSHBULLET_TOKEN \
https://api.pushbullet.com/v2/pushes \
-d type=note \
-d title="$1" \
-d body="$2" 2> /dev/null
}
@ivanvladimir
ivanvladimir / comandos
Last active February 9, 2017 05:38
Comandos útiles
# tmux
Resize la vista (dots)
tmux a -d
# VIM
Actualizar los pluging de vim
git submodule foreach git pull origin master