Update _site static file

master
Tait Hoyem 3 years ago
parent 592dbefcd8
commit 334674cf50

@ -42,6 +42,8 @@
<li><a href="/emacspeak-tutorials/printing/">Printing in C</a></li>
<li><a href="/emacspeak-tutorials/structs/">Structs in C</a></li>
<li><a href="/emacspeak-tutorials/user-input/">User Input and Variables in C</a></li>
</ul>

@ -0,0 +1,65 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Structs in C | tait.tech</title>
<link rel="stylesheet" href="/assets/css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Tait Hoyem">
<meta name="keywords" content="">
<meta name="description" content="">
</head>
<body>
<div id="wrapper">
<header>
<h1>tait.tech</h1>
<nav>
<a href="/" class="nav-link" >Home</a>
<a href="/blog/" class="nav-link" >Blog</a>
<a href="/ideas/" class="nav-link" >Ideas</a>
<a href="/links/" class="nav-link" >Links</a>
<a href="https://github.com/TTWNO/" class="nav-link" target="_blank" rel="noopener noreferrer" >Github</a>
</nav>
</header>
<main>
<h1>Structs in C, an Emacspeak Tutorial</h1>
<p>Structs are a way of grouping related data together.
Think of a struct the same way your would any other noun.
They often have many individual attributes that combine to make that thing.
For example, a student may have a first name, last name, student ID, GPA, list of classes, etc.
In this tutorial I use a very trimmed down version of what a structure generally contains to make the point without overwhelming you.</p>
<p>Hopefully it helps. Let me know about any improvments.</p>
<ul class="clear-list">
<li>
<p>YouTube video: <a href="https://youtu.be/SaUnC_Ofysw">Structs in C</a>
</li>
<li>
<p>Resources: <a href="/assets/emacspeak-tutorials/structs.zip">Structs in C zip</a>
</li>
<li>
<p>Other Emacspeak C tutorials <a href="/emacspeak-tutorials">Emacspeak Tutorials List</a></p>
</ul>
</main>
<hr>
<footer>
This page is mirrored on <a href="https://beta.tait.tech/emacspeak-tutorials/structs/">beta.tait.tech</a>.
</footer>
</div>
</body>
</html>

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.1.1">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2021-05-13T14:59:04-06:00</updated><id>http://localhost:4000/feed.xml</id><entry><title type="html">UEFI Development On x86 With EDK2</title><link href="http://localhost:4000/2021/04/18/uefi-development-environment/" rel="alternate" type="text/html" title="UEFI Development On x86 With EDK2" /><published>2021-04-18T00:00:00-06:00</published><updated>2021-04-18T00:00:00-06:00</updated><id>http://localhost:4000/2021/04/18/uefi-development-environment</id><content type="html" xml:base="http://localhost:4000/2021/04/18/uefi-development-environment/">&lt;p&gt;I made this blog so I could remember how to do stuff that had instructions spread around the internet.
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.1.1">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2021-05-16T20:36:19-06:00</updated><id>http://localhost:4000/feed.xml</id><entry><title type="html">UEFI Development On x86 With EDK2</title><link href="http://localhost:4000/2021/04/18/uefi-development-environment/" rel="alternate" type="text/html" title="UEFI Development On x86 With EDK2" /><published>2021-04-18T00:00:00-06:00</published><updated>2021-04-18T00:00:00-06:00</updated><id>http://localhost:4000/2021/04/18/uefi-development-environment</id><content type="html" xml:base="http://localhost:4000/2021/04/18/uefi-development-environment/">&lt;p&gt;I made this blog so I could remember how to do stuff that had instructions spread around the internet.
So here is how I setup my environment for developing EFI applications.&lt;/p&gt;
&lt;h2 id=&quot;requirements&quot;&gt;Requirements&lt;/h2&gt;

@ -2,27 +2,31 @@
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://localhost:4000/emacspeak-tutorials/arrays/</loc>
<lastmod>2021-05-13T14:59:04-06:00</lastmod>
<lastmod>2021-05-16T20:36:19-06:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/emacspeak-tutorials/functions/</loc>
<lastmod>2021-05-13T14:59:04-06:00</lastmod>
<lastmod>2021-05-16T20:36:19-06:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/emacspeak-tutorials/loops/</loc>
<lastmod>2021-05-13T14:59:04-06:00</lastmod>
<lastmod>2021-05-16T20:36:19-06:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/emacspeak-tutorials/pointers/</loc>
<lastmod>2021-05-13T14:59:04-06:00</lastmod>
<lastmod>2021-05-16T20:36:19-06:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/emacspeak-tutorials/printing/</loc>
<lastmod>2021-05-13T14:59:04-06:00</lastmod>
<lastmod>2021-05-16T20:36:19-06:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/emacspeak-tutorials/structs/</loc>
<lastmod>2021-05-16T20:36:19-06:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/emacspeak-tutorials/user-input/</loc>
<lastmod>2021-05-13T14:59:04-06:00</lastmod>
<lastmod>2021-05-16T20:36:19-06:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/2020/01/22/padding-and-margin/</loc>

Loading…
Cancel
Save