- you can use file cloud to set up your own cloud - ![https://www.youtube.com/watch?v=xBIowQ0WaR8&t=31s](https://www.youtube.com/watch?v=xBIowQ0WaR8&t=31s) Only have until May 31st!! - [Instructions for porting Google Drive to another Google Drive without downloading & uploading](https://www.makeuseof.com/tag/transfer-files-google-drive-accounts/) - manually copying - Using [PyDrive](https://docs.iterative.ai/PyDrive2/) with [fsspec](https://filesystem-spec.readthedocs.io/en/latest/copying.html) ## **Journals & Docs** - You will have to convert to [Markdown](obsidian://open?vault=enter&file=Coding%20Tips%20(Classical)%2FTerminal%20Tips%2F2.%20CLI%20Tools%2FLanguages%2FHigh%20level%20-%20Front-end%2FMarkdown) for local storage. - Refer to [Docs to Markdown wiki ](https://github.com/evbacher/gd2md-html/wiki) - Use pandoc for batch convert of multiple .docx to md 1. Install pandoc: [https://pandoc.org/installing.html 142](https://pandoc.org/installing.html) 2. Reboot your computer if this is windows (the installer updates $PATH on windows and a reboot is required to take effect) 3. Make a new folder, and **make a copy of your documents** to this folder. Hold down shift and right click an empty area in the file explorer and click on “Open PowerShell here” 4. Try running `pandoc --help`, if you get a bunch of help text, then pandoc is properly installed. Paste the following into the console and it should be able to convert all of the docx files in this folder to markdown. ### Windows: For pandoc script in Windows: ``` Get-ChildItem . -Filter *.docx | Foreach-Object { pandoc --from docx --to markdown $_ -o $_.Name.Replace('.docx', '.md') } ``` - [Pandoc manual also found here]([https://pandoc.org/MANUAL.html](https://pandoc.org/MANUAL.html)) For no-wrap clean .md files without 80-character wrap in Windows: ``` Get-ChildItem . -Filter *.docx | Foreach-Object { pandoc --from docx --to markdown --wrap=none $_ -o $_.Name.Replace('.docx', '.md') } ``` ### for Linux & Mac 1. place a script with the following content in the folder with the files you’d like to convert: ```bash find -name "*.docx" -type f -exec sh -c ' for f; do pandoc -f docx -t markdown -o "${f%.*}.md" "$f" done ' find-sh {} + ``` 2. Then execute the script via terminal like this: ./name-of-script 3. If you want to remove the original file, add the following line `rm "$f"` before the `done` command 4. To add option for images add in the/media folder with this script You have to pass option in pandoc. This will convert `.docx` in `.md` extracting images in `/media` folder ```bash gci -r -i *.docx |foreach{$md=$_.directoryname+"\"+$_.basename+".md";pandoc -f docx -s --extract-media=./ $_.name -o $md} ``` 5. Import [into Obsidian](https://help.obsidian.md/import/markdown) Obsidian uses Markdown `.md` files as the primary format for notes. This makes it easy to import Markdown files into Obsidian. Many apps can edit Markdown files or export to this format. There are several ways to add Markdown files to your Obsidian vault: 1. Drag and drop files or folders into the [File explorer](https://help.obsidian.md/Plugins/File+explorer) window 2. Use your system file browser (e.g. Windows Explorer or Finder on macOS), and move your files directly into the Obsidian vault folder. - Converting from other flavors of Markdown - Obsidian uses [Obsidian Flavored Markdown](https://help.obsidian.md/Editing+and+formatting/Obsidian+Flavored+Markdown). Some apps use slightly different Markdown syntax. You can use [Format converter](https://help.obsidian.md/Plugins/Format+converter) to convert your files to Obsidian's Markdown syntax. ## **Subject-based folder**s ## **Colab Python Notebooks** - You can download these and store within obsidian to connect to your git repo ## **Photos and image upload** - This will be ported over a different process - Refer to [Setting up Google Photos Backup](obsidian://open?vault=enter&file=Coding%20Tips%20(Classical)%2FProject%20Vault%2FSetup%20Guides%2FSetting%20Up%20Google%20Photos%20Backup) guide ![https://www.youtube.com/watch?v=Wjrdr0NU4Sk](https://www.youtube.com/watch?v=Wjrdr0NU4Sk)