Thicker outlines, also used for images

This commit is contained in:
Nycki 2022-12-24 11:02:43 -08:00
parent a42380f2bd
commit 14f1d93b01
2 changed files with 41 additions and 14 deletions

View file

@ -14,33 +14,54 @@
<section>
<h2>Braceless Javascript</h2>
2018. A couple of short programs written in a subset of javascript. Specifically, javascript but you can't use anything with curly braces in it, like 'if' or 'for'. Instead, ternaries and lambdas give you all the flow control you need. Has a lispy flavor.
<a href='https://nupanick.github.io/braceless-javascript/fizzbuzz.html'>FizzBuzz</a> (<a href='https://github.com/nupanick/braceless-javascript/blob/master/fizzbuzz.html'>Source</a>),
<a href='https://nupanick.github.io/braceless-javascript/bottles.html'>Bottles</a> (<a href='https://github.com/nupanick/braceless-javascript/blob/master/bottles.html'>Source</a>).
</section>
<p>
2018. A couple of short programs written in a subset of javascript. Specifically, javascript but you can't use anything with curly braces in it, like 'if' or 'for'. Instead, ternaries and lambdas give you all the flow control you need. Has a lispy flavor.
</p>
<p>
<a href='https://nupanick.github.io/braceless-javascript/fizzbuzz.html'>FizzBuzz</a> (<a href='https://github.com/nupanick/braceless-javascript/blob/master/fizzbuzz.html'>Source</a>),
<a href='https://nupanick.github.io/braceless-javascript/bottles.html'>Bottles</a> (<a href='https://github.com/nupanick/braceless-javascript/blob/master/bottles.html'>Source</a>).
</p>
</section>
<section>
<h2>Flistify</h2>
2018. A script to bulk-resize images for an f-list gallery, using windows batch and imagemagick. <a href='https://github.com/nupanick/flistify'>Flistify source on GitHub.</a>
<p>
2018. A script to bulk-resize images for an f-list gallery, using windows batch and imagemagick.
</p>
<p>
<a href='https://github.com/nupanick/flistify'>Flistify source on GitHub.</a>
</p>
</section>
<section>
<h2>Portal ZZT</h2>
2008. A portal clone in the ZZT Engine. Available at the Museum of ZZT. <a href='https://museumofzzt.com/file/p/PortalZZT_v0_5.zip'>PortalZZT in the Museum of ZZT.</a>
<p>
2008. A portal clone in the ZZT Engine. Available at the Museum of ZZT.
</p>
<p>
<a href='https://museumofzzt.com/file/p/PortalZZT_v0_5.zip'>PortalZZT in the Museum of ZZT.</a>
</p>
</section>
<section>
<h2>ZZT Nanogames</h2>
2008. A collection of ZZT games that use only one screen each. Also includes <em>Eight Legged Express</em>, which I believe was made in one weekend as a challenge. <a href='https://museumofzzt.com/file/n/nanopack01.zip'>ZZT Nanogames in the Museum of ZZT.</a>
<p>
2008. A collection of ZZT games that use only one screen each. Also includes <em>Eight Legged Express</em>, which I believe was made in one weekend as a challenge.
</p>
<p>
<a href='https://museumofzzt.com/file/n/nanopack01.zip'>ZZT Nanogames in the Museum of ZZT.</a>
</p>
</section>
<section>
<h2>Collabyrinth</h2>
<img src='images/collabyrinth-title.png' alt='The title screen for the game Collabyrinth. The twelve letters of the word "COLLABYRINTH" are arranged in a 3 by 4 grid. Most of them are just an ordinary letter, but the O, L, L, Y, and R have been decorated in a variety of mismatched styles.'/>
<p>
2008. A collaborative labyrinth ZZT game. I organized this on the z2 forums.
2008. A collaborative labyrinth ZZT game. I organized this on the z2 forums.
</p>
<p>
Credits:
Credits:
</p>
<ul>
<li>Alexis Janson</li>
<li>Commodore</li>
@ -52,13 +73,19 @@
<li>RobertP</li>
</ul>
<p>
<a href='https://museumofzzt.com/file/c/clbrnth1.zip'>Collabyrinth in the Museum of ZZT.</a>
<a href='https://museumofzzt.com/file/c/clbrnth1.zip'>Collabyrinth in the Museum of ZZT.</a>
</p>
</section>
<section>
<h2>Traps and Zoids</h2>
<img src='images/traps-and-zoids_home.png' alt='A screenshot of an old website. Red text on a light blue background says "Welcome to Nick.Lamicela.Org!". There is a compass rose at an angle, so that the letters read "NEWS" from top to bottom, and a link underneath says "News". There is a black and white cartoon face that looks like a folded boat or paper airplane, and a link underneath that says "Cartoons". At the bottom of the page is the text "Last Updated: 08/01/07.'>
2007. Some hand-drawn cartoons and very old web design. Good old HTML 4.0 Transitional. <a href='https://web.archive.org/web/20071101001849/http://nick.lamicela.org/'>Traps and Zoids in the Internet Archive.</a>
<p>
2007. Some hand-drawn cartoons and very old web design. Good old HTML 4.0 Transitional.
</p>
<p>
<a href='https://web.archive.org/web/20071101001849/http://nick.lamicela.org/'>Traps and Zoids in the Internet Archive.</a>
</p>
</section>
</main>
</body>

View file

@ -30,13 +30,13 @@ a:visited {
section {
margin-top: 2ch;
border-top: 1ch double mediumvioletred;
border-top: 2ch double mediumvioletred;
}
section img {
display: block;
border: 0.25rem solid skyblue;
border: 2ch double mediumvioletred;
margin-left: auto;
margin-right: auto;
max-height: 12rem;
width: 80%;
}