Use these commands to run a jupyter server on a remote server and access it locally in a browser. You must have SSH access to the browser. Use any port you want.
Do not forget to change username@server
to the correct value!
where | using | command |
---|
#!/bin/bash | |
# Author: Maxwel Leite | |
# Website: http://needforbits.wordpress.com/ | |
# Description: Script to install the original Microsoft Tahoma Regular and MS Tahoma Bold (both version 2.60) on Ubuntu distros. | |
# Dependencies: wget and cabextract | |
# Tested: Ubuntu Saucy/Trusty/Xenial/Bionic | |
output_dir="/usr/share/fonts/truetype/msttcorefonts/" | |
tmp_dir="/tmp/ttf-ms-tahoma-installer" |
import pandas as pd | |
from rdkit import Chem | |
from rdkit.Chem import AllChem | |
df = pd.read_csv('SMILES.csv') | |
mols = [Chem.MolFromSmiles(smi) for smi in df.SMILES] | |
hmols = [Chem.AddHs(m) for m in mols] | |
for mol in hmols: | |
AllChem.EmbedMolecule(mol,AllChem.ETKDG()) | |
print(AllChem.UFFOptimizeMolecule(mol,1000)) | |
smiles = list(df.SMILES) |
import math | |
import random | |
import csv | |
import cProfile | |
import numpy as np | |
import hashlib | |
memoization = {} | |
#!/usr/bin/env python | |
import curses | |
import curses.textpad | |
import time | |
stdscr = curses.initscr() | |
#curses.noecho() | |
#curses.echo() |