Estructura:
docker [categoría] [comando] [parámetros]
Donde algunas categorías posibles son:
- image
- container
- network
bl_info = { | |
"name" : "Gamepad Control", | |
"author" : "Mokocchi", | |
"description" : "Control the blender viewport using a gamepad - based on István Donkó PoC", | |
"blender" : (3, 4, 1), | |
"category" : "Generic" | |
} | |
import evdev |
# Requires https://github.com/caarlos0/timer and cowsay to be installed | |
declare -A pomo_options | |
pomo_options["work"]="45m" | |
pomo_options["break"]="10m" | |
pomodoro () { | |
if [ -n "$1" -a -n "${pomo_options["$1"]}" ]; then | |
val=$1 | |
echo $val | cowsay |
CREATE SEQUENCE category_id_seq | |
INCREMENT 1 | |
MINVALUE 1 | |
MAXVALUE 9223372036854775807 | |
START 1 | |
CACHE 1; | |
ALTER TABLE category_id_seq | |
OWNER TO dsa; | |
--inserts here | |
ALTER SEQUENCE category_id_seq RESTART 1; |