-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
7,843 additions
and
51 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
<!doctype html> | ||
<html lang="en" data-palette="malachite"> | ||
<head> | ||
<meta charset="utf-8"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Darken - Cameron Higby-Naquin</title> | ||
|
||
<link rel="stylesheet" href="/css/rime.css" media="all"/> | ||
<meta property="og:locale" content="en_US" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:title" content="Darken" /> | ||
|
||
<meta property="og:description" content="Games, writing, code, and projects from Cameron Higby-Naquin" /> | ||
<meta property="og:url" content="https://chigby.org/darken/about/" /> | ||
<meta property="og:site_name" content="Cameron Higby-Naquin" /> | ||
|
||
<meta name="description" content="" /> | ||
<script src="/js/scripts.js" defer></script> | ||
</head> | ||
<body class="a-page"> | ||
|
||
|
||
<header> | ||
<details id="theme-chooser"> | ||
<summary>Light/Dark</summary> | ||
<div> | ||
<fieldset> | ||
<legend>Color Mode</legend> | ||
<label> | ||
<input type="radio" id="theme-toggle-light" name="theme-toggle" value="light"> | ||
Light | ||
</label> | ||
|
||
<label> | ||
<input type="radio" id="theme-toggle-dark" name="theme-toggle" value="dark"> | ||
Dark | ||
</label> | ||
|
||
<label> | ||
<input type="radio" id="theme-toggle-system" name="theme-toggle" value="system"> | ||
System | ||
</label> | ||
</fieldset> | ||
</div> | ||
</details> | ||
<nav aria-label="primary"> | ||
<a href="/">Cameron Higby-Naquin</a> | ||
</nav> | ||
</header> | ||
|
||
<main class="content-grid"> | ||
|
||
<header id="page-header"> | ||
<h1>Darken</h1> | ||
|
||
<p>A Lights-Out Clone</p> | ||
|
||
</header> | ||
|
||
|
||
|
||
<p>I made this cute distraction, in the Elm programming language (<a href="https://github.com/chigby/darken">view source</a>), as part of an attempt to play along with a job interview exercise.</p> | ||
<p><a href="/darken/">Play the game</a>.</p> | ||
|
||
|
||
|
||
|
||
|
||
</main> | ||
<footer> | ||
<div id="author"> | ||
<p>© 2024 Cameron Higby-Naquin of <a href="/">chigby.org</a></p> | ||
<p> | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
• | ||
<a href="https://github.com/chigby">chigby</a> on GitHub | ||
• | ||
<a href="https://www.instagram.com/nullsurface/">nullsurface</a> on Instagram | ||
</p> | ||
</div> | ||
<div> | ||
|
||
</div> | ||
</footer> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,65 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<!doctype html> | ||
<html lang="en" data-palette="malachite"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Elm Elevenses: Resources for learning and using the Elm language</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><link rel="stylesheet" href="/css/colors.css"> | ||
|
||
<style> | ||
body{margin:1em auto;max-width:40em;padding:0 .62em;font:1.2em/1.62em monospace}h1,h2,h3{line-height:1.2em} | ||
</style><link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> | ||
<link rel="icon" href="/favicon.ico" type="image/x-icon"> | ||
<meta charset="utf-8"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Elm Elevenses ☕ 🍙 🍰 - Cameron Higby-Naquin</title> | ||
|
||
<link rel="stylesheet" href="/css/rime.css" media="all"/> | ||
<meta property="og:locale" content="en_US" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:title" content="Elm Elevenses ☕ 🍙 🍰" /> | ||
|
||
<meta property="og:description" content="Games, writing, code, and projects from Cameron Higby-Naquin" /> | ||
<meta property="og:url" content="https://chigby.org/elm-elevenses/" /> | ||
<meta property="og:site_name" content="Cameron Higby-Naquin" /> | ||
|
||
<meta name="description" content="" /> | ||
<script src="/js/scripts.js" defer></script> | ||
</head> | ||
<body> | ||
<article> | ||
<header> | ||
<h1>Elm Elevenses ☕ 🍙 🍰</h1> | ||
<aside>Resources for learning & using the Elm language</aside> | ||
</header> | ||
<body > | ||
|
||
|
||
<header> | ||
<details id="theme-chooser"> | ||
<summary>Light/Dark</summary> | ||
<div> | ||
<fieldset> | ||
<legend>Color Mode</legend> | ||
<label> | ||
<input type="radio" id="theme-toggle-light" name="theme-toggle" value="light"> | ||
Light | ||
</label> | ||
|
||
<label> | ||
<input type="radio" id="theme-toggle-dark" name="theme-toggle" value="dark"> | ||
Dark | ||
</label> | ||
|
||
<label> | ||
<input type="radio" id="theme-toggle-system" name="theme-toggle" value="system"> | ||
System | ||
</label> | ||
</fieldset> | ||
</div> | ||
</details> | ||
<nav aria-label="primary"> | ||
<a href="/">Cameron Higby-Naquin</a> | ||
</nav> | ||
</header> | ||
|
||
<main class="content-grid" data-type-family="monospace"> | ||
|
||
<header id="page-header"> | ||
<h1>Elm Elevenses ☕ 🍙 🍰</h1> | ||
|
||
<p>Resources for learning and using the Elm language</p> | ||
|
||
</header> | ||
|
||
|
||
|
||
<article> | ||
<nav aria-labelledby="sections-heading"> | ||
<h2 id="sections-heading">Table of Contents</h2> | ||
<ul> | ||
|
@@ -63,7 +105,7 @@ <h2>Example Projects</h2> | |
|
||
<ul> | ||
<li>Darken, a Lights Out clone: | ||
<a href="https://github.com/chigby/darken">Source</a>, <a href="http://chigby.org/darken/">Play it</a> | ||
<a href="https://github.com/chigby/darken">Source</a>, <a href="/darken/">Play it</a> | ||
</li> | ||
<li> | ||
Offset Cipher, for encoding <a href="https://en.wikipedia.org/wiki/ROT13">ROT13</a> and related. | ||
|
@@ -156,5 +198,26 @@ <h2>Miscellaneous</h2> | |
</section> | ||
</article> | ||
|
||
|
||
|
||
|
||
|
||
</main> | ||
<footer> | ||
<div id="author"> | ||
<p>© 2024 Cameron Higby-Naquin of <a href="/">chigby.org</a></p> | ||
<p> | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
• | ||
<a href="https://github.com/chigby">chigby</a> on GitHub | ||
• | ||
<a href="https://www.instagram.com/nullsurface/">nullsurface</a> on Instagram | ||
</p> | ||
</div> | ||
<div> | ||
|
||
</div> | ||
</footer> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
<!doctype html> | ||
<html lang="en" data-palette="nordish"> | ||
<head> | ||
<meta charset="utf-8"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Games Cellar - Cameron Higby-Naquin</title> | ||
|
||
<link rel="stylesheet" href="/css/rime.css" media="all"/> | ||
<meta property="og:locale" content="en_US" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:title" content="Games Cellar" /> | ||
|
||
<meta property="og:description" content="Games, writing, code, and projects from Cameron Higby-Naquin" /> | ||
<meta property="og:url" content="https://chigby.org/games-cellar/" /> | ||
<meta property="og:site_name" content="Cameron Higby-Naquin" /> | ||
|
||
<meta name="description" content="" /> | ||
<script src="/js/scripts.js" defer></script> | ||
</head> | ||
<body class="a-page"> | ||
|
||
|
||
<header> | ||
<details id="theme-chooser"> | ||
<summary>Light/Dark</summary> | ||
<div> | ||
<fieldset> | ||
<legend>Color Mode</legend> | ||
<label> | ||
<input type="radio" id="theme-toggle-light" name="theme-toggle" value="light"> | ||
Light | ||
</label> | ||
|
||
<label> | ||
<input type="radio" id="theme-toggle-dark" name="theme-toggle" value="dark"> | ||
Dark | ||
</label> | ||
|
||
<label> | ||
<input type="radio" id="theme-toggle-system" name="theme-toggle" value="system"> | ||
System | ||
</label> | ||
</fieldset> | ||
</div> | ||
</details> | ||
<nav aria-label="primary"> | ||
<a href="/">Cameron Higby-Naquin</a> | ||
</nav> | ||
</header> | ||
|
||
<main class="content-grid"> | ||
|
||
<header id="page-header"> | ||
<h1>Games Cellar</h1> | ||
|
||
<p>Moldering historical artifacts, scattered cuckoo clocks, unfinished experiments, inkstained blueprints.</p> | ||
|
||
</header> | ||
|
||
|
||
|
||
|
||
|
||
|
||
<section class="stream"> | ||
<h2>Cellar Items</h2><article class="stream-entry"> | ||
<header> | ||
<h3 class="stream-name"> | ||
<a href="/darken/about/">Darken</a> | ||
</h3> | ||
|
||
<p> | ||
|
||
<em>bauble</em> | ||
|
||
• | ||
|
||
A Lights-Out Clone | ||
|
||
</p> | ||
</header> | ||
</article><article class="stream-entry"> | ||
<header> | ||
<h3 class="stream-name"> | ||
<a href="/quiz/">Quiz of Monster Quizzes</a> | ||
</h3> | ||
|
||
<p> | ||
|
||
<em>bauble</em> | ||
|
||
• | ||
|
||
A response to something, at one point, I was seeing a lot of. | ||
|
||
</p> | ||
</header> | ||
</article></section> | ||
|
||
</main> | ||
<footer> | ||
<div id="author"> | ||
<p>© 2024 Cameron Higby-Naquin of <a href="/">chigby.org</a></p> | ||
<p> | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
• | ||
<a href="https://github.com/chigby">chigby</a> on GitHub | ||
• | ||
<a href="https://www.instagram.com/nullsurface/">nullsurface</a> on Instagram | ||
</p> | ||
</div> | ||
<div> | ||
|
||
</div> | ||
</footer> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!DOCTYPE HTML> | ||
<html> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Text Rotation</title> | ||
<script type="text/javascript" src="offsetCipher.js"></script> | ||
</head> | ||
|
||
<body> | ||
</body> | ||
|
||
<script type="text/javascript"> | ||
var app = Elm.OffsetCipher.fullscreen(); | ||
</script> | ||
|
||
</html> |
Oops, something went wrong.