Monthly Archive: December 2020

tmux – Good to know

Why tmux? 1) Because it makes life easier: https://opensource.com/article/20/5/split-terminal 2) Because it’s beautiful: [tmux] is my WM on OS x byu/dothebarbwa inunixporn For a beginners guide see: https://www.hamvocke.com/blog/a-quick-and-easy-guide-to-tmux/ https://www.golinuxcloud.com/tmux-commands/ Cheat-Sheet: use “prefix key” “Ctrl + a” (changed in my config, standard is “Ctrl + b”), release, then press “command key”. You can get help with: “prefix kex” + ? command...

Markdown Cheatsheet

Some Templates for most common markdown syntax: Links [Description](link) Images ![alt text](image.png) Table | Col1 | Col2 | Col3 | | —- |:—–:| —-:| | | | Blockquote < Code `code` Fenced Code { Block of Code } Horizontal Rule — Footnote Here’s a sentence with a footnote. [^1] [^1]: This is the footnote. Formatting Header: # Bold: ** Italic:...

Apache2 https and .htaccess Rewrite Engine

Problem: After installing Apache2 some local site, which has a .htaccess-file cannot be opened, and shows the error message: “Internal Server Error. The server encountered an internal error or misconfiguration and was unable to complete your request.” The logfile /var/log/apache2/error.log says “/path/.htaccess: Invalid command ‘RewriteEngine’, perhaps misspelled or defined by a module not included in the server configuration”. .htaccess has...