sudo chown -R $USER:$USER /home/mato/storage
https://www.duckdns.org/install.jsp#linux-cron
# Luke's config for the Zoomer Shell | |
# Enable colors and change prompt: | |
autoload -U colors && colors | |
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b " | |
# History in cache directory: | |
HISTSIZE=10000 | |
SAVEHIST=10000 | |
HISTFILE=~/.cache/zsh/history |
sudo chown -R $USER:$USER /home/mato/storage
https://www.duckdns.org/install.jsp#linux-cron
.tmp | |
.git | |
docker-compose.yml | |
Dockerfile |
START, END, WINDOW = 0, 15, 5 | |
def pages(page): | |
start = page - WINDOW/2 | |
end = page + WINDOW/2 | |
if start >= START and end <= END: | |
return range(start, end+1) | |
if start <= START: |