<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Still under construction</title>
		<link>https://keeno.xyz/</link>
		<description>Recent content on Still under construction</description>
		<generator>Hugo</generator>
		<language>en-us</language>
		
		
		
			<copyright>&lt;a href=&#34;https://creativecommons.org/licenses/by-nc/4.0/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;CC BY-NC 4.0&lt;/a&gt;</copyright>
		
		
			<lastBuildDate>Sun, 28 Sep 2014 00:00:00 +0000</lastBuildDate>
		
			<atom:link href="https://keeno.xyz/index.xml" rel="self" type="application/rss+xml" />
			<item>
				<title>Creating a New Theme</title>
				<link>https://keeno.xyz/posts/2014/09/creating-a-new-theme/</link>
				<pubDate>Sun, 28 Sep 2014 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/posts/2014/09/creating-a-new-theme/</guid>
				<description>&lt;h2 id=&#34;introduction&#34;&gt;Introduction&lt;/h2&gt;&#xA;&lt;p&gt;This tutorial will show you how to create a simple theme in Hugo. I assume that you are familiar with HTML, the bash command line, and that you are comfortable using Markdown to format content. I&amp;rsquo;ll explain how Hugo uses templates and how you can organize your templates to create a theme. I won&amp;rsquo;t cover using CSS to style your theme.&lt;/p&gt;&#xA;&lt;p&gt;We&amp;rsquo;ll start with creating a new site with a very basic template. Then we&amp;rsquo;ll add in a few pages and posts. With small variations on that, you will be able to create many different types of web sites.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Migrate to Hugo from Jekyll</title>
				<link>https://keeno.xyz/posts/2014/03/migrate-to-hugo-from-jekyll/</link>
				<pubDate>Mon, 10 Mar 2014 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/posts/2014/03/migrate-to-hugo-from-jekyll/</guid>
				<description>&lt;h2 id=&#34;move-static-content-to-static&#34;&gt;Move static content to &lt;code&gt;static&lt;/code&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Jekyll has a rule that any directory not starting with &lt;code&gt;_&lt;/code&gt; will be copied as-is to the &lt;code&gt;_site&lt;/code&gt; output. Hugo keeps all static content under &lt;code&gt;static&lt;/code&gt;. You should therefore move it all there.&#xA;With Jekyll, something that looked like&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;▾ &amp;lt;root&amp;gt;/&#xA;    ▾ images/&#xA;        logo.png&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;should become&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;▾ &amp;lt;root&amp;gt;/&#xA;    ▾ static/&#xA;        ▾ images/&#xA;            logo.png&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Additionally, you&amp;rsquo;ll want any files that should reside at the root (such as &lt;code&gt;CNAME&lt;/code&gt;) to be moved to &lt;code&gt;static&lt;/code&gt;.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Création d&#39;un nouveau thème</title>
				<link>https://keeno.xyz/posts/2014/09/cr%C3%A9ation-dun-nouveau-th%C3%A8me/</link>
				<pubDate>Sun, 28 Sep 2014 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/posts/2014/09/cr%C3%A9ation-dun-nouveau-th%C3%A8me/</guid>
				<description>&lt;h2 id=&#34;introduction&#34;&gt;Introduction&lt;/h2&gt;&#xA;&lt;p&gt;Ce tutoriel vous montrera comment créer un thème simple pour Hugo. Je suppose que vous êtes familier avec HTML, la ligne de commande bash, et que vous êtes à l&amp;rsquo;aise avec Markdown pour formater le contenu. Je vais expliquer comment Hugo utilise des modèles et comment vous pouvez organiser vos modèles pour créer un thème. Je ne couvrirai pas l&amp;rsquo;utilisation de CSS pour styliser votre thème.&lt;/p&gt;&#xA;&lt;p&gt;Nous allons commencer par créer un nouveau site avec un modèle très basique. Ensuite, nous ajouterons quelques pages et des publications. Avec de petites variations, vous pourrez créer de nombreux types de sites web.&lt;/p&gt;</description>
			</item>
			<item>
				<title>(Hu)go Template Primer</title>
				<link>https://keeno.xyz/posts/2014/04/hugo-template-primer/</link>
				<pubDate>Wed, 02 Apr 2014 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/posts/2014/04/hugo-template-primer/</guid>
				<description>&lt;p&gt;Hugo uses the excellent &lt;a href=&#34;https://golang.org/&#34;&gt;Go&lt;/a&gt; &lt;a href=&#34;https://golang.org/pkg/html/template/&#34;&gt;html/template&lt;/a&gt; library for&#xA;its template engine. It is an extremely lightweight engine that provides a very&#xA;small amount of logic. In our experience that it is just the right amount of&#xA;logic to be able to create a good static website. If you have used other&#xA;template systems from different languages or frameworks you will find a lot of&#xA;similarities in Go templates.&lt;/p&gt;&#xA;&lt;p&gt;This document is a brief primer on using Go templates. The &lt;a href=&#34;https://golang.org/pkg/html/template/&#34;&gt;Go docs&lt;/a&gt;&#xA;provide more details.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Débuter avec Hugo</title>
				<link>https://keeno.xyz/posts/2014/04/d%C3%A9buter-avec-hugo/</link>
				<pubDate>Wed, 02 Apr 2014 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/posts/2014/04/d%C3%A9buter-avec-hugo/</guid>
				<description>&lt;h2 id=&#34;étape-1-installer-hugo&#34;&gt;Étape 1. Installer Hugo&lt;/h2&gt;&#xA;&lt;p&gt;Allez sur la page de téléchargements de&#xA;&lt;a href=&#34;https://github.com/spf13/hugo/releases&#34;&gt;hugo&lt;/a&gt; et téléchargez la version&#xA;appropriée à votre système d&amp;rsquo;exploitation et votre architecture.&lt;/p&gt;&#xA;&lt;p&gt;Sauvegardez le fichier téléchargé à un endroit précis, afin de l&amp;rsquo;utiliser dans&#xA;l&amp;rsquo;étape suivante.&lt;/p&gt;&#xA;&lt;p&gt;Des informations plus complètes sont disponibles sur la page&#xA;&lt;a href=&#34;https://keeno.xyz/overview/installing/&#34;&gt;installing hugo&lt;/a&gt;&lt;/p&gt;</description>
			</item>
			<item>
				<title>Getting Started with Hugo</title>
				<link>https://keeno.xyz/posts/2014/04/getting-started-with-hugo/</link>
				<pubDate>Wed, 02 Apr 2014 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/posts/2014/04/getting-started-with-hugo/</guid>
				<description>&lt;h2 id=&#34;step-1-install-hugo&#34;&gt;Step 1. Install Hugo&lt;/h2&gt;&#xA;&lt;p&gt;Go to &lt;a href=&#34;https://github.com/spf13/hugo/releases&#34;&gt;Hugo releases&lt;/a&gt; and download the&#xA;appropriate version for your OS and architecture.&lt;/p&gt;&#xA;&lt;p&gt;Save it somewhere specific as we will be using it in the next step.&lt;/p&gt;&#xA;&lt;p&gt;More complete instructions are available at &lt;a href=&#34;https://gohugo.io/getting-started/installing/&#34;&gt;Install Hugo&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;step-2-build-the-docs&#34;&gt;Step 2. Build the Docs&lt;/h2&gt;&#xA;&lt;p&gt;Hugo has its own example site which happens to also be the documentation site&#xA;you are reading right now.&lt;/p&gt;&#xA;&lt;p&gt;Follow the following steps:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Clone the &lt;a href=&#34;http://github.com/spf13/hugo&#34;&gt;Hugo repository&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;Go into the repo&lt;/li&gt;&#xA;&lt;li&gt;Run hugo in server mode and build the docs&lt;/li&gt;&#xA;&lt;li&gt;Open your browser to http://localhost:1313&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;Corresponding pseudo commands:&lt;/p&gt;</description>
			</item>
			<item>
				<title>Introduction aux modèles (Hu)go</title>
				<link>https://keeno.xyz/posts/2014/04/introduction-aux-mod%C3%A8les-hugo/</link>
				<pubDate>Wed, 02 Apr 2014 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/posts/2014/04/introduction-aux-mod%C3%A8les-hugo/</guid>
				<description>&lt;p&gt;Hugo utilise l&amp;rsquo;excellente librairie &lt;a href=&#34;http://golang.org/&#34;&gt;go&lt;/a&gt; &lt;a href=&#34;http://golang.org/pkg/html/template/&#34;&gt;html/template&lt;/a&gt; pour&#xA;son moteur de modèles. c&amp;rsquo;est un moteur extrêmement léger qui offre un très petit&#xA;nombre de fonctions logiques. À notre expérience, c&amp;rsquo;est juste ce qu&amp;rsquo;il faut pour&#xA;créer un bon site web statique. Si vous avez déjà utilisé d&amp;rsquo;autre moteurs de&#xA;modèles pour différents langages ou frameworks, vous allez retrouver beaucoup de&#xA;similitudes avec les modèles go.&lt;/p&gt;&#xA;&lt;p&gt;Ce document est une introduction sur l&amp;rsquo;utilisation de Go templates. La&#xA;&lt;a href=&#34;http://golang.org/pkg/html/template/&#34;&gt;documentation go&lt;/a&gt; fourni plus de détails.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Migrer vers Hugo depuis Jekyll</title>
				<link>https://keeno.xyz/posts/2014/03/migrer-vers-hugo-depuis-jekyll/</link>
				<pubDate>Mon, 10 Mar 2014 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/posts/2014/03/migrer-vers-hugo-depuis-jekyll/</guid>
				<description>&lt;h2 id=&#34;déplacez-le-contenu-statique-vers-static&#34;&gt;Déplacez le contenu statique vers &lt;code&gt;static&lt;/code&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Jekyll a une règle comme quoi tout répertoire qui ne commence pas par &lt;code&gt;_&lt;/code&gt; sera&#xA;copié tel-quel dans le répertoire &lt;code&gt;_site&lt;/code&gt;. Hugo garde tout le contenu statique&#xA;dans le répertoire &lt;code&gt;static&lt;/code&gt;. Vous devez donc déplacer tout ce type de contenu&#xA;là-dedans. Avec Jekylll, l&amp;rsquo;arborescence ressemblant à ceci :&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;▾ &amp;lt;root&amp;gt;/&#xA;    ▾ images/&#xA;        logo.png&#xA;&lt;/code&gt;&lt;/pre&gt;</description>
			</item>
			<item>
				<title>Creating 3Blue1Brown-Inspired Video Resources for USYD Aerodynamics 1</title>
				<link>https://keeno.xyz/projects/extracurricular/teaching_video/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/projects/extracurricular/teaching_video/</guid>
				<description>&lt;h2 id=&#34;context&#34;&gt;Context&lt;/h2&gt;&#xA;&lt;h2 id=&#34;methodology&#34;&gt;Methodology&lt;/h2&gt;&#xA;&lt;h2 id=&#34;results&#34;&gt;Results&lt;/h2&gt;</description>
			</item>
			<item>
				<title>Designing and Evaluating an Autonomous VTOL Tilt-Rotor Aircraft (AERO4460)</title>
				<link>https://keeno.xyz/projects/intracurricular/vtol/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/projects/intracurricular/vtol/</guid>
				<description>&lt;h2 id=&#34;context&#34;&gt;Context&lt;/h2&gt;&#xA;&lt;h2 id=&#34;methodology&#34;&gt;Methodology&lt;/h2&gt;&#xA;&lt;h2 id=&#34;results&#34;&gt;Results&lt;/h2&gt;</description>
			</item>
			<item>
				<title>Evaluating a Machine Learning Trend Factor using 500&#43; Cryptocurrencies</title>
				<link>https://keeno.xyz/projects/extracurricular/ctrend/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/projects/extracurricular/ctrend/</guid>
				<description>&lt;h2 id=&#34;context&#34;&gt;Context&lt;/h2&gt;&#xA;&lt;h2 id=&#34;methodology&#34;&gt;Methodology&lt;/h2&gt;&#xA;&lt;h2 id=&#34;results&#34;&gt;Results&lt;/h2&gt;</description>
			</item>
			<item>
				<title>Flight Simulation and Stability Analysis (AERO3560)</title>
				<link>https://keeno.xyz/projects/intracurricular/flight_sim/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/projects/intracurricular/flight_sim/</guid>
				<description>&lt;h2 id=&#34;context&#34;&gt;Context&lt;/h2&gt;&#xA;&lt;h2 id=&#34;methodology&#34;&gt;Methodology&lt;/h2&gt;&#xA;&lt;h2 id=&#34;results&#34;&gt;Results&lt;/h2&gt;</description>
			</item>
			<item>
				<title>Honours Thesis</title>
				<link>https://keeno.xyz/projects/intracurricular/thesis/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/projects/intracurricular/thesis/</guid>
				<description>&lt;h2 id=&#34;context&#34;&gt;Context&lt;/h2&gt;&#xA;&lt;h2 id=&#34;methodology&#34;&gt;Methodology&lt;/h2&gt;&#xA;&lt;h2 id=&#34;results&#34;&gt;Results&lt;/h2&gt;</description>
			</item>
			<item>
				<title>Keyboards</title>
				<link>https://keeno.xyz/interests/hobbies/keyboards/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/interests/hobbies/keyboards/</guid>
				<description>&lt;h2 id=&#34;why-keyboards&#34;&gt;Why Keyboards?&lt;/h2&gt;&#xA;&lt;details class=&#34;toggle-details&#34;&gt;&#xA;  &lt;summary&gt;&#xA;    &lt;span class=&#34;summary-closed&#34;&gt;read more&amp;hellip;&lt;/span&gt;&#xA;    &lt;span class=&#34;summary-open&#34;&gt;read less&amp;hellip;&lt;/span&gt;&#xA;  &lt;/summary&gt;&#xA;  &lt;p&gt;To me, people collect keyboards for two main reasons, with similar rationale as how a car enthusiast might own multiple cars.&lt;/p&gt;&#xA;&lt;p&gt;The first reason is a difference in feel and sound that people who aren’t “in the know” likely wouldn’t care for. A big part of custom keyboards is the combination of switches, keycaps, plate, mounting method, housing materials, etc. which significantly changes the sound profile and type feel. There are also many different keyboard layouts that vary in functionality, size, and ergonomics. People enjoy being able to swap between keyboards for the novelty that comes with the change in typing experience.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Making a Custom Hall Effect Keyboard</title>
				<link>https://keeno.xyz/projects/extracurricular/he_keyboard/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/projects/extracurricular/he_keyboard/</guid>
				<description>&lt;h2 id=&#34;context&#34;&gt;Context&lt;/h2&gt;&#xA;&lt;h2 id=&#34;methodology&#34;&gt;Methodology&lt;/h2&gt;&#xA;&lt;h2 id=&#34;results&#34;&gt;Results&lt;/h2&gt;</description>
			</item>
			<item>
				<title>Modelling Stall Cells Using the Biot-Savart Law </title>
				<link>https://keeno.xyz/projects/extracurricular/stall_cell/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/projects/extracurricular/stall_cell/</guid>
				<description>&lt;h2 id=&#34;context&#34;&gt;Context&lt;/h2&gt;&#xA;&lt;h2 id=&#34;methodology&#34;&gt;Methodology&lt;/h2&gt;&#xA;&lt;h2 id=&#34;results&#34;&gt;Results&lt;/h2&gt;</description>
			</item>
			<item>
				<title>Portfolio Construction (FINC3017)</title>
				<link>https://keeno.xyz/projects/intracurricular/portfolio_construction/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/projects/intracurricular/portfolio_construction/</guid>
				<description>&lt;h2 id=&#34;context&#34;&gt;Context&lt;/h2&gt;&#xA;&lt;h2 id=&#34;methodology&#34;&gt;Methodology&lt;/h2&gt;&#xA;&lt;h2 id=&#34;results&#34;&gt;Results&lt;/h2&gt;</description>
			</item>
			<item>
				<title>Rocket League (Competitive Play and Coaching)</title>
				<link>https://keeno.xyz/interests/hobbies/rocket_league/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/interests/hobbies/rocket_league/</guid>
				<description>&lt;h2 id=&#34;context&#34;&gt;Context&lt;/h2&gt;&#xA;&lt;h2 id=&#34;methodology&#34;&gt;Methodology&lt;/h2&gt;&#xA;&lt;h2 id=&#34;results&#34;&gt;Results&lt;/h2&gt;</description>
			</item>
			<item>
				<title>Sim Racing</title>
				<link>https://keeno.xyz/interests/hobbies/sim_racing/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/interests/hobbies/sim_racing/</guid>
				<description>&lt;h2 id=&#34;context&#34;&gt;Context&lt;/h2&gt;&#xA;&lt;h2 id=&#34;methodology&#34;&gt;Methodology&lt;/h2&gt;&#xA;&lt;h2 id=&#34;results&#34;&gt;Results&lt;/h2&gt;</description>
			</item>
			<item>
				<title>This website counts as a project, right?</title>
				<link>https://keeno.xyz/projects/extracurricular/website/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/projects/extracurricular/website/</guid>
				<description>&lt;h2 id=&#34;context&#34;&gt;Context&lt;/h2&gt;&#xA;&lt;h2 id=&#34;methodology&#34;&gt;Methodology&lt;/h2&gt;&#xA;&lt;h2 id=&#34;results&#34;&gt;Results&lt;/h2&gt;</description>
			</item>
			<item>
				<title>Video Essays</title>
				<link>https://keeno.xyz/interests/hobbies/video_essays/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://keeno.xyz/interests/hobbies/video_essays/</guid>
				<description>&lt;h2 id=&#34;todo&#34;&gt;TODO&lt;/h2&gt;</description>
			</item>
	</channel>
</rss>
