Cheatsheet

Cheatsheet #


HTML Snippets #


[![An AI generated image.](small.png)](large.png)

Collapsible Section #

<details>
  <summary>Click to reveal images</summary>

</details>

Python Snippets #


Use catppuccin Theme in Matplotlib #

import mplcatppuccin
import matplotlib as mpl
import matplotlib.pyplot as plt

mpl.style.use("latte")

Update PyTorch #

# Uninstalls the specified Python packages (torch, torchaudio, torchvision,
# torchtext, torchdata) if they are already installed in your Python
# environment.
# The --yes option automatically confirms the uninstallation so that the process
# doesnโ€™t pause to ask for user confirmation.
!pip3 uninstall --yes torch torchaudio torchvision torchtext torchdata

# This installs the specified Python packages (torch, torchaudio, torchvision,
# torchtext, torchdata). These packages are commonly used for machine learning
# and data processing tasks.
!pip3 install torch torchaudio torchvision torchtext torchdata

Display Plots Inline #

# This line is a magic command in IPython.
# It sets the backend of matplotlib to the โ€˜inlineโ€™ backend, which means that
# the output of plotting commands is displayed inline within frontends like
# the Jupyter notebook, directly below the code cell that produced it.
%matplotlib inline

Mount Google Drive #

# These lines are used when youโ€™re working in Google Colab and you want to
# access files from your Google Drive.
# The drive.mount('/content/drive') command mounts your Google Drive at the
# specified path (/content/drive), allowing you to read from and write to files
# in your Google Drive directly. Youโ€™ll be asked to authorize access by signing
# in to your Google account.
from google.colab import drive
drive.mount('/content/drive')

VSCode Snippets #


Keybindings #

KaTeX for Hugo #

{
    "key": "ctrl+alt+k",
    "command": "editor.action.insertSnippet",
    "args": {
        "snippet": "$$\\n\\$TM_SELECTED_TEXT\\n$$"
    },
    "when": "editorTextFocus && !editorReadonly"
},
{
    "key": "ctrl+alt+l",
    "command": "editor.action.insertSnippet",
    "args": {
        "snippet": "$\\$TM_SELECTED_TEXT$"
    },
    "when": "editorTextFocus && !editorReadonly"
},

KaTeX Surround With \vec #

{
    "key": "ctrl+alt+v",
    "command": "editor.action.insertSnippet",
    "args": {
        "snippet": "\\vec{$TM_SELECTED_TEXT}"
    },
    "when": "editorTextFocus && !editorReadonly"
}