export PATH=$PATH:/home/<UserName>/Software/JetBrains_Linux/clion-2019.3.4/bin/
source ~/.bashrc
clion.sh```
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
Add in settings.json | |
"python.linting.pylintArgs": ["--generate-members"] | |
https://stackoverflow.com/questions/51593147/cv2-python-has-no-imread-member |
- https://code.visualstudio.com/docs/cpp/config-mingw
- https://www.40tude.fr/blog/how-to-compile-cpp-code-with-vscode-cl/
- https://stackoverflow.com/questions/44759914/how-to-setup-vscode-to-use-visual-c-build-tools-for-windows
- microsoft/vscode-cpptools#1839
- https://code.visualstudio.com/docs/cpp/config-msvc\
- https://www.youtube.com/watch?v=X2tM21nmzfk
- Dev C++ Debugger Usage Video
- Change compiler options to following in DevC++
Original FreeCodeCamp Article Link
Instructions to get started after the keys have been added:
-
To use the keys, we have to register them with the ssh-agent on our machine. Ensure ssh-agent is running using the command:
eval "$(ssh-agent -s)"
135 cd Downloads/
136 curl -O https://downloads.rclone.org/rclone-current-linux-amd64.zip
137 unzip rclone-current-linux-amd64.zip
138 cd rclone-v1.51.0-linux-amd64/
139 sudo cp rclone /usr/bin/
140 sudo chown root:root /usr/bin/rclone
141 sudo chmod 755 /usr/bin/rclone
142 sudo mkdir -p /usr/local/share/man/man1
- Problem Description: "VMware Workstation and Device/Credential Guard are not compatible" error in VMware Workstation on Windows 10 host (2146361)
Solution
Just run cmd as Admin and type
bcdedit /set hypervisorlaunchtype off
and REBOOT
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
{"lastUpload":"2020-07-09T20:12:02.633Z","extensionVersion":"v3.4.3"} |
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
# Use as: wget -O - -q https://git.io/Jf15N | bash | |
# Make sure USB debugging is on and adb is installed | |
# else run sudo apt-get update && sudo apt-get install android-tools-adb android-tools-fastboot | |
adb forward tcp:9222 localabstract:chrome_devtools_remote | |
wget -O tabs.json http://localhost:9222/json/list |
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
for file in ./* ; do | |
dir=$(basename $file .txt) | |
mkdir $dir | |
cd $dir | |
wget -i "../${file}" | |
tree -h -D -o "${dir}_tree.txt" . | |
zip -r "${dir}.zip" . | |
rm *.pdf | |
cd .. | |
dir="" |