gc file -Head 10
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
Invoke-Expression (&starship init powershell) | |
# Install latest version of PSReadLine in case of errors: | |
# Install-Module PSReadLine -AllowPrerelease -Force | |
Import-Module PSReadLine | |
Set-PSReadLineOption -PredictionSource History | |
Set-PSReadLineOption -PredictionViewStyle InlineView | |
Set-PSReadLineOption -EditMode Windows | |
# Install scoop package manager: |
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
{ | |
"name": "City Lights", | |
"background": "#1D252C", | |
"black": "#41505E", | |
"blue": "#539AFC", | |
"brightBlack": "#55687A", | |
"brightBlue": "#569DFF", | |
"brightCyan": "#7BF7FF", | |
"brightGreen": "#A7FFBC", | |
"brightPurple": "#FF3F8E", |
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 pandas as pd | |
import tmap as tm | |
from faerun import Faerun | |
from mhfp.encoder import MHFPEncoder | |
from rdkit.Chem import AllChem | |
from tqdm import tqdm | |
# Setup | |
# - conda create -n tmap-env -c tmap tmap | |
# - conda activate tmap-env |
OlderNewer