Basic example:
import os
os.system("python --version")
Better, since stdout and return codes aren't easily processed when using os.system
:
Basic example:
import os
os.system("python --version")
Better, since stdout and return codes aren't easily processed when using os.system
:
import os | |
import sys | |
def progressbar(it, prefix="", file=sys.stdout): | |
count = len(it) | |
num_bar_chars = 5 | |
width = os.get_terminal_size().columns - ( | |
len(prefix) + len(str(count)) * 2 + num_bar_chars | |
) |
{ | |
"title": "Change caps_lock to Esc and Control", | |
"rules": [ | |
{ | |
"description": "Post Esc if Caps is tapped, Control if held.", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "caps_lock", |
# Outside top right | |
l1 = plt.legend(bbox_to_anchor=(1.04,1), borderaxespad=0) | |
# Outside bottom right | |
l2 = plt.legend(bbox_to_anchor=(1.04,0), loc="lower left", borderaxespad=0) | |
# Outside center right | |
l3 = plt.legend(bbox_to_anchor=(1.04,0.5), loc="center left", borderaxespad=0) | |
# Outside top single row | |
l4 = plt.legend(bbox_to_anchor=(0,1.02,1,0.2), loc="lower left", | |
mode="expand", borderaxespad=0, ncol=3) | |
# Outside bottom right |
########################################## | |
# MLX90640 Thermal Camera w Raspberry Pi | |
# -- 2Hz Sampling with Simple Routine | |
########################################## | |
# | |
import time,board,busio | |
import numpy as np | |
import adafruit_mlx90640 | |
import matplotlib.pyplot as plt |
## Option 1 | |
# Set all variables to be automatically exported | |
set -a | |
# '.' is the standard way to source variables. 'source' is available in most Bourne shells | |
. .env | |
# Disable automatic export | |
set +a | |
# Option 2 (for POSIX shells) | |
set -o allexport |
Source: https://help.ubuntu.com/community/EmailAlerts
Install the ssmtp package
sudo apt-get install ssmtp