aboutsummaryrefslogtreecommitdiff
path: root/docs/posts
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-01-25 17:44:36 +0000
committerAkshay <[email protected]>2020-01-25 17:44:36 +0000
commit5924e263893ac8c47a22a78c88b46c585fc9e82b (patch)
tree2455e8aab84e053d424eeb05f06dbcf079f7c7a6 /docs/posts
parent313fb789bbc0bf1dcbdff4b258818ec6d895b5a6 (diff)
update styles, minify links
Diffstat (limited to 'docs/posts')
-rw-r--r--docs/posts/WPA_woes/index.html (renamed from docs/posts/WPA_woes.html)14
-rw-r--r--docs/posts/bash_harder_with_vim/index.html (renamed from docs/posts/bash_harder_with_vim.html)22
-rw-r--r--docs/posts/bye_bye_BDFs/index.html (renamed from docs/posts/bye_bye_BDFs.html)14
-rw-r--r--docs/posts/color_conundrum/index.html (renamed from docs/posts/color_conundrum.html)14
-rw-r--r--docs/posts/get_better_at_yanking_and_putting_in_vim/index.html (renamed from docs/posts/get_better_at_yanking_and_putting_in_vim.html)14
-rw-r--r--docs/posts/hold_position!/index.html (renamed from docs/posts/hold_position!.html)14
-rw-r--r--docs/posts/my_setup/index.html (renamed from docs/posts/my_setup.html)14
-rw-r--r--docs/posts/onivim_sucks/index.html (renamed from docs/posts/onivim_sucks.html)14
-rw-r--r--docs/posts/static_sites_with_bash/index.html (renamed from docs/posts/static_sites_with_bash.html)14
9 files changed, 101 insertions, 33 deletions
diff --git a/docs/posts/WPA_woes.html b/docs/posts/WPA_woes/index.html
index dbf1b82..ab92cab 100644
--- a/docs/posts/WPA_woes.html
+++ b/docs/posts/WPA_woes/index.html
@@ -13,8 +13,16 @@
13 <body> 13 <body>
14 <div class="posts"> 14 <div class="posts">
15 <div class="post"> 15 <div class="post">
16 <div class="date">12/10 2019</div> 16 <div class="date">
17 <span style="font-size: 2rem; font-weight: 600"> 17 12/10 2019
18 <span class="commit-hash">
19 <a href="https://github.com/nerdypepper/site/blob/master/posts/WPA_woes.md
20" style="text-decoration: none">
21 9367110
22 </a>
23 </span>
24 </div>
25 <span class="post-title">
18 WPA Woes 26 WPA Woes
19 </span> 27 </span>
20 <div class="post-text"> 28 <div class="post-text">
@@ -62,7 +70,7 @@ $ sudo sv restart dhcpcd
62</code></pre> 70</code></pre>
63 71
64 </div> 72 </div>
65 <a href="/index.html" class="post-end-link">��� Back</a> 73 <a href="/" class="post-end-link">��� Back</a>
66 <div class="separator"></div> 74 <div class="separator"></div>
67 </div> 75 </div>
68 </div> 76 </div>
diff --git a/docs/posts/bash_harder_with_vim.html b/docs/posts/bash_harder_with_vim/index.html
index 54ab982..48e018f 100644
--- a/docs/posts/bash_harder_with_vim.html
+++ b/docs/posts/bash_harder_with_vim/index.html
@@ -13,8 +13,16 @@
13 <body> 13 <body>
14 <div class="posts"> 14 <div class="posts">
15 <div class="post"> 15 <div class="post">
16 <div class="date">31/07 2019</div> 16 <div class="date">
17 <span style="font-size: 2rem; font-weight: 600"> 17 31/07 2019
18 <span class="commit-hash">
19 <a href="https://github.com/nerdypepper/site/blob/master/posts/bash_harder_with_vim.md
20" style="text-decoration: none">
21 05bdbd0
22 </a>
23 </span>
24 </div>
25 <span class="post-title">
18 Bash Harder With Vim 26 Bash Harder With Vim
19 </span> 27 </span>
20 <div class="post-text"> 28 <div class="post-text">
@@ -22,9 +30,7 @@
22additions you could make to your <code>vimrc</code> for a better shell programming 30additions you could make to your <code>vimrc</code> for a better shell programming
23experience.</p> 31experience.</p>
24 32
25<hr/> 33<h3 id="Man%20pages%20inside%20vim">Man pages inside vim</h3>
26
27<h4 id="Man%20pages%20inside%20vim">Man pages inside vim</h4>
28 34
29<p>Source this script to get started: </p> 35<p>Source this script to get started: </p>
30 36
@@ -39,9 +45,7 @@ and the ability to jump around with <code>Ctrl-]</code> and <code>Ctrl-T</code>.
39<pre><code>let g:ft_man_open_mode = &#39;tab&#39; 45<pre><code>let g:ft_man_open_mode = &#39;tab&#39;
40</code></pre> 46</code></pre>
41 47
42<hr/> 48<h3 id="Scratchpad%20to%20test%20your%20commands">Scratchpad to test your commands</h3>
43
44<h4 id="Scratchpad%20to%20test%20your%20commands">Scratchpad to test your commands</h4>
45 49
46<p>I often test my <code>sed</code> substitutions, here is 50<p>I often test my <code>sed</code> substitutions, here is
47a sample from the script used to generate this site: </p> 51a sample from the script used to generate this site: </p>
@@ -78,7 +82,7 @@ Press ENTER or type command to continue
78</ul> 82</ul>
79 83
80 </div> 84 </div>
81 <a href="/index.html" class="post-end-link">��� Back</a> 85 <a href="/" class="post-end-link">��� Back</a>
82 <div class="separator"></div> 86 <div class="separator"></div>
83 </div> 87 </div>
84 </div> 88 </div>
diff --git a/docs/posts/bye_bye_BDFs.html b/docs/posts/bye_bye_BDFs/index.html
index 3b20814..b191615 100644
--- a/docs/posts/bye_bye_BDFs.html
+++ b/docs/posts/bye_bye_BDFs/index.html
@@ -13,8 +13,16 @@
13 <body> 13 <body>
14 <div class="posts"> 14 <div class="posts">
15 <div class="post"> 15 <div class="post">
16 <div class="date">07/08 2019</div> 16 <div class="date">
17 <span style="font-size: 2rem; font-weight: 600"> 17 07/08 2019
18 <span class="commit-hash">
19 <a href="https://github.com/nerdypepper/site/blob/master/posts/bye_bye_BDFs.md
20" style="text-decoration: none">
21 7f39c8d
22 </a>
23 </span>
24 </div>
25 <span class="post-title">
18 Bye Bye BDFs 26 Bye Bye BDFs
19 </span> 27 </span>
20 <div class="post-text"> 28 <div class="post-text">
@@ -45,7 +53,7 @@ remain unaffected by the update.</p>
45OpenType font formats.</p> 53OpenType font formats.</p>
46 54
47 </div> 55 </div>
48 <a href="/index.html" class="post-end-link">��� Back</a> 56 <a href="/" class="post-end-link">��� Back</a>
49 <div class="separator"></div> 57 <div class="separator"></div>
50 </div> 58 </div>
51 </div> 59 </div>
diff --git a/docs/posts/color_conundrum.html b/docs/posts/color_conundrum/index.html
index 113fd25..f504918 100644
--- a/docs/posts/color_conundrum.html
+++ b/docs/posts/color_conundrum/index.html
@@ -13,8 +13,16 @@
13 <body> 13 <body>
14 <div class="posts"> 14 <div class="posts">
15 <div class="post"> 15 <div class="post">
16 <div class="date">31/12 2019</div> 16 <div class="date">
17 <span style="font-size: 2rem; font-weight: 600"> 17 31/12 2019
18 <span class="commit-hash">
19 <a href="https://github.com/nerdypepper/site/blob/master/posts/color_conundrum.md
20" style="text-decoration: none">
21 e991ba5
22 </a>
23 </span>
24 </div>
25 <span class="post-title">
18 Color Conundrum 26 Color Conundrum
19 </span> 27 </span>
20 <div class="post-text"> 28 <div class="post-text">
@@ -56,7 +64,7 @@ are dimmed further.</p>
56combinations.</p> 64combinations.</p>
57 65
58 </div> 66 </div>
59 <a href="/index.html" class="post-end-link">��� Back</a> 67 <a href="/" class="post-end-link">��� Back</a>
60 <div class="separator"></div> 68 <div class="separator"></div>
61 </div> 69 </div>
62 </div> 70 </div>
diff --git a/docs/posts/get_better_at_yanking_and_putting_in_vim.html b/docs/posts/get_better_at_yanking_and_putting_in_vim/index.html
index f6ff300..926526c 100644
--- a/docs/posts/get_better_at_yanking_and_putting_in_vim.html
+++ b/docs/posts/get_better_at_yanking_and_putting_in_vim/index.html
@@ -13,8 +13,16 @@
13 <body> 13 <body>
14 <div class="posts"> 14 <div class="posts">
15 <div class="post"> 15 <div class="post">
16 <div class="date">29/07 2019</div> 16 <div class="date">
17 <span style="font-size: 2rem; font-weight: 600"> 17 29/07 2019
18 <span class="commit-hash">
19 <a href="https://github.com/nerdypepper/site/blob/master/posts/get_better_at_yanking_and_putting_in_vim.md
20" style="text-decoration: none">
21 4e9883d
22 </a>
23 </span>
24 </div>
25 <span class="post-title">
18 Get Better At Yanking And Putting In Vim 26 Get Better At Yanking And Putting In Vim
19 </span> 27 </span>
20 <div class="post-text"> 28 <div class="post-text">
@@ -42,7 +50,7 @@ nnoremap gb `[v`] &quot; &quot;a quick map to perform the above
42</ol> 50</ol>
43 51
44 </div> 52 </div>
45 <a href="/index.html" class="post-end-link">��� Back</a> 53 <a href="/" class="post-end-link">��� Back</a>
46 <div class="separator"></div> 54 <div class="separator"></div>
47 </div> 55 </div>
48 </div> 56 </div>
diff --git a/docs/posts/hold_position!.html b/docs/posts/hold_position!/index.html
index 8879955..8d441cf 100644
--- a/docs/posts/hold_position!.html
+++ b/docs/posts/hold_position!/index.html
@@ -13,8 +13,16 @@
13 <body> 13 <body>
14 <div class="posts"> 14 <div class="posts">
15 <div class="post"> 15 <div class="post">
16 <div class="date">30/07 2019</div> 16 <div class="date">
17 <span style="font-size: 2rem; font-weight: 600"> 17 30/07 2019
18 <span class="commit-hash">
19 <a href="https://github.com/nerdypepper/site/blob/master/posts/hold_position!.md
20" style="text-decoration: none">
21 487b33f
22 </a>
23 </span>
24 </div>
25 <span class="post-title">
18 Hold Position! 26 Hold Position!
19 </span> 27 </span>
20 <div class="post-text"> 28 <div class="post-text">
@@ -41,7 +49,7 @@ backticks) instead, but it comes in handy when you run your file through
41heavier filtering.</p> 49heavier filtering.</p>
42 50
43 </div> 51 </div>
44 <a href="/index.html" class="post-end-link">��� Back</a> 52 <a href="/" class="post-end-link">��� Back</a>
45 <div class="separator"></div> 53 <div class="separator"></div>
46 </div> 54 </div>
47 </div> 55 </div>
diff --git a/docs/posts/my_setup.html b/docs/posts/my_setup/index.html
index 0175275..9091b8f 100644
--- a/docs/posts/my_setup.html
+++ b/docs/posts/my_setup/index.html
@@ -13,8 +13,16 @@
13 <body> 13 <body>
14 <div class="posts"> 14 <div class="posts">
15 <div class="post"> 15 <div class="post">
16 <div class="date">07/11 2019</div> 16 <div class="date">
17 <span style="font-size: 2rem; font-weight: 600"> 17 07/11 2019
18 <span class="commit-hash">
19 <a href="https://github.com/nerdypepper/site/blob/master/posts/my_setup.md
20" style="text-decoration: none">
21 6bf0319
22 </a>
23 </span>
24 </div>
25 <span class="post-title">
18 My Setup 26 My Setup
19 </span> 27 </span>
20 <div class="post-text"> 28 <div class="post-text">
@@ -46,7 +54,7 @@ compiled with <code>xelatex</code>. Other <em>fun</em> documents are made with
46GIMP :).</p> 54GIMP :).</p>
47 55
48 </div> 56 </div>
49 <a href="/index.html" class="post-end-link">��� Back</a> 57 <a href="/" class="post-end-link">��� Back</a>
50 <div class="separator"></div> 58 <div class="separator"></div>
51 </div> 59 </div>
52 </div> 60 </div>
diff --git a/docs/posts/onivim_sucks.html b/docs/posts/onivim_sucks/index.html
index 1b4b835..d28b20d 100644
--- a/docs/posts/onivim_sucks.html
+++ b/docs/posts/onivim_sucks/index.html
@@ -13,8 +13,16 @@
13 <body> 13 <body>
14 <div class="posts"> 14 <div class="posts">
15 <div class="post"> 15 <div class="post">
16 <div class="date">02/08 2019</div> 16 <div class="date">
17 <span style="font-size: 2rem; font-weight: 600"> 17 02/08 2019
18 <span class="commit-hash">
19 <a href="https://github.com/nerdypepper/site/blob/master/posts/onivim_sucks.md
20" style="text-decoration: none">
21 681a65f
22 </a>
23 </span>
24 </div>
25 <span class="post-title">
18 Onivim Sucks 26 Onivim Sucks
19 </span> 27 </span>
20 <div class="post-text"> 28 <div class="post-text">
@@ -47,7 +55,7 @@ final price! If you are on the lookout for an editor, I would suggest using
47<a href="https://vim.org">Vim</a>, charity ware that actually works, and costs $100 lesser.</p> 55<a href="https://vim.org">Vim</a>, charity ware that actually works, and costs $100 lesser.</p>
48 56
49 </div> 57 </div>
50 <a href="/index.html" class="post-end-link">��� Back</a> 58 <a href="/" class="post-end-link">��� Back</a>
51 <div class="separator"></div> 59 <div class="separator"></div>
52 </div> 60 </div>
53 </div> 61 </div>
diff --git a/docs/posts/static_sites_with_bash.html b/docs/posts/static_sites_with_bash/index.html
index 5fdfcfe..0605147 100644
--- a/docs/posts/static_sites_with_bash.html
+++ b/docs/posts/static_sites_with_bash/index.html
@@ -13,8 +13,16 @@
13 <body> 13 <body>
14 <div class="posts"> 14 <div class="posts">
15 <div class="post"> 15 <div class="post">
16 <div class="date">23/11 2019</div> 16 <div class="date">
17 <span style="font-size: 2rem; font-weight: 600"> 17 23/11 2019
18 <span class="commit-hash">
19 <a href="https://github.com/nerdypepper/site/blob/master/posts/static_sites_with_bash.md
20" style="text-decoration: none">
21 d1faa7e
22 </a>
23 </span>
24 </div>
25 <span class="post-title">
18 Static Sites With Bash 26 Static Sites With Bash
19 </span> 27 </span>
20 <div class="post-text"> 28 <div class="post-text">
@@ -68,7 +76,7 @@ title-case), and <code>date(1)</code> to add the date to each post
68listing!</p> 76listing!</p>
69 77
70 </div> 78 </div>
71 <a href="/index.html" class="post-end-link">��� Back</a> 79 <a href="/" class="post-end-link">��� Back</a>
72 <div class="separator"></div> 80 <div class="separator"></div>
73 </div> 81 </div>
74 </div> 82 </div>