or, How I went from Psychology Major to Computer Vision & Robotics Developer.
v0.1.0 2022-07-24 Uploaded for Harry
Subject | Level
| ## This is a customized config file for Tor. [See full example at tor/torrc.sample](https://github.com/torproject/tor/blob/main/src/config/torrc.sample.in) | |
| ## Replace `/etc/tor/torrc` with: | |
| ## nyx monitor requires control port | |
| ControlPort 9051 | |
| ## Cookie authentication for nyx means you have to run nyx in sudo | |
| CookieAuthentication 1 |
Why? Honestly, Naver Cloud doesn't stand out, but its prices are comparable to others, and its location probably means faster speeds for Korea.
Other options:
See naver cloud documentation at: https://cli.ncloud-docs.com/docs/en/guide-archivestorage
| #!/bin/bash | |
| # start this script in one window, passing in .cpp file as argument | |
| # open text editor in another window | |
| # when you make edits and save file in the text editor, this script will run to compile and run the C++ code | |
| inotifywait -e close_write,moved_to -m . | | |
| while read -r directory events filename; do | |
| if [ "$filename" = "$1" ]; then | |
| g++ "$1" |
| import os | |
| import sys | |
| import logging | |
| import subprocess | |
| import argparse | |
| from skimage import io | |
| from tqdm import tqdm | |
| def validate_and_delete(path): |