This commit is contained in:
CherryKitten 2024-03-09 13:39:27 +01:00
parent 4ae7001974
commit 64d678afa3
Signed by: sammy
GPG key ID: 98D8F75FB0658276
10 changed files with 20 additions and 20 deletions

View file

@ -1,5 +1,5 @@
+++ +++
title = "Learning Rust Part 1: A kitten's guide to Options and Results" title = "Learning Rust: A kitten's guide to Options and Results"
date = 2023-02-25 date = 2023-02-25
[taxonomies] [taxonomies]
tags=["Rust", "programming", "code", "learning"] tags=["Rust", "programming", "code", "learning"]

View file

@ -138,9 +138,9 @@ remember to stay hydrated, and have a lovely <code>{time of day}</code>!</p>
</div> </div>
<div class="pagination__buttons"> <div class="pagination__buttons">
<span class="button previous"> <span class="button previous">
<a href="https://cherrykitten.dev/blog/rust-1-options-results/"> <a href="https://cherrykitten.dev/blog/rust-options-results/">
<span class="button__icon"></span>&nbsp; <span class="button__icon"></span>&nbsp;
<span class="button__text">Learning Rust Part 1: A kitten&#x27;s guide to Options and Results</span> <span class="button__text">Learning Rust: A kitten&#x27;s guide to Options and Results</span>
</a> </a>
</span> </span>

View file

@ -106,7 +106,7 @@ up with a completely different being.</p>
<div class="post on-list"> <div class="post on-list">
<h1 class="post-title"><a href="https://cherrykitten.dev/blog/rust-1-options-results/">Learning Rust Part 1: A kitten&#x27;s guide to Options and Results</a></h1> <h1 class="post-title"><a href="https://cherrykitten.dev/blog/rust-options-results/">Learning Rust: A kitten&#x27;s guide to Options and Results</a></h1>
<div class="post-meta-inline"> <div class="post-meta-inline">
<span class="post-date"> <span class="post-date">
@ -148,7 +148,7 @@ own ongoing learning process.</p>
</div> </div>
<div> <div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji --> <!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://cherrykitten.dev/blog/rust-1-options-results/"> <a class="read-more button" href="https://cherrykitten.dev/blog/rust-options-results/">
<span class="button__text">Read more</span>&nbsp; <span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span> <span class="button__icon">&#8617;&#xFE0E;</span>
</a> </a>

View file

@ -2,7 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<title>Learning Rust Part 1: A kitten&#x27;s guide to Options and Results | CherryKitten</title> <title>Learning Rust: A kitten&#x27;s guide to Options and Results | CherryKitten</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8"> <meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
@ -58,7 +58,7 @@
<div class="post"> <div class="post">
<h1 class="post-title"><a href="https://cherrykitten.dev/blog/rust-1-options-results/">Learning Rust Part 1: A kitten&#x27;s guide to Options and Results</a></h1> <h1 class="post-title"><a href="https://cherrykitten.dev/blog/rust-options-results/">Learning Rust: A kitten&#x27;s guide to Options and Results</a></h1>
<div class="post-meta-inline"> <div class="post-meta-inline">
<span class="post-date"> <span class="post-date">

View file

@ -24,12 +24,12 @@ up with a completely different being.&lt;&#x2F;p&gt;
</description> </description>
</item> </item>
<item> <item>
<title>Learning Rust Part 1: A kitten&#x27;s guide to Options and Results</title> <title>Learning Rust: A kitten&#x27;s guide to Options and Results</title>
<pubDate>Sat, 25 Feb 2023 00:00:00 +0000</pubDate> <pubDate>Sat, 25 Feb 2023 00:00:00 +0000</pubDate>
<author>Unknown</author> <author>Unknown</author>
<link>https://cherrykitten.dev/blog/rust-1-options-results/</link> <link>https://cherrykitten.dev/blog/rust-options-results/</link>
<guid>https://cherrykitten.dev/blog/rust-1-options-results/</guid> <guid>https://cherrykitten.dev/blog/rust-options-results/</guid>
<description xml:base="https://cherrykitten.dev/blog/rust-1-options-results/">&lt;h3 id=&quot;to-unwrap-or-not-to-unwrap-that-is-the-question&quot;&gt;To unwrap() or not to unwrap(), that is the question:&lt;&#x2F;h3&gt; <description xml:base="https://cherrykitten.dev/blog/rust-options-results/">&lt;h3 id=&quot;to-unwrap-or-not-to-unwrap-that-is-the-question&quot;&gt;To unwrap() or not to unwrap(), that is the question:&lt;&#x2F;h3&gt;
&lt;p&gt;So I&#x27;ve finally given in and started to learn Rust last month. It&#x27;s a really cool programming language, &lt;p&gt;So I&#x27;ve finally given in and started to learn Rust last month. It&#x27;s a really cool programming language,
with some interesting differences to what I&#x27;ve used before. (JavaScript and Python, mostly)&lt;&#x2F;p&gt; with some interesting differences to what I&#x27;ve used before. (JavaScript and Python, mostly)&lt;&#x2F;p&gt;
&lt;p&gt;There are some really pawesome guides out there, &lt;a href=&quot;https:&#x2F;&#x2F;doc.rust-lang.org&#x2F;book&#x2F;&quot;&gt;&amp;quot;The Rust programming language&amp;quot;&lt;&#x2F;a&gt; is &lt;p&gt;There are some really pawesome guides out there, &lt;a href=&quot;https:&#x2F;&#x2F;doc.rust-lang.org&#x2F;book&#x2F;&quot;&gt;&amp;quot;The Rust programming language&amp;quot;&lt;&#x2F;a&gt; is

