Tips – Make separate Archives for each folder
for /D %d in (.) do “C:\Program Files\7-Zip\7z.exe” a -tzip “%d.zip” “.\%d*”
for /D %d in (.) do “C:\Program Files\7-Zip\7z.exe” a -tzip “%d.zip” “.\%d*”
Use Anaconda Python (Instead of standalone Python) on windows for developing python programs. Never install too many (or any) additional packages in the base environment. Create Different conda environments for different projects, e.g., one for machine learning, one for web scrapping, one for real-time hardware simulation etc. conda create –name machine_learning python=3.7 (Optional: Specify Python […]