<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Daniel Correia</title><link>https://danielcorreia.org/</link><description>Recent content on Daniel Correia</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Mon, 23 Oct 2023 00:00:00 +0000</lastBuildDate><atom:link href="https://danielcorreia.org/index.xml" rel="self" type="application/rss+xml"/><item><title>Projects</title><link>https://danielcorreia.org/projects/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://danielcorreia.org/projects/</guid><description/></item><item><title>About</title><link>https://danielcorreia.org/about/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://danielcorreia.org/about/</guid><description/></item><item><title>Contact</title><link>https://danielcorreia.org/contact/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://danielcorreia.org/contact/</guid><description/></item><item><title>What do you want to make the computer do?</title><link>https://danielcorreia.org/blog/what_do_you_want_to_make_the_computer_do/</link><pubDate>Mon, 23 Oct 2023 00:00:00 +0000</pubDate><guid>https://danielcorreia.org/blog/what_do_you_want_to_make_the_computer_do/</guid><description>&lt;p&gt;Over the last few months I have been digging into Rust (the programming language) and the more I use it the more time I want to invest in it.
This is not a post about Rust but rather the thought process on getting started with a new programming language (or multiple languages) in a world where these languages are driving technologies like cloud services, blockchains and artificial intelligence.
We live in a time where the frontier of modern technology is looking to solve problems that no longer appear to be solvable by a single person, so in learning a new language we are presented with a spectrum of opportunities that lie somewhere between programming &amp;ldquo;hello-world&amp;rdquo; and a distributed blockchain.
When learning a programming language, there comes a time when you have to eventually program.
In doing so it is important to choose a task/project that is within the realm of possibility so as to not dishearten and hinder learning progress, but also provide a sense of accomplishment that programming another version of grep simply will not provide.&lt;/p&gt;</description></item><item><title>Ownership and Borrowing in Rust</title><link>https://danielcorreia.org/til/rust/ownership/</link><pubDate>Tue, 12 Sep 2023 10:52:47 +0200</pubDate><guid>https://danielcorreia.org/til/rust/ownership/</guid><description>&lt;h1 id="ownership-and-borrowing-in-rust"&gt;Ownership and Borrowing in Rust&lt;/h1&gt;
&lt;h2 id="ownership"&gt;Ownership&lt;/h2&gt;
&lt;p&gt;The Book&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt; states the following as the three rules of ownership in Rust:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Each value in Rust has an owner.&lt;/li&gt;
&lt;li&gt;There can only be one owner at a time.&lt;/li&gt;
&lt;li&gt;When the owner goes out of scope, the value will be dropped.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Going out of scope essentially means coming to the end of the trailing curly brace &amp;lsquo;}&amp;rsquo; of the one in which a value was introduced in.&lt;/p&gt;</description></item></channel></rss>