This is my favorite Debian: http://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/weekly-builds/amd64/iso-cd/
Setting up Azure NC6 for Kaggle Competitions
I have chosen NC6 and Ubuntu 18.04 Install the following using Lambda Stack: Deep Learning frameworks: TensorFlow, Keras, PyTorch, Caffe, Caffe 2 GPU software: CUDA, cuDNN, NVIDIA drivers Development tools: git, tmux, screen, vim, emacs, htop, valgrind, build-essential Using Kaggle’s beta API, you can interact with Competitions and Datasets to...
[Read More]
Google Test (gtest) on Debian
Here is the link to the project source https://github.com/google/googletest
Here is the code for installing Google Test (gtest)
sudo apt-get install libgtest-dev
[Read More]
Initial Steps for Python
Change python version system-wide
[Read More]
Common Lisp IDE
Best resource for Common Lisp can be found here: https://github.com/norvig/paip-lisp Emacs sudo apt-get install emacs SBCL Download from here: http://www.sbcl.org/platform-table.html sudo ./install.sh Slime create .emacs in your home folder. paste the following to it: (require 'package) (let* ((no-ssl (and (memq system-type '(windows-nt ms-dos)) (not (gnutls-available-p)))) (proto (if no-ssl "http" "https")))...
[Read More]