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/bash | |
| set -eux -o pipefail | |
| function install_docker { | |
| # https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/#uninstall-old-versions | |
| # Remove exising docker versions | |
| sudo apt-get remove -y docker docker-engine docker.io | |
| sudo apt-get install -y \ |
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/bash | |
| set -eux | |
| function help { | |
| echo "Please source this script instread of running it" | |
| } | |
| # https://www.emacswiki.org/emacs/EmacsdInitScript | |
| function init_emacs { |
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
| import regex | |
| import numpy as np | |
| import pandas as pd | |
| import matplotlib.pyplot as plt | |
| import seaborn as sns | |
| CURRENCY_REGEX = regex.compile(r'[\$€,]') |
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
| %%%% NIPS Macros (LaTex) | |
| %%%% Style File | |
| %%%% Dec 12, 1990 Rev Aug 14, 1991; Sept, 1995; April, 1997; April, 1999 | |
| % This file can be used with Latex2e whether running in main mode, or | |
| % 2.09 compatibility mode. | |
| % | |
| % If using main mode, you need to include the commands | |
| % \documentclass{article} | |
| % \usepackage{nips10submit_e,times} |
OlderNewer