This file contains 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
Note: These commands only apply to Debian | |
Resource: https://opensource.com/article/18/8/how-install-software-linux-command-line | |
Installing Apps on Linux: | |
`sudo apt install <app-name>` | |
Uninstalling an app via apt is also super easy: | |
`sudo apt remove app_name` |
This file contains 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
CURL COMMANDS | |
Auth_Token: AUTH_tked6a45449d034facb8d46572847c0076 | |
4 Things To Pay Attention To: | |
- Building an API that allows you to Add multiple objects into a container | |
- Creating an API for a set of Metadata | |
- Cannot upload files that are greater than 5GB, Build an API that will do automatic segmentation | |
- No longer using AWS, so we should build an API that allows objects to be added to both Clouds (Swift & Azure) |
This file contains 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
from __future__ import print_function | |
import cv2 | |
import json | |
import numpy as np | |
import socket | |
import sys | |
import pickle | |
import os | |
from time import sleep | |
import time |