This is a post image

How to Manage Your Dotfiles

If you haven’t been tracking your dotfiles before, believe me you should definitely start do so right away. I’m preaty sure you’re also one of those guys who has always been quite annoyed by managing dotfiles. But hey, it’s never too late, so get your hands dirty and avoid of crying over lost dotfiles. Getting started with storing dotfiels in a git repository Create a git bare repository at ~/....

April 16, 2022 · 2 min · Vlado
This is a post image

Markdown Cheatsheet

# HEADERS Markdown input: # h1 ## h2 ### h3 #### h4 ##### h5 ###### h6 HTML output: h1 h2 h3 h4 h5 h6    # EMPHASIS Italic Markdown input: *italic text* _italic text_ HTML output: italic text italic text   Bold Markdown input: **bold text** __bold text__ HTML output: bold text bold text   Bold italic Markdown input:...

April 15, 2022 · 3 min · Vlado