Update _site static files

master
Tait Hoyem 3 years ago
parent 6f3772edb4
commit 1d1d13d831

@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Emacspeak Tutorial Resources | 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>
<ul>
<li><a href="/emacspeak-tutorials/loops/">Loops in C</a></li>
<li><a href="/emacspeak-tutorials/pointers/">Pointers in C</a></li>
<li><a href="/emacspeak-tutorials/printing/">Printing in C</a></li>
<li><a href="/emacspeak-tutorials/user-input/">User Input and Variables in C</a></li>
</ul>
</main>
<hr>
<footer>
This page is mirrored on <a href="https://beta.tait.tech/emacspeak-tutorials/">beta.tait.tech</a>.
</footer>
</div>
</body>
</html>

@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Loops in C, an Emacspeak Tutorial | tait.tech</title>
<title>Loops 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">
@ -30,16 +30,27 @@
</header>
<main>
<h1 id="loops-in-c-an-emacspeak-tutorial">Loops in C, an Emacspeak Tutorial</h1>
<h1>Loops in C, an Emacspeak Tutorial</h1>
<p>For loop, while loop! Why all the confusion?</p>
<p>I explain in my own way how loops work using basic C programming techniques to do many things in very few lines.
Hopefully you dont get payed by lines of code because that would be ridiculous.</p>
<p>YouTube link: <a href="https://youtu.be/Q04e_ZekYjE">Loops in C</a></p>
<p>Resources: <a href="/assets/emacspeak-tutorials/loops.zip">Loops in C</a></p>
<ul class="clear-list">
<li>
<p>YouTube video: <a href="https://youtu.be/Q04e_ZekYjE">Loops in C</a>
</li>
<li>
<p>Resources: <a href="/assets/emacspeak-tutorials/loops.zip">Loops in C zip</a>
</li>
<li>
<p>Other Emacspeak C tutorials <a href="/emacspeak-tutorials">Emacspeak Tutorials List</a></p>
</ul>
</main>
<hr>

@ -0,0 +1,65 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pointers 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>Pointers in C, an Emacspeak Tutorial</h1>
<p>Pointers are often seen as this complicated thing,
but really theyre just like a home address.
You can go somewhere to find something specific.
123 Main St. is where Bob lives,
and as long as I know Bob lives there we can say “Deliver groceries to 123 Main St.” and we know this means that Bob will get his groceries.</p>
<p>Hopefully everything is explained well. The resources are as follows:</p>
<ul class="clear-list">
<li>
<p>YouTube video: <a href="https://youtu.be/t3BgDa1p7Qc">Pointers in C</a>
</li>
<li>
<p>Resources: <a href="/assets/emacspeak-tutorials/pointers.zip">Pointers 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/pointers/">beta.tait.tech</a>.
</footer>
</div>
</body>
</html>

@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Printing in C, an Emacspeak tutorial. | tait.tech</title>
<title>Printing 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">
@ -30,19 +30,27 @@
</header>
<main>
<h1 id="an-emacspeak-tutorial-printing-text-with-c">An Emacspeak Tutorial: Printing Text With C</h1>
<h1>Printing in C, an Emacspeak Tutorial</h1>
<p>“Hello World!”</p>
<p>The most famous incantation among programmers and software engineers since it was popularized in the 1990s by Ken Thompson and Dennis Richie.
Today I will explain how to make your own “Hello World!” application in C using the Emacspeak environment for the blind and visually impaired.</p>
<ul>
<li>Link to a YouTube video: <a href="https://youtu.be/BP28hVVhq4A">Printing in C</a></li>
<li>Link to resources zip file: <a href="/assets/emacspeak-tutorials/printing.zip">Printing in C</a></li>
<ul class="clear-list">
<li>
<p>YouTube video: <a href="https://youtu.be/BP28hVVhq4A">Printing in C</a>
</li>
<li>
<p>Resources: <a href="/assets/emacspeak-tutorials/printing.zip">Printing in C zip</a>
</li>
<li>
<p>Other Emacspeak C tutorials <a href="/emacspeak-tutorials">Emacspeak Tutorials List</a></p>
</ul>
</main>
<hr>
<footer>

@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>User Input and Variables in C, an Emacspeak Tutorial | tait.tech</title>
<title>User Input and Variables 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">
@ -30,15 +30,26 @@
</header>
<main>
<h1 id="user-input-and-variables-in-c-an-emacspeak-tutorial">User Input and Variables in C, an Emacspeak Tutorial</h1>
<h1>User Input and Variables in C, an Emacspeak Tutorial</h1>
<p>How do you interact with a user in C?</p>
<p>Check out my emacspeak tutorial on how to get user input of numbers (like ages) and strings (like names and addresses).</p>
<p>YouTube video: <a href="https://youtu.be/4X00NFQjwmE">User Input in C</a></p>
<p>Resources: <a href="/assets/emacspeak-tutorials/variables.zip">User Input in C</a></p>
<ul class="clear-list">
<li>
<p>YouTube video: <a href="https://youtu.be/4X00NFQjwmE">User Input and Variables in C</a>
</li>
<li>
<p>Resources: <a href="/assets/emacspeak-tutorials/variables.zip">User Input and Variables in C zip</a>
</li>
<li>
<p>Other Emacspeak C tutorials <a href="/emacspeak-tutorials">Emacspeak Tutorials List</a></p>
</ul>
</main>
<hr>

@ -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-05T21:13:10-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-05T21:58:02-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;

@ -1,6 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/loops/</loc>
<lastmod>2021-05-05T21:58:02-06:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/emacspeak-tutorials/pointers/</loc>
<lastmod>2021-05-05T21:58:02-06:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/emacspeak-tutorials/printing/</loc>
<lastmod>2021-05-05T21:58:02-06:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/emacspeak-tutorials/user-input/</loc>
<lastmod>2021-05-05T21:58:02-06:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/2020/01/22/padding-and-margin/</loc>
<lastmod>2020-01-22T00:00:00-07:00</lastmod>
</url>
@ -133,6 +149,9 @@
<loc>http://localhost:4000/contact/</loc>
</url>
<url>
<loc>http://localhost:4000/emacspeak-tutorials/</loc>
</url>
<url>
<loc>http://localhost:4000/cover-letter-vcc/</loc>
</url>
<url>
@ -150,13 +169,4 @@
<url>
<loc>http://localhost:4000/links/</loc>
</url>
<url>
<loc>http://localhost:4000/emacspeak-tutorials/loops/</loc>
</url>
<url>
<loc>http://localhost:4000/emacspeak-tutorials/printing/</loc>
</url>
<url>
<loc>http://localhost:4000/emacspeak-tutorials/user-input/</loc>
</url>
</urlset>

Loading…
Cancel
Save