Skip to content

Commit

Permalink
Fix hugo build
Browse files Browse the repository at this point in the history
  • Loading branch information
renegrob committed Nov 13, 2023
1 parent feb1829 commit 41374b3
Show file tree
Hide file tree
Showing 15 changed files with 840 additions and 14 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/renegrob/renegrob.github.io

go 1.21.4
go 1.21

require github.com/halogenica/beautifulhugo v0.0.0-20231110164551-08cfb448c8fd // indirect
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github.com/halogenica/beautifulhugo v0.0.0-20231110164551-08cfb448c8fd h1:Sn2KoMxPYBwmofWTqbVQ/26vPpRnujB0dcehBVHXY9E=
github.com/halogenica/beautifulhugo v0.0.0-20231110164551-08cfb448c8fd/go.mod h1:4dwHt6njigk+fr9W3Bg+OflL4LKzkjbXAULXvr3mYLs=
2 changes: 1 addition & 1 deletion public/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ <h1 class="error-emoji"></h1>

&nbsp;&bull;&nbsp;&copy;

2021
2022



Expand Down
2 changes: 1 addition & 1 deletion public/categories/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ <h1>Categories</h1>

&nbsp;&bull;&nbsp;&copy;

2021
2022



Expand Down
79 changes: 78 additions & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,83 @@ <h1>René Grob&#39;s Blog</h1>
<div class="posts-list">


<article class="post-preview">
<a href="https://renegrob.github.io/posts/curl-show-headers/">
<h2 class="post-title">How to see HTTP headers and raw output during debugging with cURL</h2>



</a>

<p class="post-meta">
<span class="post-meta">


<i class="fas fa-calendar"></i>&nbsp;Posted on July 19, 2022





&nbsp;|&nbsp;<i class="fas fa-user"></i>&nbsp;



</span>


</p>
<div class="post-entry">

<p>When debugging, it is often helpful to see the returned HTTP headers and the raw output of a curl request. This can be done using the following command:</p>
<pre tabindex="0"><code>curl -X GET -is -o /dev/stdout https://myhost
</code></pre><p>If you need information about the connection establishment and TLS handshake, you can add the -v flag to the command:</p>
<pre tabindex="0"><code>curl -X GET -isv -o /dev/stdout https://myhost
</code></pre>

</div>



</article>

<article class="post-preview">
<a href="https://renegrob.github.io/posts/gradle-wrapper/">
<h2 class="post-title">Call Gradle Wrapper from nested Directory</h2>



</a>

<p class="post-meta">
<span class="post-meta">


<i class="fas fa-calendar"></i>&nbsp;Posted on October 29, 2021





&nbsp;|&nbsp;<i class="fas fa-user"></i>&nbsp;



</span>


</p>
<div class="post-entry">

<p>The following script will allow you to use <code>gw</code> instead of <code>./gradlew</code> in any subdirectory. <code>gw</code> will go up the directory hierarchy until it finds <code>gradlew</code> or a gradle settings file.</p>
<a href="https://renegrob.github.io/posts/gradle-wrapper/" class="post-read-more">[Read More]</a>

</div>



</article>

<article class="post-preview">
<a href="https://renegrob.github.io/posts/bash-wait-for-process/">
<h2 class="post-title">How to use echo $! to wait for a background process to finish</h2>
Expand Down Expand Up @@ -316,7 +393,7 @@ <h2 class="post-title">How to create a random String with Bash</h2>

&nbsp;&bull;&nbsp;&copy;

2021
2022



Expand Down
18 changes: 17 additions & 1 deletion public/index.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,24 @@
<description>Recent content on René Grob&#39;s Blog</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Wed, 12 May 2021 20:07:57 +0100</lastBuildDate>
<lastBuildDate>Tue, 19 Jul 2022 20:27:04 +0100</lastBuildDate>
<atom:link href="https://renegrob.github.io/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>How to see HTTP headers and raw output during debugging with cURL</title>
<link>https://renegrob.github.io/posts/curl-show-headers/</link>
<pubDate>Tue, 19 Jul 2022 20:27:04 +0100</pubDate>
<guid>https://renegrob.github.io/posts/curl-show-headers/</guid>
<description>When debugging, it is often helpful to see the returned HTTP headers and the raw output of a curl request. This can be done using the following command:
curl -X GET -is -o /dev/stdout https://myhost If you need information about the connection establishment and TLS handshake, you can add the -v flag to the command:
curl -X GET -isv -o /dev/stdout https://myhost </description>
</item>
<item>
<title>Call Gradle Wrapper from nested Directory</title>
<link>https://renegrob.github.io/posts/gradle-wrapper/</link>
<pubDate>Fri, 29 Oct 2021 20:24:48 +0100</pubDate>
<guid>https://renegrob.github.io/posts/gradle-wrapper/</guid>
<description>&lt;p&gt;The following script will allow you to use &lt;code&gt;gw&lt;/code&gt; instead of &lt;code&gt;./gradlew&lt;/code&gt; in any subdirectory. &lt;code&gt;gw&lt;/code&gt; will go up the directory hierarchy until it finds &lt;code&gt;gradlew&lt;/code&gt; or a gradle settings file.&lt;/p&gt;</description>
</item>
<item>
<title>How to use echo $! to wait for a background process to finish</title>
<link>https://renegrob.github.io/posts/bash-wait-for-process/</link>
Expand Down
6 changes: 5 additions & 1 deletion public/posts/bash-wait-for-process/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,10 @@ <h3 id="here-is-an-example">Here is an example:</h3>
</li>


<li class="next">
<a href="https://renegrob.github.io/posts/gradle-wrapper/" data-toggle="tooltip" data-placement="top" title="Call Gradle Wrapper from nested Directory">Next Post &rarr;</a>
</li>

</ul>


Expand All @@ -268,7 +272,7 @@ <h3 id="here-is-an-example">Here is an example:</h3>

&nbsp;&bull;&nbsp;&copy;

2021
2022



Expand Down
2 changes: 1 addition & 1 deletion public/posts/create-random-string-with-bash/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ <h1>How to create a random String with Bash</h1>

&nbsp;&bull;&nbsp;&copy;

2021
2022



Expand Down
Loading

0 comments on commit 41374b3

Please sign in to comment.