Just a little blog post I created ^^ Feel free to share. There are no analytics collection on this site.
Even if one doesn’t become a master vim user, which really requires some serious effort and possibly years of training, just learning the basics can already save time and just overall make programming more of a joyful experience.
deleted by creator
I did! I started with vim. It was pretty decent imho. I learned some basics in a day and got bored then I installed emacs. Never looked back after that! lol.
deleted by creator
deleted by creator
Hi, website is responsive to screen size… is it part of CSS or did you incorporate any library?
The responsiveness to screensize is achieved by using the <meta> html tag:
<meta name=“viewport” content=“width=device-width, initial-scale=1”>
https://css-tricks.com/snippets/html/responsive-meta-tag/
The responsive screensize has nothing to do with any library or css.
However, I do use Javascript for other things in this website, but it’s all FOSS. view the source code for the website here:
Thanks for the explanation!