Emacs as Python3 IDE in Mac

Install the following using your preferred method: pip3 install rope jedi importmagic autopep8 flake8 In Emacs: M-x package-install RET elpy RET M-x package-install RET exec-path-from-shell RET M-x package-install RET pyenv RET M-x package-install RET anaconda-mode RET Edit .emacs as following: (elpy-enable) (when (memq window-system '(mac ns x)) (exec-path-from-shell-initialize)) (add-hook 'python-mode-hook... [Read More]

Mosh

Mosh is similar to SSH, remote terminal application but it allows roaming, and supports intermittent connectivity. Its usage is similar to SSH. It has to be installed both on the server and client. [Read More]

Machine Learning vs. Optimization

Although it may be an odd comparison, sometimes this can be confusing for approaching problems. On one hand, mathematical optimization is used in machine learning during model training, when we are trying to minimize the cost of errors between our model and our data points. On the other hand, machine... [Read More]