<!doctype html>
<html lang="en">
	<head>
		<meta charset="utf-8">
		<meta name="viewport" content="width=device-width, initial-scale=1.0">
		<title>Inconsistent Software</title>
		<meta name="description" content="Software developer, game developer. Writer of ideas.">

		<meta name="og:title" content="Inconsistent Software">
		<meta name=og:"description" content="Software developer, game developer. Writer of ideas.">


		

		<link rel="alternate" href="/feed.xml" type="application/atom+xml" title="Inconsistent Software">
		
		<style>/* This is an arbitrary CSS string added to the bundle */
/* Defaults */
:root {
	--font-family: -apple-system, system-ui, sans-serif;
	--font-family-monospace: Consolas, Menlo, Monaco, Andale Mono WT, Andale Mono, Lucida Console, Lucida Sans Typewriter, DejaVu Sans Mono, Bitstream Vera Sans Mono, Liberation Mono, Nimbus Mono L, Courier New, Courier, monospace;
}

/* Theme colors */
:root {
	--color-gray-20: #e0e0e0;
	--color-gray-50: #C0C0C0;
	--color-gray-90: #333;

	--background-color: #fff;

	--dialog-background-color: #d1ddec;

	--text-color: var(--color-gray-90);
	--text-color-link: #082840;
	--text-color-link-active: #5f2b48;
	--text-color-link-visited: #17050F;

	--syntax-tab-size: 2;
}

@media (prefers-color-scheme: dark) {
	:root {
		--color-gray-20: #e0e0e0;
		--color-gray-50: #C0C0C0;
		--color-gray-90: #dad8d8;

		/* --text-color is assigned to --color-gray-_ above */
		--text-color-link: #1493fb;
		--text-color-link-active: #6969f7;
		--text-color-link-visited: #a6a6f8;

		--background-color: #15202b;

		--dialog-background-color: #15202b;
	}
}


/* Global stylesheet */
* {
	box-sizing: border-box;
}

@view-transition {
	navigation: auto;
}

html,
body {
	padding: 0;
	margin: 0 auto;
	font-family: var(--font-family);
	color: var(--text-color);
	background-color: var(--background-color);
}
html {
	overflow-y: scroll;
}
body {
	max-width: 50em;
}

/* https://www.a11yproject.com/posts/how-to-hide-content/ */
.visually-hidden {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

p:last-child {
	margin-bottom: 0;
}
p {
	line-height: 1.5;
}

li {
	line-height: 1.5;
}

a[href] {
	color: var(--text-color-link);
}
a[href]:visited {
	color: var(--text-color-link-visited);
}
a[href]:hover,
a[href]:active {
	color: var(--text-color-link-active);
}

main,
footer {
	padding: 1rem;
}
main :first-child {
	margin-top: 0;
}

header {
	border-bottom: 1px dashed var(--color-gray-20);
}
header:after {
	content: "";
	display: table;
	clear: both;
}

.links-nextprev {
	display: flex;
	justify-content: space-between;
	gap: .5em 1em;
	list-style: "";
	border-top: 1px dashed var(--color-gray-20);
	padding: 1em 0;
}
.links-nextprev > * {
	flex-grow: 1;
}
.links-nextprev-next {
	text-align: right;
}

table {
	margin: 1em 0;
}
table td,
table th {
	padding-right: 1em;
}

pre,
code {
	font-family: var(--font-family-monospace);
}
pre:not([class*="language-"]) {
	margin: .5em 0;
	line-height: 1.375; /* 22px /16 */
	-moz-tab-size: var(--syntax-tab-size);
	-o-tab-size: var(--syntax-tab-size);
	tab-size: var(--syntax-tab-size);
	-webkit-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	direction: ltr;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	overflow-x: auto;
}
code {
	word-break: break-all;
}

/* Header */
header {
	display: flex;
	gap: 1em .5em;
	flex-wrap: wrap;
	align-items: center;
	padding: 1em;
}
.home-link {
	font-size: 1em; /* 16px /16 */
	font-weight: 700;
	margin-right: 2em;
}
.home-link:link:not(:hover) {
	text-decoration: none;
}

/* Nav */
.nav {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
}
.nav-item {
	display: inline-block;
	margin-right: 1em;
}
.nav-item a[href]:not(:hover) {
	text-decoration: none;
}
.nav a[href][aria-current="page"] {
	text-decoration: underline;
}

/* Posts list */
.postlist {
	list-style: none;
	padding: 0;
	padding-left: 1.5rem;
}
.postlist-item {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	counter-increment: start-from -1;
	margin-bottom: 1em;
}
.postlist-item:before {
	display: inline-block;
	pointer-events: none;
	content: "" counter(start-from, decimal-leading-zero) ". ";
	line-height: 100%;
	text-align: right;
	margin-left: -1.5rem;
}
.postlist-date,
.postlist-item:before {
	font-size: 0.8125em; /* 13px /16 */
	color: var(--color-gray-90);
}
.postlist-date {
	word-spacing: -0.5px;
}
.postlist-link {
	font-size: 1.1875em; /* 19px /16 */
	font-weight: 700;
	flex-basis: calc(100% - 1.5rem);
	padding-left: .25em;
	padding-right: .5em;
	text-underline-position: from-font;
	text-underline-offset: 0;
	text-decoration-thickness: 1px;
}
.postlist-item-active .postlist-link {
	font-weight: bold;
}

/* Tags */
.post-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-transform: capitalize;
	font-style: italic;
}
.postlist-item > .post-tag {
	align-self: center;
}

