Skip to content

Instantly share code, notes, and snippets.

View vmesel's full-sized avatar
💭
I may be slow to respond.

Vinicius Mesel vmesel

💭
I may be slow to respond.
View GitHub Profile
@vmesel
vmesel / bootstrap.sh
Created August 28, 2017 17:52 — forked from cuducos/bootstrap.sh
Computer Bootstraps
#!/bin/bash
##############################################################################
# Install system packages #
##############################################################################
# if apt-get exists, probably it's a Linux
if which apt-get > /dev/null; then
# update & clean up
@vmesel
vmesel / ubuntu.sh
Created August 23, 2016 22:27 — forked from jarutis/ubuntu.sh
Theano and Keras setup on ubuntu with OpenCL on AMD card
## install Catalyst proprietary
sudo ntfsfix /dev/sda2
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.BAK
sudo apt-get remove --purge fglrx*
sudo apt-get install linux-headers-generic
sudo apt-get install fglrx xvba-va-driver libva-glx1 libva-egl1 vainfo
sudo amdconfig --initial
## install build essentials
sudo apt-get install cmake