Skip to content

Commit

Permalink
deploy: d39bd21
Browse files Browse the repository at this point in the history
  • Loading branch information
krwenholz committed May 20, 2024
1 parent 40f50cd commit 35049ab
Show file tree
Hide file tree
Showing 12 changed files with 85 additions and 130 deletions.
4 changes: 2 additions & 2 deletions base.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bootstrap/scss/bootstrap-grid.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bootstrap/scss/bootstrap-reboot.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions bootstrap/scss/bootstrap.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion elasticlunr.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 2 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -111,24 +111,18 @@
<div class="row">
<div class="col">
<p>Hi there! You've reached Kyle Wenholz's homepage. You'll find links and some writing on this site.</p>
<p>Some links:</p>
<h3 id="some-links">Some links:</h3>
<ul>
<li><a href="/projects">Publicly visible projects</a>. The woodworking
section is usually a hit.</li>
<li>My <a href="https://github.com/krwenholz/Resume/blob/master/resume.pdf">handy-dandy resume</a>.</li>
<li><a href="https://www.linkedin.com/in/kyle-wenholz/">LinkedIn</a>, which is allowed to run a bit longer than my ~~one~~two page resume ;)</li>
<li><a href="/readme">My manager README</a>. </li>
<li><a href="/posts">My posts</a>. </li>
</ul>
<p>And some posts!</p>

</div>
</div>

<div class="row">
<div class="col">

</div>
</div>
</div>
</body>
</html>
28 changes: 14 additions & 14 deletions posts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -116,35 +116,35 @@ <h3>2015</h3>

</ul>

<h3>2014</h3>
<h3>2012</h3>

<ul>

<li><a href="http:&#x2F;&#x2F;www.krwenholz.com&#x2F;posts&#x2F;fastmail-carddav&#x2F;">CardDav with Fastmail</a></li>
<li><a href="http:&#x2F;&#x2F;www.krwenholz.com&#x2F;posts&#x2F;interview-ready&#x2F;">Interview Ready</a></li>

<li><a href="http:&#x2F;&#x2F;www.krwenholz.com&#x2F;posts&#x2F;standing-up-in-my-cube&#x2F;">Standing up in my cube</a></li>

<li><a href="http:&#x2F;&#x2F;www.krwenholz.com&#x2F;posts&#x2F;organizing-dotfiles&#x2F;">Organizing Dotfiles</a></li>

<li><a href="http:&#x2F;&#x2F;www.krwenholz.com&#x2F;posts&#x2F;launching-lendingshack&#x2F;">Launching LendingShack</a></li>

<li><a href="http:&#x2F;&#x2F;www.krwenholz.com&#x2F;posts&#x2F;sitting-down-after-standing-up&#x2F;">Sitting down after standing up</a></li>

</ul>

<h3>2013</h3>
<h3>2014</h3>

<ul>

<li><a href="http:&#x2F;&#x2F;www.krwenholz.com&#x2F;posts&#x2F;some-vim-window-tab-and-buffer-commands&#x2F;">Some Vim Window, Tab, and Buffer Commands</a></li>
<li><a href="http:&#x2F;&#x2F;www.krwenholz.com&#x2F;posts&#x2F;fastmail-carddav&#x2F;">CardDav with Fastmail</a></li>

</ul>

<h3>2012</h3>
<h3>2013</h3>

<ul>

<li><a href="http:&#x2F;&#x2F;www.krwenholz.com&#x2F;posts&#x2F;interview-ready&#x2F;">Interview Ready</a></li>

<li><a href="http:&#x2F;&#x2F;www.krwenholz.com&#x2F;posts&#x2F;organizing-dotfiles&#x2F;">Organizing Dotfiles</a></li>

<li><a href="http:&#x2F;&#x2F;www.krwenholz.com&#x2F;posts&#x2F;sitting-down-after-standing-up&#x2F;">Sitting down after standing up</a></li>

<li><a href="http:&#x2F;&#x2F;www.krwenholz.com&#x2F;posts&#x2F;launching-lendingshack&#x2F;">Launching LendingShack</a></li>

<li><a href="http:&#x2F;&#x2F;www.krwenholz.com&#x2F;posts&#x2F;standing-up-in-my-cube&#x2F;">Standing up in my cube</a></li>
<li><a href="http:&#x2F;&#x2F;www.krwenholz.com&#x2F;posts&#x2F;some-vim-window-tab-and-buffer-commands&#x2F;">Some Vim Window, Tab, and Buffer Commands</a></li>

</ul>

