Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.
Create a new private repository on Github
Fork the repo (BASE_REPO_URL) to your new private repo (PRIVATE_REPO_URL) as follows:
BASE_REPO_URL=<BASE> # remote URL of repo you are forking
PRIVATE_REPO_URL=<PRIVATE> # remote URL of your new private fork repo| # SHORCUTS | |
| # Ctrl - T new vertical pane | |
| # Ctrl + U new hroizontal plane | |
| # Alt + P kill pane | |
| # Alt + W kill window | |
| # Alt + P kill session | |
| # Page Up / Page Down - shift windows | |
| # 0 is too far from ` ;) | |
| set -g base-index 1 |
| export GITHUB_USER=magickatt | |
| export GITHUB_TOKEN=secret | |
| export GITHUB_REPOSITORY=magickatt/ContainerisingLegacyApplicationsTalk | |
| git clone https://${GITHUB_USER}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY} |
| #!/usr/bin/env bash | |
| # used to install offical chrome and selenium on Ubuntu 16.04.1 LTS, 18.04, 20.04.1 LTS desktop, Jan 2021 | |
| # also tested and works on Elem OS 5.1 :) | |
| # | |
| # make sure script is run as root or sudo | |
| if [[ $(whoami) != "root" ]] ; then | |
| echo ; echo "This script, $0, SHOULD be run as ROOT. " ; echo | |
| exit 1 | |
| fi | |
| # |
| #!/bin/bash | |
| # | |
| # script to extract ImageNet dataset | |
| # ILSVRC2012_img_train.tar (about 138 GB) | |
| # ILSVRC2012_img_val.tar (about 6.3 GB) | |
| # make sure ILSVRC2012_img_train.tar & ILSVRC2012_img_val.tar in your current directory | |
| # | |
| # https://github.com/facebook/fb.resnet.torch/blob/master/INSTALL.md | |
| # | |
| # train/ |
| -- Force mac book pro 10.13.3 to switch audio input to hardware mic | |
| tell application "System Preferences" to activate | |
| tell application "System Preferences" | |
| reveal anchor "input" of pane id "com.apple.preference.sound" | |
| end tell | |
| tell application "System Events" to tell process "System Preferences" | |
| select (row 1 of table 1 of scroll area 1 of tab group 1 of window "Sound" whose value of text field 1 is "Internal Microphone") | |
| end tell | |
| quit application "System Preferences" |
The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.
The correct way of creating a private frok by duplicating the repo is documented here.
For this assignment the commands are:
git clone --bare [email protected]:usi-systems/easytrace.git
| import time | |
| from functools import wraps | |
| from multiprocessing.context import TimeoutError | |
| from multiprocessing.pool import ThreadPool | |
| def timeout(seconds): | |
| def timeout_wrapper(func): | |
| @wraps(func) | |
| def wrapped(*args, **kwargs): |