Skip to content

Instantly share code, notes, and snippets.

@hibi-myzk
hibi-myzk / The_Formula_of_Love.ipynb
Created June 30, 2024 03:22
The Formula of Love
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@hibi-myzk
hibi-myzk / without-global-variables.ipynb
Last active February 1, 2024 07:55
without global variables.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
from google.colab import drive
def mount_drive(project_name):
drive.mount("/content/drive")
colab_dir_path = "/content/drive/MyDrive/Colab Notebooks"
project_dir_path = f"{colab_dir_path}/{project_name}"
data_path = f"{project_dir_path}/data"
return colab_dir_path, project_dir_path, data_path