Put custom.css in .jupyter/custom/ (if you are running recent version of Jupyter).
Note: Tested only on Chrome. Let me know if something is not working.
| fun max(a: Int, b: Int) = if (a > b) a else b | |
| # Compile and install certificates for the Java trust keystore | |
| # and main keystore. Let's face it, this is everyone's keystore password. | |
| # Note I install java very flatly normally. | |
| COPY trust-certs/ /usr/local/share/ca-certificates/ | |
| RUN update-ca-certificates && \ | |
| ls -1 /usr/local/share/ca-certificates | while read cert; do \ | |
| openssl x509 -outform der -in /usr/local/share/ca-certificates/$cert -out $cert.der; \ | |
| /java/bin/keytool -import -alias $cert -keystore /java/jre/lib/security/cacerts -trustcacerts -file $cert.der -storepass changeit -noprompt; \ | |
| rm $cert.der; \ | |
| done |
| import pandas as pd | |
| from sqlalchemy import create_engine | |
| # follows django database settings format, replace with your own settings | |
| DATABASES = { | |
| 'production':{ | |
| 'NAME': 'dbname', | |
| 'USER': 'user', | |
| 'PASSWORD': 'pass', | |
| 'HOST': 'rdsname.clqksfdibzsj.us-east-1.rds.amazonaws.com', |