This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Instructions for 4.13 and cuda 9.0 RC | |
# If upgrading from 4.11 and cuda 8.0 | |
$ sudo apt-get purge --auto-remove libcud* | |
$ sudo apt-get purge --auto-remove cuda* | |
$ sudo apt-get purge --auto-remove nvidia* | |
# also remove the container directory direcotory at /usr/local/cuda-8.0/ | |
# Install Intel Graphics Patch Firmwares (This should reboot your system): | |
bash -c "$(curl -fsSL http://bit.ly/IGFWL-install)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/python | |
# A python flask api for running the resume parser provided | |
# @ https://github.com/antonydeepak/ResumeParser. This will run | |
# only inside the Docker. You can use docker pull <> | |
# | |
# Author: Arpit Goyal (Github: https://github.com/argoyal) | |
import os | |
import json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set clipboard=unnamed | |
if has('win32') || has('win64') | |
let g:plugged_home = '~/AppData/Local/nvim/plugged' | |
else | |
let g:plugged_home = '~/.vim/plugged' | |
endif | |
" Plugins List | |
call plug#begin(g:plugged_home) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from boxsdk import DevelopmentClient | |
import os | |
# Replace with your folder id to download | |
FOLDER_ID = "" | |
# Replace with the folder name in which to download | |
FOLDER_NAME = "" | |
client = DevelopmentClient() |