30 sec. how-to video https://youtu.be/Yk-ypBpMnDg
Just ask Luke in 1 hour. Bring a Raspberry Pi.
Just ask Mom tomorrow at 3pm. Reminder for doctor appt.
| from multiprocessing import Process | |
| import os | |
| import time | |
| PRIMES_MAX = 10000000 | |
| def primes(n): | |
| # info('primes') | |
| if n==2: | |
| return [2] |
| to start a session | |
| > screen | |
| (now run some commands) | |
| within screen, to detach (and keep session running) | |
| > ctl a + d | |
| outside of screen, list screen sessions | |
| > screen -ls |
30 sec. how-to video https://youtu.be/Yk-ypBpMnDg
Just ask Luke in 1 hour. Bring a Raspberry Pi.
Just ask Mom tomorrow at 3pm. Reminder for doctor appt.
| from numba import jit | |
| from numpy import arange | |
| import numpy as np | |
| def sum2d_loop(arr): | |
| M, N = arr.shape | |
| result = 0.0 | |
| for i in range(M): | |
| for j in range(N): | |
| result += arr[i,j] |
| a |
| # Prompt format: username:os:currentdir> | |
| # luke:debian10:myapps> | |
| CURR_DIR=$(basename "$PWD") | |
| ID=$(grep -oP '(?<=^ID=).+' /etc/os-release | tr -d '"') | |
| VERSION=$(grep -oP '(?<=^VERSION_ID=).+' /etc/os-release | tr -d '"') | |
| PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u\[\033[00m\]:$ID$VERSION:\[\033[01;34m\]${CURR_DIR}\[\033[00m\]> ' |