Expand Down
20 changes: 8 additions & 12 deletions posts/some-vim-window-tab-and-buffer-commands/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -112,27 +112,23 @@ <h2 id="windows">Windows</h2>
:vsplit <filename optiona></p>
<p>These split your window horizontally or vertically, respectively, and open the
current (or a new file) as a buffer in that new &quot;window&quot;. To navigate you use</p>
<pre style="background-color:#fdf6e3;">
<span style="color:#657b83;">Ctl - w &lt;h,j,k,l&gt;
</span></pre>
<pre><code>Ctl - w &lt;h,j,k,l&gt;
</code></pre>
<p>It's that easy! You just use <strong>Ctl - w</strong> to enter some window command mode and
suddenly your next navigation key moves you a window in that direction. It's
pretty awesome. You can close a window by deleting any buffers it currently
has open. A nice tutorial can be found at <a href="http://www.linux.com/learn/tutorials/442415-vim-tips-using-viewports">linux.com</a>.</p>
<h2 id="buffers">Buffers</h2>
<p>Love 'em! A buffer is basically an instance of an open file. The only
commands I really use are</p>
<pre style="background-color:#fdf6e3;">
<span style="color:#657b83;">:bn
</span></pre>
<pre><code>:bn
</code></pre>
<p>for the next buffer,</p>
<pre style="background-color:#fdf6e3;">
<span style="color:#657b83;">:bp
</span></pre>
<pre><code>:bp
</code></pre>
<p>for the previous buffer, and</p>
<pre style="background-color:#fdf6e3;">
<span style="color:#657b83;">:b&lt;num&gt;
</span></pre>
<pre><code>:b&lt;num&gt;
</code></pre>
<p>to go to the specific buffer number.</p>
<p>I like to use <a href="http://vim.sourceforge.net/scripts/script.php?script_id=159">Mini Buf Explorer</a>
to see my open buffers and make navigation more easy. A nice tutorial for
Expand Down
2 changes: 2 additions & 0 deletions robots.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
User-agent: *
Disallow:
Allow: /
Sitemap: http://www.krwenholz.com/sitemap.xml
2 changes: 1 addition & 1 deletion search/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion search_index.en.js

Large diffs are not rendered by default.

137 changes: 50 additions & 87 deletions sitemap.xml
Original file line number Diff line number Diff line change
@@ -1,90 +1,53 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

<url>
<loc>http://www.krwenholz.com/</loc>

</url>

<url>
<loc>http://www.krwenholz.com/posts/</loc>

</url>

<url>
<loc>http://www.krwenholz.com/posts/fastmail-carddav/</loc>

<lastmod>2014-12-28</lastmod>

</url>

<url>
<loc>http://www.krwenholz.com/posts/interview-ready/</loc>

<lastmod>2012-12-30</lastmod>

</url>

<url>
<loc>http://www.krwenholz.com/posts/launching-lendingshack/</loc>

<lastmod>2012-09-10</lastmod>

</url>

<url>
<loc>http://www.krwenholz.com/posts/organizing-dotfiles/</loc>

<lastmod>2012-10-30</lastmod>

</url>

<url>
<loc>http://www.krwenholz.com/posts/platform-bed/</loc>

<lastmod>2015-10-31</lastmod>

</url>

<url>
<loc>http://www.krwenholz.com/posts/sitting-down-after-standing-up/</loc>

<lastmod>2012-09-10</lastmod>

</url>

<url>
<loc>http://www.krwenholz.com/posts/some-vim-window-tab-and-buffer-commands/</loc>

<lastmod>2013-03-07</lastmod>

</url>

<url>
<loc>http://www.krwenholz.com/posts/standing-up-in-my-cube/</loc>

<lastmod>2012-07-17</lastmod>

</url>

<url>
<loc>http://www.krwenholz.com/projects/</loc>

</url>

<url>
<loc>http://www.krwenholz.com/readme/</loc>

</url>

<url>
<loc>http://www.krwenholz.com/resources/</loc>

</url>

<url>
<loc>http://www.krwenholz.com/search/</loc>

</url>

<url>
<loc>http://www.krwenholz.com/</loc>
</url>
<url>
<loc>http://www.krwenholz.com/posts/</loc>
</url>
<url>
<loc>http://www.krwenholz.com/posts/fastmail-carddav/</loc>
<lastmod>2014-12-28</lastmod>
</url>
<url>
<loc>http://www.krwenholz.com/posts/interview-ready/</loc>
<lastmod>2012-12-30</lastmod>
</url>
<url>
<loc>http://www.krwenholz.com/posts/launching-lendingshack/</loc>
<lastmod>2012-09-10</lastmod>
</url>
<url>
<loc>http://www.krwenholz.com/posts/organizing-dotfiles/</loc>
<lastmod>2012-10-30</lastmod>
</url>
<url>
<loc>http://www.krwenholz.com/posts/platform-bed/</loc>
<lastmod>2015-10-31</lastmod>
</url>
<url>
<loc>http://www.krwenholz.com/posts/sitting-down-after-standing-up/</loc>
<lastmod>2012-09-10</lastmod>
</url>
<url>
<loc>http://www.krwenholz.com/posts/some-vim-window-tab-and-buffer-commands/</loc>
<lastmod>2013-03-07</lastmod>
</url>
<url>
<loc>http://www.krwenholz.com/posts/standing-up-in-my-cube/</loc>
<lastmod>2012-07-17</lastmod>
</url>
<url>
<loc>http://www.krwenholz.com/projects/</loc>
</url>
<url>
<loc>http://www.krwenholz.com/readme/</loc>
</url>
<url>
<loc>http://www.krwenholz.com/resources/</loc>
</url>
<url>
<loc>http://www.krwenholz.com/search/</loc>
</url>
</urlset>

0 comments on commit 35049ab

Please sign in to comment.