Category: Workplace

Handy Firefox Stuff

Settings for Firefox: 1) Show password suggestions only for subdomain, and not for whole domain (other subdomains as well) in about:config: signon.includeOtherSubdomainsInLookup false source: marius.bloggt-in-braunschweig.de and https://support.mozilla.org/

vim – Good to know

What is vim? Vim is a highly configurable text editor, making text-editing efficient (note: not easy). It’s present on most unix/linux-based systems.” (vim.org) Why using vim? When there is no other text-editor available on any Unix/Linux/x-System, there is vi. It’s not easy to use, but fun.. For more reasons see (hackernoon.com). Personally i use vim to edit config files. For...

Verify Software

see: https://hey-bitcoin.de/anleitung/software-verifizieren/#was-und-warum Basic Steps: – gpg –import key.asc – gpg –verify file.sig – shasum -a 256 -c file.DIGES

Be a shell-warrior on Windows

1) Make the shell more beautiful Pursuit of happiness – oh my Windows terminal is using: – posh-git – Get-ChildItemColor – Powerline Fonts see also: https://blogs.sap.com/2020/01/03/spice-up-your-windows-terminal/ 2) Install WSL – https://docs.microsoft.com/de-de/windows/wsl/install-win10 – config for zsh: Load the Plugin plugins=(zsh-dircolors-solarized) and setup the theme: setupsolarized dircolors.ansi-dark 3) Install PowerToys and vim – MS Power Toys – Vim 4) Set Aliases for...

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 from unixporn 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:...