kloeckner.com.ar

a backup of my entire webpage
Index Commits Files Refs README LICENSE
commit fdfb339c4849637acc8a6226211e99278fa0e6fc
parent aff6c614205bf8dc8227a82112ef0df55b003cc7
Author: mjkloeckner <martin.cachari@gmail.com>
Date:   Thu, 20 Oct 2022 23:43:31 -0300

Updated .gitignore

Now the entire blog folder is being ignored by git since the blog html
files are being auto generated from the corresponding markdown files found on
the md folder

Diffstat:
Dblog/dwm-config/dwm-config.html | 188-------------------------------------------------------------------------------
Dblog/dwm-config/screenshot.jpeg | 0
Dblog/dwm-config/screenshot.png | 0
Dblog/nerdearla-2022/nerdearla-2019.jpeg | 0
Dblog/nerdearla-2022/nerdearla-2019.png | 0
Dblog/nerdearla-2022/nerdearla-2022.html | 89-------------------------------------------------------------------------------
Dblog/sav/sav.gif | 0
Dblog/sav/sav.html | 49-------------------------------------------------
Dblog/vim-config/vim-config.html | 63---------------------------------------------------------------
Dblog/vim-config/vim_logo.png | 0
Dwebp_exclude | 2--
11 files changed, 0 insertions(+), 391 deletions(-)
diff --git a/blog/dwm-config/dwm-config.html b/blog/dwm-config/dwm-config.html
@@ -1,188 +0,0 @@
-<!DOCTYPE html><html lang="en"><head>
-        <meta charset="utf-8"/>
-        <meta name="generator" content="Shell script"/>
-        <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
-
-        <meta name="article-author" content="$article-author$"/>
-        <meta name="article-date" content="23-Oct-2021"/>
-        <meta name="article-title" content="dwm - A tiling window manager configuration"/>
-
-        <title>dwm - A tiling window manager configuration | Martin Klöckner&#39;s Webpage</title>
-        <link rel="stylesheet" type="text/css" href="/css/style.css"/>
-        <link rel="icon" href="/favicon.png"/>
-    </head>
-
-    <body>
-        <!--#include virtual="/common/header.shtml" -->
-
-        <article>
-            <link rel="stylesheet" type="text/css" href="/css/article_style.css"/>
-
-<h1 id="article-title">dwm - A tiling window manager configuration</h1><p class="article-date">23-Oct-2021 (last update 15-Oct-2022)</p>
-
-<p>A window manager is a software that can manage the layout and appearance
-of every window spawned in your desktop, most people confuse them with
-desktop enviroments, which isn’t the same since a desktop enviroment is
-more of an ecosystem, they come with a more ‘complete’ set of tools,
-like a basic web browser, a terminal emulator or calculator, an example
-of desktop enviroment would be gnome, xfce or kde plasma; instead a
-window manager is only the program that manages the windows spawned,
-although there are window managers that come with a little more, like
-docks or taskbars (openbox for example).</p>
-
-<p>In my case I use dwm, which is a window manager written in C developed
-by suckless software. The most relevant thing of this window manager is
-that out of the box it comes with the most basic functionallity, and if
-you want to extend it you need to patch it.</p>
-
-<p>By default dwm comes with 9 workspaces, in which you can open as many
-windows as you please; to spawn a new window for example a web browser
-you need to assign it a keybinding or use an application launcher like
-<a href="https://tools.suckless.org/dmenu/">dmenu</a></p>
-
-<p><a href="screenshot.png" title="Screenshot of my dwm build"><img src="screenshot.jpeg" alt="Screenshot"/></a></p>
-
-<h2>Installing dwm</h2>
-
-<h3>Requisites</h3>
-
-<ul>
-<li>  GNU/Linux or BSD based operating system</li>
-<li>  A C library and a C compiler</li>
-<li>  make utility installed</li>
-<li>  X server installed</li>
-<li>  dwm source code, you can clone the repository or download as a tar file at the web</li>
-</ul>
-
-<p>As you can see above you can only install dwm on GNU/Linux or BSD based
-distros, unfortunally dwm is not available for Windows users but I’m
-sure there is an alternative.</p>
-
-<h3>Installation</h3>
-
-<p>In order to install dwm you can visit the web of the creators at
-<a href="https://dwm.suckless.org/">suckless.org/dwm</a>, where you can download
-the source code as a tar file, or clone the repository.</p>
-
-<p>After you obtain the source code you need to navigate to the root folder
-of the source code and execute the following command</p>
-
-<pre><code class="language-console"><span class="pun">$</span> <span class="pln">sudo</span> <span class="kwd">make</span> <span class="pln">install</span>
-</code></pre>
-
-<p>after that you can log out of you user account, if you use a display
-manager you can select dwm as window manager and log back in, if you
-dont use a display manager you need to edit your .xinitrc file located
-at you home folder so that when you start X dwm gets launched too, you
-do this by adding `exec dwm` to the end of the .xinitrc
-file, its important that you add it to the end of the file.</p>
-
-<pre><code class="language-console"><span class="pun">$</span> <span class="pln">cat</span> <span class="pun">$</span><span class="typ">HOME</span><span class="pun">/</span><span class="pun">.</span><span class="pln">xinitrc</span>
-<span class="kwd">exec</span> <span class="pln">dwm</span>
-</code></pre>
-
-<p>Then you can start the X server by executing `startx` on a tty and it
-should open dwm without any problems.</p>
-
-<h2>How do you configure dwm?</h2>
-
-<p>Basically you configure it by editing its source code, inside the root
-folder of the project there is a C header file named
-<a href="https://github.com/klewer-martin/dotfiles/blob/master/.config/dwm/config.def.h">config.def.h</a>
-which if you open with a text editor you can see that there is some C
-code that you can edit, for example the line “static const int topbar”
-defines a variable named topbar which you can set to 1 or 0, to select
-if the status bar should spawn in the top or the bottom of the screen.
-After every change you make to the source code you need to copy
-config.def.h to config.h and then recompile dwm</p>
-
-<h3>Show information on the status bar</h3>
-
-<p>dwm by default won’t show any information on the status bar, this is
-done by using the xsetroot utility, which sets the WM_NAME enviroment
-variable that dwm uses, lets assume you want to set the clock and date
-on the status bar, well you could execute the following command</p>
-
-<pre><code class="language-console"><span class="pun">$</span> <span class="pln">xsetroot</span> <span class="pun">-</span><span class="pln">iname</span> <span class="pun">$</span><span class="pun">(</span><span class="pln">date</span><span class="pun">)</span>
-</code></pre>
-
-<p>and all the output of the command `date` would be printed on the status bar, this
-makes dwm status bar highly scriptable, in fact there are a ton of status
-bar implementations, the one that I use is called
-<a href="https://github.com/torrinfail/dwmblocks">dwmblocks</a> and its also
-written in C and the configuration its pretty much the same as dwm, in
-order to get information you need to have scripts that prints the
-desired data to stdout, then you can include it on the config.h of
-dwmblocks by having them on a folder which is included in the $PATH
-variable of your user.</p>
-
-<h3>Getting emoji support on dwm</h3>
-
-<p>dwm by default doesn’t come with emoji support, if you want to render
-an emoji in the status bar its going to either show it as a box or in
-the worst case crash, so in order to get emoji support first you need to
-get a font with emojis, I’m using <a href="https://www.joypixels.com/">JoyPixels®
-font</a> you can also use
-<a href="https://fonts.google.com/noto">Google’s noto font</a>, or any other font
-that comes with emoji support. Then open dwm configuration file and
-append to the fonts array the name of the font you want,
-in my case it’s JoyPixels®.</p>
-
-<pre><code class="language-c"><span class="kwd">static</span> <span class="kwd">const</span> <span class="kwd">char</span> <span class="pun">*</span><span class="pln">fonts</span><span class="pun">[</span><span class="pun">]</span> <span class="pun">=</span> <span class="pun">{</span> <span class="str">&#34;Source Code Pro:style=Regular:size=9&#34;</span><span class="pun">,</span>
-                                <span class="str">&#34;JoyPixels:style=Regular:size=8&#34;</span><span class="pun">,</span>
-                                 <span class="str">&#34;DejaVu Sans&#34;</span> <span class="pun">}</span><span class="pun">;</span>
-</code></pre>
-
-<p>After you setup the font you need to remove or comment a chunk of code
-from drw.c, a file located in the root of the folder where dwm source
-code resides, between lines 136-150 there is a function named IsCol, you
-need to remove it or comment it.</p>
-
-<p>Finally you can recompile dwm and you will get emoji support. Sometimes
-even though you made all this procedure you still get boxes insted of
-the proper emoji, I solved this by adding another font name in the
-fonts array, like a fallback font.</p>
-
-<h3>Patches in dwm</h3>
-
-<p>Since dwm is a simple program than doesn’t include much features, if
-you want to extend it, for example by adding a
-<a href="https://dwm.suckless.org/patches/systray/">systray</a> to the status bar,
-you need to patch dwm. To do this first you need to download the patch
-from <a href="https://dwm.suckless.org/patches/">suckless.org/patches</a>, then
-make sure you got it ‘patch’ installed, although I think it comes with
-most linux distributions by default nowdays.</p>
-
-<pre><code class="language-console"><span class="pun">$</span> <span class="pln">patch</span> <span class="pun">-</span><span class="pln">p1</span> <span class="pun">&lt;</span> <span class="pun">&lt;</span><span class="pln">file</span><span class="pun">.</span><span class="pln">diff</span><span class="pun">&gt;</span>
-</code></pre>
-
-<p>If you never patched dwm before then probably no errors would be
-reportjd, but if you already have applied a ton of patches then probably
-you would get a HUNK ## FAILED, in this case you need to get your hands
-dirty, and manually patch all the files that failed, you do this by
-opening the files with .rej extension (short for rejected), and the
-corresponding file to be patched, for example dwm.c and dwm.c.rej, and
-then you add all the chunks of code from the rejected file into the
-corresponding place in the non rejected file, you know where you should
-put the chunks of code because in the rej file you can see at the start
-of every chunk there is a ‘@@’ followed by a number of line; also
-lines starting with plus means add, and minus means delete, if I’m not
-clear you should google how to use diff and patch to modify a file.</p>
-
-<h2>Useful links</h2>
-
-<ul>
-<li><a href="https://en.wikipedia.org/wiki/Window_manager">What is a window manager?</a></li>
-<li>Make sure to check the <a href="https://suckless.org/">suckless webiste</a></li>
-<li><a href="https://dwm.suckless.org/">suckless dwm website</a></li>
-<li><a href="https://www.x.org/releases/X11R7.7/doc/man/man1/Xserver.1.xhtml">X server man page</a></li>
-<li><a href="https://man7.org/linux/man-pages/man1/patch.1.html">patch man page</a></li>
-</ul>
-
-            <!--#include virtual="/common/end_of_article.shtml" -->
-        </article>
-
-        <!--#include virtual="/common/footer.shtml" -->
-    
-
-</body></html>
diff --git a/blog/dwm-config/screenshot.jpeg b/blog/dwm-config/screenshot.jpeg
Binary files differ.
diff --git a/blog/dwm-config/screenshot.png b/blog/dwm-config/screenshot.png
Binary files differ.
diff --git a/blog/nerdearla-2022/nerdearla-2019.jpeg b/blog/nerdearla-2022/nerdearla-2019.jpeg
Binary files differ.
diff --git a/blog/nerdearla-2022/nerdearla-2019.png b/blog/nerdearla-2022/nerdearla-2019.png
Binary files differ.
diff --git a/blog/nerdearla-2022/nerdearla-2022.html b/blog/nerdearla-2022/nerdearla-2022.html
@@ -1,89 +0,0 @@
-<!DOCTYPE html><html lang="en"><head>
-        <meta charset="utf-8"/>
-        <meta name="generator" content="Shell script"/>
-        <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
-
-        <meta name="article-author" content="$article-author$"/>
-        <meta name="article-date" content="23-Sep-2022"/>
-        <meta name="article-title" content="I&#39;m going to Nerdearla 2022"/>
-
-        <title>I&#39;m going to Nerdearla 2022 | Martin Klöckner&#39;s Webpage</title>
-        <link rel="stylesheet" type="text/css" href="/css/style.css"/>
-        <link rel="icon" href="/favicon.png"/>
-    </head>
-
-    <body>
-        <!--#include virtual="/common/header.shtml" -->
-
-        <article>
-            <link rel="stylesheet" type="text/css" href="/css/article_style.css"/>
-
-<h1 id="article-title">I’m going to Nerdearla 2022</h1><p class="article-date">23-Sep-2022 (last update 17-Oct-2022)</p>
-
-<p>As the title says I’m going to be present at <a href="https://nerdear.la/">Nerdearla</a>.</p>
-
-<p>This will be my second time that I attend to this event since I’ve been there for the first time in 2019. I remember that <a href="https://en.wikipedia.org/wiki/Jon_Hall_(programmer)">John ‘Maddog’ Hall</a> was making a presentation called “50 years of UNIX and the landing on the Moon”, you can find a record of the presentation <a href="https://www.youtube.com/watch?v=9O_FnKZI6_M">here</a>.</p>
-
-<p><a href="nerdearla-2019.png" title="Nerdearla 2019"><img src="nerdearla-2019.jpeg" alt="Nerdearla 2019"/></a></p>
-
-<p>It was my first talk ever and I loved it, sadly becouse of the pandemic I couldn’t go in the past two years.</p>
-
-<p>The event is half remote half presential and the entrance is free. It takes place at Centro cultural Konex on Once, Buenos Aires on Oct 19 to Oct 22, last three days.</p>
-
-<pre><code class="language-console"><span class="pun">$</span> <span class="pln">sudo</span> <span class="kwd">make</span> <span class="pln">clean</span> <span class="pln">install</span>
-</code></pre>
-
-<p>This is how I replace the variables in the template with the data aquired from the metadata contained in the files written in markdown</p>
-
-<pre><code class="language-console"><span class="pun">$</span> <span class="pln">sed</span> <span class="pun">-</span><span class="pln">e</span> <span class="str">&#34;s/\$article-title\\$/$title/&#34;</span> <span class="pun">-</span><span class="pln">e</span> <span class="str">&#34;s/\$article-date\\$/$date/&#34;</span> <span class="pun">\</span>
-    <span class="pun">-</span><span class="pln">e</span> <span class="str">&#34;s/\$pagetitle\\$/$pagetitle/&#34;</span> <span class="pun">-</span><span class="pln">e</span> <span class="str">&#39;/\$body\$/r./body.html&#39;</span> <span class="pun">\</span>
-    <span class="pun">-</span><span class="pln">e</span> <span class="str">&#39;/\$body\$/d&#39;</span> <span class="pun">$</span><span class="typ">TEMPLATE</span> <span class="pun">&gt;</span> <span class="pun">$</span><span class="pln">filename</span><span class="pun">.</span><span class="pln">html</span>
-</code></pre>
-
-<p>This is how I generate this webpage, converting it from its markdown file into html, this is a custom scripts that I made that only depends on lowdown, grep, and sed. Previously I had another script similar, which depended on pandoc, which is an alternative of lowdown but much more bloated, it depends on a ton of libraries wirtten in haskell</p>
-
-<pre><code>$ ./build.sh nerdearla-2022.md
-</code></pre>
-
-<p>this is an nginx config file snippet taken from <a href="https://landchad.net">LandChad.net</a></p>
-
-<pre><code class="language-nginx"><span class="pln">server</span> <span class="pun">{</span>
-    <span class="pun">#</span><span class="pun">.</span><span class="pun">.</span><span class="pun">.</span>
-    <span class="pln">auth_basic</span> <span class="str">&#34;What&#39;s the Password?&#34;</span> <span class="pun">;</span>
-    <span class="pln">auth_basic_user_file</span> <span class="pun">/</span><span class="pln">etc</span><span class="pun">/</span><span class="pln">nginx</span><span class="pun">/</span><span class="pln">myusers</span> <span class="pun">;</span>
-    <span class="pln">location</span> <span class="pun">/</span><span class="kwd">public</span><span class="pun">/</span> <span class="pun">{</span>
-        <span class="pun">#</span><span class="pun">.</span><span class="pun">.</span><span class="pun">.</span>
-        <span class="pln">auth_basic</span> <span class="pln">off</span> <span class="pun">;</span>
-    <span class="pun">}</span>
-    <span class="pun">#</span><span class="pun">.</span><span class="pun">.</span><span class="pun">.</span>
-<span class="pun">}</span>
-</code></pre>
-
-<pre><code class="language-c"><span class="kwd">int</span> <span class="pln">main</span> <span class="pun">(</span><span class="kwd">void</span><span class="pun">)</span>
-<span class="pun">{</span>
-    <span class="typ">SAV</span> <span class="pun">*</span><span class="pln">sav</span> <span class="pun">=</span> <span class="typ">NULL</span><span class="pun">;</span>
-    <span class="typ">Drw</span> <span class="pun">*</span><span class="pln">drw</span> <span class="pun">=</span> <span class="typ">NULL</span><span class="pun">;</span>
-    <span class="pln">time_t</span> <span class="pln">tic</span><span class="pun">,</span> <span class="pln">toc</span><span class="pun">;</span>
-    <span class="kwd">unsigned</span> <span class="kwd">int</span> <span class="pln">ti</span><span class="pun">,</span> <span class="pln">tf</span><span class="pun">,</span> <span class="pln">dt</span><span class="pun">,</span> <span class="pln">time_per_frame</span><span class="pun">;</span>
-    <span class="pln">pthread_t</span> <span class="pln">p1</span> <span class="pun">=</span> <span class="dec">0</span><span class="pun">;</span>
-    <span class="pln">status_t</span> <span class="pln">st</span><span class="pun">;</span>
-
-    <span class="kwd">if</span><span class="pun">(</span><span class="pun">(</span><span class="pln">st</span> <span class="pun">=</span> <span class="typ">SAV_create</span><span class="pun">(</span><span class="pun">&amp;</span><span class="pln">sav</span><span class="pun">)</span><span class="pun">)</span> <span class="pun">!</span><span class="pun">=</span> <span class="typ">OK</span><span class="pun">)</span> <span class="kwd">goto</span> <span class="kwd">end</span><span class="pun">;</span>
-    <span class="kwd">if</span><span class="pun">(</span><span class="pun">(</span><span class="pln">st</span> <span class="pun">=</span> <span class="pln">drw_create</span><span class="pun">(</span><span class="pun">&amp;</span><span class="pln">drw</span><span class="pun">)</span><span class="pun">)</span> <span class="pun">!</span><span class="pun">=</span> <span class="typ">OK</span><span class="pun">)</span> <span class="kwd">goto</span> <span class="kwd">end</span><span class="pun">;</span>
-
-    <span class="pln">tic</span> <span class="pun">=</span> <span class="pln">time</span><span class="pun">(</span><span class="typ">NULL</span><span class="pun">)</span><span class="pun">;</span>
-    <span class="pln">time_per_frame</span> <span class="pun">=</span> <span class="dec">16</span><span class="pun">;</span> <span class="com">/* miliseconds */</span>
-    <span class="pln">sav</span><span class="pun">-</span><span class="pun">&gt;</span><span class="pln">arr</span><span class="pun">-</span><span class="pun">&gt;</span><span class="pln">shuffle</span><span class="pun">(</span><span class="pln">sav</span><span class="pun">-</span><span class="pun">&gt;</span><span class="pln">arr</span><span class="pun">)</span><span class="pun">;</span>
-
-    <span class="kwd">char</span> <span class="pun">*</span><span class="pln">hw</span> <span class="pun">=</span> <span class="str">&#34;Hello, world!\n&#34;</span>
-    <span class="kwd">return</span> <span class="dec">0</span><span class="pun">;</span>
-<span class="pun">}</span>
-</code></pre>
-
-            <!--#include virtual="/common/end_of_article.shtml" -->
-        </article>
-
-        <!--#include virtual="/common/footer.shtml" -->
-    
-
-</body></html>
diff --git a/blog/sav/sav.gif b/blog/sav/sav.gif
Binary files differ.
diff --git a/blog/sav/sav.html b/blog/sav/sav.html
@@ -1,49 +0,0 @@
-<!DOCTYPE html><html lang="en"><head>
-        <meta charset="utf-8"/>
-        <meta name="generator" content="Shell script"/>
-        <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
-
-        <meta name="article-author" content="$article-author$"/>
-        <meta name="article-date" content="18-Sep-2022"/>
-        <meta name="article-title" content="SAV - Sorting Algorithms Visualized"/>
-
-        <title>SAV - Sorting Algorithms Visualized | Martin Klöckner&#39;s Webpage</title>
-        <link rel="stylesheet" type="text/css" href="/css/style.css"/>
-        <link rel="icon" href="/favicon.png"/>
-    </head>
-
-    <body>
-        <!--#include virtual="/common/header.shtml" -->
-
-        <article>
-            <link rel="stylesheet" type="text/css" href="/css/article_style.css"/>
-
-<h1 id="article-title">SAV - Sorting Algorithms Visualized</h1><p class="article-date">18-Sep-2022 (last update 15-Oct-2022)</p>
-
-<p>This is a desktop app that shows how an array is being sorted using different algorithms.</p>
-
-<p><img src="sav.gif" alt="" title="Gif showing SAV working"/></p>
-
-<p>I made it using pure C and SDL2 for graphics, you can take a look at it’s source code on <a href="https://github.com/mjkloeckner/sav">Github</a>.</p>
-
-<p>The main purpose of this app was to put in practice the knowledge I gained in C as well with algorithms, and it was like a challenge since I’d never used SDL2 graphics before. In the end was a very enjoyable project since SDL2 per se is a very simple and easy to use library.</p>
-
-<p>Currently it supports the following algorithms:</p>
-
-<ul>
-<li>bubble sort improved</li>
-<li>insertion sort</li>
-<li>merge sort wrapper</li>
-<li>quick sort wrapper</li>
-<li>shell sort</li>
-<li>selection sort</li>
-<li>heap sort</li>
-</ul>
-
-            <!--#include virtual="/common/end_of_article.shtml" -->
-        </article>
-
-        <!--#include virtual="/common/footer.shtml" -->
-    
-
-</body></html>
diff --git a/blog/vim-config/vim-config.html b/blog/vim-config/vim-config.html
@@ -1,63 +0,0 @@
-<!DOCTYPE html><html lang="en"><head>
-        <meta charset="utf-8"/>
-        <meta name="generator" content="Shell script"/>
-        <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
-
-        <meta name="article-author" content="$article-author$"/>
-        <meta name="article-date" content="04-Mar-2021"/>
-        <meta name="article-title" content="vim - The keyboard driven text editor"/>
-
-        <title>vim - The keyboard driven text editor | Martin Klöckner&#39;s Webpage</title>
-        <link rel="stylesheet" type="text/css" href="/css/style.css"/>
-        <link rel="icon" href="/favicon.png"/>
-    </head>
-
-    <body>
-        <!--#include virtual="/common/header.shtml" -->
-
-        <article>
-            <link rel="stylesheet" type="text/css" href="/css/article_style.css"/>
-
-
-<div id="article-title-with-icon">        <div id="article-icon"> <img src="vim_logo.png" title="Vim logo" alt="Vim logo"/>        </div> <h1 id="article-title">The keyboard driven text editor</h1></div><p class="article-date">04-Mar-2021 (last update 15-Oct-2022)</p>
-
-<p>If we think for a moment about software we are going to realize that the
-core of every program is just plain text, literally, just words in a
-file that someone wrote, this webpage it’s just text interpreted by
-your web-browser, whose also just plain text implemented by another
-program, some software has more complexity than others, for example the
-linux kernel it’s estimated that has around 27.8 million lines of code,
-which is also just plain text</p>
-
-<p>The way we tell computers what to do it’s with text, so in order to
-write that text we just need a text editor and this is were Vim it’s
-known for. Vim it’s just a text editor. The term Vim stands for Vi
-IMproved, Vim it’s a rewrite and improved version of Vi, a text editor
-that dates from 1978.</p>
-
-<p>In this article I want to show how this text editor became my best
-frient (?), I learned to love about Vim keybindings and now I even have
-and extension on my browser to use vim like keybindings.</p>
-
-<p>Vim is a console text editor (altough you can find distributions like
-gvim, which comes with a gui), a benefit of this its that It’s very
-lightweign in terms of system resources. Vim it’s also highly
-configurable, you can do this by editing the <em>.vimrc</em> text
-file, which should be in you home directory in Linux or BSD bases OSs,
-if not you can <em>create</em> a new blank one and start from zero</p>
-
-<p>If you installed Vim and you don’t know how to move around or insert
-text, first you need to understand the basics, Vim has 3 main “modes”</p>
-
-<p>By default Vim comes with a lot of features disabled, for example a key
-binding to comment a line or auto close brackets, parenthesis, etc, this
-features you can enable them by installing <em>plugins</em> which I
-will cover leter.</p>
-
-            <!--#include virtual="/common/end_of_article.shtml" -->
-        </article>
-
-        <!--#include virtual="/common/footer.shtml" -->
-    
-
-</body></html>
diff --git a/blog/vim-config/vim_logo.png b/blog/vim-config/vim_logo.png
Binary files differ.
diff --git a/webp_exclude b/webp_exclude
@@ -1,2 +0,0 @@
-deploy.sh
-hjol