Skip to content

Instantly share code, notes, and snippets.

View D-Barradas's full-sized avatar

Didier Barradas Bautista D-Barradas

View GitHub Profile
@AnirudhDagar
AnirudhDagar / pyg_setup.sh
Created April 17, 2020 08:38
PyTorch Geometric Setup Script for Mac OS X
# Works on OS X, with conda installed.
# Create conda environment for PyTorch Geometric
echo "Creating pyg environment"
conda create -n pyg python=3.6
echo "Activate pyg Env"
source activate pyg
# PyTorch Conda Installation
@sarah-j-smith
sarah-j-smith / simple-vimrc
Last active November 23, 2025 11:27
Simple .vimrc for Mac OSX
" Use spaces instead of tabs
set expandtab
" Be smart when using tabkey
set smarttab
" 1 tab == 4 spaces
set shiftwidth=4
set tabstop=4