/* Tags list */
.post-metadata {
	display: inline-flex;
	flex-wrap: wrap;
	gap: .5em;
	list-style: none;
	padding: 0;
	margin: 0;
}
.post-metadata time {
	margin-right: 1em;
}

/* Custom inconsistent software CSS */

.postlist-excerpt {
	flex-basis: calc(100% - 1.5rem);
	padding-left: .25em;
	padding-right: .5em;
}

img, picture {
	width: 100%;
	height: auto;
}

.post-footer {
	border-top: 1px dashed var(--color-gray-20);
	padding: 1em 0;
}

.image-character {
	flex: 1;
	width: 100%;
	height: auto;
}

.character-box {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: flex-start;
	margin-bottom: 1em;
	background-color: blanchedalmond;

	padding-left: 0.5em;
	padding-right: 0.5em;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	border-radius: 5px;

}

.character-box-reverse {
	flex-direction: row-reverse;
}

.character-text {
	margin-left: 0.5em;
	margin-right: 0.5em;
	padding-left: 0.5em;
	padding-right: 0.5em;
	background-color: var(--dialog-background-color);
	border-radius: 5px;
	padding-top: 0.5em;
	padding-bottom: 0.125em;

	flex: 3;
}

.image-caption {
	margin-top: 0;
	text-align: center;
	line-height: 1;
	font-size: 0.9em;
}

.image-sized {
	max-width: 500px;
}

.image-sized-sm {
	max-width: 300px;
}

.image-auto {
	width: auto;
	height: auto;
}

.image-button {
	width: 88px;
	height: 31px;
}

.image-button-2x {
	width: 176px;
	height: 62px;
}

.image-center {
	margin: 0 auto;
	display: block;
}

.social-media-list {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}

.social-media-list li {
	line-height: 2;
}

.site-footer {
	border-top: 1px dashed var(--color-gray-20);
	padding: 1rem;
}

.links-main {
	text-align: center;
}


.avatar-img {
	width: 200px;
	height: auto;
}

.social-container {
	margin-top: 1.5rem;
}

.social-link {

	text-decoration: none;
	box-sizing: border-box;

	font-weight: 400;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;

	display: block;
	width: 100%;
	border-color: #343a40;
}

.friend-links {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.friend-links img {
	width: 88px;
	height: 31px;
}

.friend-links a {
	text-align: center;
	margin: 5px;
}

.gallery-tag {
	text-transform: uppercase;
}

.video-auto {
	width: 100%;
	height: auto;
}</style>
	</head>
	<body>
		<a href="#skip" class="visually-hidden">Skip to main content</a>

		<header>
			<a href="/" class="home-link">Inconsistent Software</a>
			<nav>
				<h2 class="visually-hidden">Top level navigation menu</h2>
				<ul class="nav">
					<li class="nav-item"><a href="/blog/">Archive</a></li>
					<li class="nav-item"><a href="/about/">About Me</a></li>
					<li class="nav-item"><a href="/projects/">Projects</a></li>
					<li class="nav-item"><a href="/gallery/">Gallery</a></li>
					<li class="nav-item"><a href="/stuff/">Stuff</a></li>
				</ul>
			</nav>
		</header>

		<main id="skip">
			<heading-anchors>
				
<p>
Video Game Software Engineer, IGDA San Diego Leader, Open Source Developer, and previously Indie MMO Developer. (he/him)  
</p>
<p>I write about inconsistent software and how to improve it. I also sometimes write about other interests.</p>

{
    "sonas": [
        {
            "name": "Foxis",
            "pronouns": "he/him",
            "gender": "Male",
            "species": "Dragon",
            "description": "The Cookie Dragon, Judah's dragon self. The Cookie Dragon named Foxis. Has both Feral and Humanoid forms.",
            "ref": "https://ref.cookiedragons.com/dragon",
            "avatar": "https://ref.cookiedragons.com/images/2018/10_12_1judahlineless.png",
            "age": 25,
            "colors": [
                "#d5d5d5",        
                "#616e79",        
                "#ffffff"        
                
            ]     
        } 
    ]
}



			</heading-anchors>
		</main>

		<footer>

			<ul class="social-media-list">
			<li><a href="https://github.com/judah4"><span class="username">GitHub</span></a></li>
			<li><a href="https://www.linkedin.com/in/judah-perez"><span class="username">LinkedIn</span></a></li>
			<li><a rel="me" href="https://social.foxis.dev/@foxis"><span class="username">Fediverse / Iceshrimp - @foxis@social.foxis.dev</span></a></li>
			<li><a rel="me" href="https://dragon.style/@cookie"><span class="username">Fediverse / Mastodon - @cookie@dragon.style</span></a></li>
			<!--<li><a href="https://www.twitter.com/dragonjudah"><span class="username">dragonjudah</span></a></li>-->
			<li><a href="/feed.xml"><span>RSS</span></a></li>
			</ul>

			<p>
				Copyright © Judah Perez 2026
			</p>

			<p>
				<img eleventy:ignore src="/img/inconsistent-software-button.png" alt="Site Button" class="image-button" />
			</p>

			<p><em>Built with <a href="https://www.11ty.dev/">Eleventy v3.1.5</a></em></p>
		</footer>

		<!-- This page `/.well-known/fursona` was built on 2026-04-02T03:47:41.957Z -->
		<script type="module" src="/dist/cC8wS6ZjFU.js"></script>
	</body>
</html>