View file

@ -21,7 +21,7 @@
<loc>https://cherrykitten.dev/blog/page/1/</loc> <loc>https://cherrykitten.dev/blog/page/1/</loc>
</url> </url>
<url> <url>
<loc>https://cherrykitten.dev/blog/rust-1-options-results/</loc> <loc>https://cherrykitten.dev/blog/rust-options-results/</loc>
<lastmod>2023-02-25</lastmod> <lastmod>2023-02-25</lastmod>
</url> </url>
<url> <url>

View file

@ -70,9 +70,9 @@ Tag: code | CherryKitten</title>
<ul><li class="post-list"> <ul><li class="post-list">
<a href="https://cherrykitten.dev/blog/rust-1-options-results/"> <a href="https://cherrykitten.dev/blog/rust-options-results/">
<span class="post-date">2023-02-25</span> <span class="post-date">2023-02-25</span>
:: <span class="post-list-title">Learning Rust Part 1: A kitten&#x27;s guide to Options and Results</span></a> :: <span class="post-list-title">Learning Rust: A kitten&#x27;s guide to Options and Results</span></a>
<span class="post-tags-inline"> <span class="post-tags-inline">
:: ::

View file

@ -70,9 +70,9 @@ Tag: learning | CherryKitten</title>
<ul><li class="post-list"> <ul><li class="post-list">
<a href="https://cherrykitten.dev/blog/rust-1-options-results/"> <a href="https://cherrykitten.dev/blog/rust-options-results/">
<span class="post-date">2023-02-25</span> <span class="post-date">2023-02-25</span>
:: <span class="post-list-title">Learning Rust Part 1: A kitten&#x27;s guide to Options and Results</span></a> :: <span class="post-list-title">Learning Rust: A kitten&#x27;s guide to Options and Results</span></a>
<span class="post-tags-inline"> <span class="post-tags-inline">
:: ::

View file

@ -70,9 +70,9 @@ Tag: programming | CherryKitten</title>
<ul><li class="post-list"> <ul><li class="post-list">
<a href="https://cherrykitten.dev/blog/rust-1-options-results/"> <a href="https://cherrykitten.dev/blog/rust-options-results/">
<span class="post-date">2023-02-25</span> <span class="post-date">2023-02-25</span>
:: <span class="post-list-title">Learning Rust Part 1: A kitten&#x27;s guide to Options and Results</span></a> :: <span class="post-list-title">Learning Rust: A kitten&#x27;s guide to Options and Results</span></a>
<span class="post-tags-inline"> <span class="post-tags-inline">
:: ::

View file

@ -70,9 +70,9 @@ Tag: Rust | CherryKitten</title>
<ul><li class="post-list"> <ul><li class="post-list">
<a href="https://cherrykitten.dev/blog/rust-1-options-results/"> <a href="https://cherrykitten.dev/blog/rust-options-results/">
<span class="post-date">2023-02-25</span> <span class="post-date">2023-02-25</span>
:: <span class="post-list-title">Learning Rust Part 1: A kitten&#x27;s guide to Options and Results</span></a> :: <span class="post-list-title">Learning Rust: A kitten&#x27;s guide to Options and Results</span></a>
<span class="post-tags-inline"> <span class="post-tags-inline">
:: ::