Browse Source

Remove public dir from repo

Colin Powell 2 years ago
parent
commit
4478cacb87
68 changed files with 0 additions and 11569 deletions
  1. 0 112
      public/404.html
  2. 0 1
      public/an-old-hope.min.css
  3. BIN
      public/apple-touch-icon.png
  4. 0 127
      public/categories/index.html
  5. 0 20
      public/categories/index.xml
  6. 0 802
      public/categories/misc/index.html
  7. 0 508
      public/categories/misc/index.xml
  8. 0 10
      public/categories/misc/page/1/index.html
  9. 0 10
      public/categories/page/1/index.html
  10. BIN
      public/favicon.ico
  11. 0 1
      public/highlight.min.js
  12. 0 800
      public/index.html
  13. 0 508
      public/index.xml
  14. 0 10
      public/page/1/index.html
  15. 0 133
      public/post/acadian/index.html
  16. 0 131
      public/post/angry/index.html
  17. 0 140
      public/post/assassin/index.html
  18. 0 152
      public/post/breathe/index.html
  19. 0 131
      public/post/capacity/index.html
  20. 0 133
      public/post/cold/index.html
  21. 0 127
      public/post/color/index.html
  22. 0 149
      public/post/condition/index.html
  23. 0 127
      public/post/consider/index.html
  24. 0 127
      public/post/curt/index.html
  25. 0 129
      public/post/death/index.html
  26. 0 127
      public/post/deploy/index.html
  27. 0 127
      public/post/fail/index.html
  28. 0 131
      public/post/fixable/index.html
  29. 0 159
      public/post/flight/index.html
  30. 0 144
      public/post/flow/index.html
  31. 0 136
      public/post/garble/index.html
  32. 0 137
      public/post/haze/index.html
  33. 0 802
      public/post/index.html
  34. 0 508
      public/post/index.xml
  35. 0 156
      public/post/infection/index.html
  36. 0 134
      public/post/interfaces/index.html
  37. 0 132
      public/post/inverted/index.html
  38. 0 130
      public/post/justice/index.html
  39. 0 131
      public/post/leguin/index.html
  40. 0 134
      public/post/load/index.html
  41. 0 10
      public/post/page/1/index.html
  42. 0 152
      public/post/parent/index.html
  43. 0 131
      public/post/pink/index.html
  44. 0 127
      public/post/preschool/index.html
  45. 0 136
      public/post/preservation/index.html
  46. 0 138
      public/post/relationship/index.html
  47. 0 131
      public/post/repeatability/index.html
  48. 0 133
      public/post/rome/index.html
  49. 0 128
      public/post/roughly/index.html
  50. 0 150
      public/post/seat/index.html
  51. 0 134
      public/post/sky/index.html
  52. 0 132
      public/post/soft/index.html
  53. 0 128
      public/post/sunk/index.html
  54. 0 137
      public/post/suns/index.html
  55. 0 133
      public/post/thunder/index.html
  56. 0 135
      public/post/trees/index.html
  57. 0 127
      public/post/typing/index.html
  58. 0 482
      public/post/unblink/index.html
  59. 0 127
      public/post/upcs/index.html
  60. 0 137
      public/post/water/index.html
  61. 0 133
      public/post/wind/index.html
  62. 0 139
      public/post/writing/index.html
  63. 0 1
      public/robots.txt
  64. 0 249
      public/sitemap.xml
  65. 0 516
      public/style.css
  66. 0 127
      public/tags/index.html
  67. 0 10
      public/tags/index.xml
  68. 0 10
      public/tags/page/1/index.html

+ 0 - 112
public/404.html

@@ -1,112 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Posts - UNBLINK</title>
-    
-    <meta name="description" content="UNBLINK">
-    <meta name="author" content="">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="list">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-<div class="not-found">404</div>
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>

+ 0 - 1
public/an-old-hope.min.css

@@ -1 +0,0 @@
-.hljs-comment,.hljs-quote{color:#B6B18B}.hljs-variable,.hljs-template-variable,.hljs-tag,.hljs-name,.hljs-selector-id,.hljs-selector-class,.hljs-regexp,.hljs-deletion{color:#EB3C54}.hljs-number,.hljs-built_in,.hljs-builtin-name,.hljs-literal,.hljs-type,.hljs-params,.hljs-meta,.hljs-link{color:#E7CE56}.hljs-attribute{color:#EE7C2B}.hljs-string,.hljs-symbol,.hljs-bullet,.hljs-addition{color:#4FB4D7}.hljs-title,.hljs-section{color:#78BB65}.hljs-keyword,.hljs-selector-tag{color:#B45EA4}.hljs{display:block;overflow-x:auto;background:#1C1D21;color:#c0c5ce;padding:.5em}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:bold}

BIN
public/apple-touch-icon.png


+ 0 - 127
public/categories/index.html

@@ -1,127 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Posts - UNBLINK</title>
-    
-    <meta name="description" content="UNBLINK">
-    <meta name="author" content="">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="list">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-
-
-
-<header class="page-header">
-  <h1>Posts</h1>
-</header>
-
-
-
-
-
-
-
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 20
public/categories/index.xml

@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
-  <channel>
-    <title>Categories on UNBLINK</title>
-    <link>https://unbl.ink/categories/</link>
-    <description>Recent content in Categories on UNBLINK</description>
-    <generator>Hugo -- gohugo.io</generator>
-    <language>en</language>
-    <lastBuildDate>Mon, 23 Jan 2023 00:00:00 +0000</lastBuildDate><atom:link href="https://unbl.ink/categories/index.xml" rel="self" type="application/rss+xml" />
-    <item>
-      <title>misc</title>
-      <link>https://unbl.ink/categories/misc/</link>
-      <pubDate>Mon, 23 Jan 2023 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/categories/misc/</guid>
-      <description></description>
-    </item>
-    
-  </channel>
-</rss>

+ 0 - 802
public/categories/misc/index.html

@@ -1,802 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Posts - UNBLINK</title>
-    
-    <meta name="description" content="UNBLINK">
-    <meta name="author" content="">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="list">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-
-
-
-<header class="page-header">
-  <h1>Posts</h1>
-</header>
-
-
-
-
-
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Deploy</h2>
-  </header>
-  <section class="entry-content">
-   <p>There are so many things to deploy. Flowers deploy pollen, tricking bees. Navies deploy battleships, tricking their enemy. Corporations deploy lawyers, tricking their customers. People deploy emotions, tricking others....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>January 23, 2023</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/deploy/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Condition</h2>
-  </header>
-  <section class="entry-content">
-   <p>Some say the human condition is
-Our contract with death.
-But I&#39;ve watched my dog
-Fear death and recoil in disgust.
-No, our curse is
-Being in the present
-While living for a future
-We believe
-May inevitably come....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>March 6, 2022</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/condition/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Suns</h2>
-  </header>
-  <section class="entry-content">
-   <p>It was a lot of wind for us, really, the day the wind came up. There were no grand meteorological explanations. No perfect storms. Just wind, blasting from the southeast, pushing over coolers on tables with eggs for sale. Slamming doors left ajar.
-Buddhists believe the world will end in a sequence of seven suns, each causing some specific, systematic failure of a vital life function on Earth. The seventh will consume everything....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>November 17, 2020</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/suns/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Curt</h2>
-  </header>
-  <section class="entry-content">
-   <p>Not really cutting someone off, but making sure they understand....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>October 24, 2020</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/curt/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Pink</h2>
-  </header>
-  <section class="entry-content">
-   <p>When I put on a pink shirt I immediately think I’m doing something bold, unexpected. Fuck you expected culture, I’m wearing pink. But really, it’s just light red. And I still look askance at people with mo-hawks or giant riser shoes. Silly fools, using their appearance to signal how they’re different. I should probably just always wear black....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>March 27, 2020</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/pink/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Infection</h2>
-  </header>
-  <section class="entry-content">
-   <p>Under a steel sky, snow falling
-Likely in April, as the garlic
-Struggles to push through soil
-Left on top of it months ago,
-We forget what we used to know.
-People used to get sick. They
-Used to get close to death.
-And the beer on the table
-Promises me a buzz, comfort
-And all the things I want.
-But what about the things
-That I know I don&#39;t want?...</p>
-  </section>
-  <footer class="entry-footer">
-    <time>March 25, 2020</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/infection/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Preservation</h2>
-  </header>
-  <section class="entry-content">
-   <p>I once had occasion to eat mincemeat from a Ball jar processed eight years before my birth. The dubiousness with which I approached that experience says volumes about our ability to preserve things. Even preservation has it’s limits, you must agree. A ship, replaced board by board over five hundred years will, at some point not be an exercise in preservation, but change. The slow inevitability of change that causes mountains to fall and entire ecosystems to die....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>March 10, 2020</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/preservation/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Wind</h2>
-  </header>
-  <section class="entry-content">
-   <p>Traveling ice that builds up on the bows of living organisms I didn’t see until just now, and I’m wondering now how trees got to be here. Certain species are moving. The North is warmer and they know and are moving. Closer to the warmth they go, but not the one here, covered in ice. It’s stuck, stoic, standing its ground. Water drawn up to dizzying heights, to each little branch until a thin paper-like sheet of living cells that turns sunlight into sugar receives exactly as much as it needs to do it’s work....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>February 10, 2020</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/wind/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Sunk</h2>
-  </header>
-  <section class="entry-content">
-   <p>It’s that sinking feeling you get, when all things being equal you’d just rather give up....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 19, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/sunk/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Garble</h2>
-  </header>
-  <section class="entry-content">
-   <p>When sunk costs dig holes in your yard
-And rampant words stand vigil over your house,
-You will be done in your domain
-As his haven turned out all but the best of us....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 17, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/garble/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Writing</h2>
-  </header>
-  <section class="entry-content">
-   <p>Writing is a technology.
-Writing improves information density.
-Writing creates a moral hazard of intention.
-Writing remembers what we forget.
-Writing destroys relationships.
-Writing cannot replace thought.
-Writing is not often true....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 11, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/writing/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Relationship</h2>
-  </header>
-  <section class="entry-content">
-   <p>And in the end, we were just supposed to get our work done. But our work was hidden from us, so first we had to discover what our work was. Upon discovering where our work was, it turned out we had the wrong work in mind at the start and so we begin to plumb the depths of our found work.
-While plumbing, we resolve to do the right work this time....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 5, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/relationship/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Load</h2>
-  </header>
-  <section class="entry-content">
-   <p>A wire carries can carry a certain load before the molecular bonds holding the material together are weighted down too much. Is it unreasonable, then, to imagine the tapestry of our lives, held together by invisible bonds, molecules of constitution. And is it not possible that our constitutional bonds carry a certain load?
-What are we do to when we need a wire to carry more load? Faced with the upper bounds of physical laws, we need more wires to share the load....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 3, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/load/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Sky</h2>
-  </header>
-  <section class="entry-content">
-   <p>Today the winds shifted abruptly to come from the Northeast, which means cold, and snow, and clouds.
-The sky is a flat, slate gray with wisps of contrast ripped into it by the sheering of the win.
-They sky occupies half of our world view on any given day. Is it any wonder our moods should rise and fall by the contents?...</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 2, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/sky/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Parent</h2>
-  </header>
-  <section class="entry-content">
-   <p>To be the parent node, or the source of life
-For something beyond what you yourself contain,
-Is a special position, in a world of relationship.
-The reason for existence for something so small,
-And the source of a desperate persistence in the world,
-Soon strong enough to declare itself independent.
-Of the source of life, only the parent knows
-How fragile the connection can feel sometimes—
-How tenuous the lines that draw the child node back....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 1, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/parent/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Interfaces</h2>
-  </header>
-  <section class="entry-content">
-   <p>If we were in a simulation, everything would be an interface. Modify this, get this response, adjust and modify the next things.
-If we were in a simulation, everything would be relative. Gravity would depend on the flow of time and light would bend and warp.
-If we were in a simulation we would be stuck waiting for the next step to run, unable to go forward at different rates, or ever backwards....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>November 26, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/interfaces/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Flow</h2>
-  </header>
-  <section class="entry-content">
-   <p>When everything appears to be flowing,
-You tear pages from the book and watch
-As they flutter to fall in the water.
-When everything falls apart around you
-You tear at your hair and think
-As life remains as it was when,
-Everything is flowing....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>November 24, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/flow/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Seat</h2>
-  </header>
-  <section class="entry-content">
-   <p>You knew a guest was in the house
-The seat would be up.
-Sometimes the door would be closed.
-Intimacy breeds familiarity,
-And a sense that what was hidden
-Behind the door was less a right
-Of all, than an expectation.
-We are unashamed, possibly even
-Impolite. But we always know
-When there&#39;s a guest in the house....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>October 28, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/seat/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Flight</h2>
-  </header>
-  <section class="entry-content">
-   <p>And to just lift off, leave
-Everything behind, a fancy
-Flight of. But
-It&#39;s not really possible.
-And leave just to lift off,
-Find yourself gone, a fancy
-Dinner party of. Or
-All your best friends.
-They would miss you. Most likely.
-They would wonder where
-You had lifted off to.
-A flight of fancy from a fancy dinner party.
-All expectation gone....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>October 22, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/flight/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Rome</h2>
-  </header>
-  <section class="entry-content">
-   <p>Fireworks at the colisseum. No. In the colisseum. Chinese tourists, roman candles, in the colisseum. From outside, over the wall. Can we remember everything in the past? Or are we doomed to repeat some things. Can we be doomed when repeation is how we learn?
-Roman candles, Chinese tourists, fireworks in the parking lot at the colisseum. This is not what I had expected....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>July 24, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/rome/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Water</h2>
-  </header>
-  <section class="entry-content">
-   <p>Rain doesn’t help us
-Remember the cause, the
-Animating factor.
-Rain only redistributes
-Colossal amounts of
-Caustic chemicals everywhere....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>July 23, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/water/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Soft</h2>
-  </header>
-  <section class="entry-content">
-   <p>The taoists had it right. There is no strength without weakness, no wet without dry. Puffing up his chest, he stares through you, as though through staring he can destroy. But soon, enfilade and then off-guard the underbelly reveals insecurity that air cannot protect.
-All is soft in the middle....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>May 21, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/soft/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Angry</h2>
-  </header>
-  <section class="entry-content">
-   <p>Spend much time there myself. Depth charges primed, deployed, sinking, waiting, fury unleashed. Proximity and destruction raining shrapnel slowly sinking. No fire down here, just a shudder and ripping, tearing. Nothing to see. All contained by pressure. Crushing pressure, surrounding us all. Can’t decide which direction so it goes everywhere....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>May 2, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/angry/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Fixable</h2>
-  </header>
-  <section class="entry-content">
-   <p>Under what circumstance did we expect this would work? Days, numbered, slide past and not everything is repaired promptly. Some things are not fixable at all. Amazing, what we’ll carry with us, into the subway, the neighbor’s house, our last swim in the ocean. Scars from life. Some physical, some metaphysical, all a product of choice and circumstance....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>April 26, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/fixable/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Roughly</h2>
-  </header>
-  <section class="entry-content">
-   <p>Understanding how everything goes together is, roughly, all that life requires of you....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>April 19, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/roughly/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Acadian</h2>
-  </header>
-  <section class="entry-content">
-   <p>Diaspora in a compromised land, stretched by forces moving so slowly, slower than we can see but with evidence left everywhere. Culture accretes faster, but still imperceptible, reminding us that no one knows everything, or anything when it comes to that. When it comes to remembering how to live, how we survived the cataclysm, we depend on those who were lost once. We depend on those who knew enough to get us here....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>April 17, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/acadian/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Cold</h2>
-  </header>
-  <section class="entry-content">
-   <p>Roadways clutter with debris of passing motorists and the cold draws the filth out, into a grim reflection of the gray, moistureless clouds above. Cold will descend, has descended, descends over the pine forests which stop only when they reach the sea, or we cut them back and till, plant and live.
-There is so little old growth forest left. In the cold, it seems impossible to have such an impact on so vast and inhospitable an expanse....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>November 17, 2018</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/cold/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Thunder</h2>
-  </header>
-  <section class="entry-content">
-   <p>The thunder rolls, and the lightnng strikes. Under a blanket of clouds, cropped tight to the ground, but not so tight to be fog, the thunder rolls. Gray permeates the sky and the thunder rolls. Scattered rain showers ruin a wedding celebration and the thunder rolls.
-Above the clouds the thunder rolls. The sun shines, and the rain is nothing but what we can imagine....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>November 10, 2018</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/thunder/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Seethe</h2>
-  </header>
-  <section class="entry-content">
-   <p>And in the hour of need, surrounded by all our loved ones, even some we missed or had forgotten about, the sea roils and seethes with the fury that only the planet can command.
-In hubris, life clings to boats, tossed at once, and yet fettered to the spot, frozen, unable to move or suffer destruction. It thought itself invincible. But nothing was ever farther from the truth.
-Memory of this life fades and what’s left is another rock, slightly warmer than the rest....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>April 14, 2018</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/repeatability/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Typing</h2>
-  </header>
-  <section class="entry-content">
-   <p>It’s hard to understand what’s not understandable especially in light of what we never understood to begin with. The sound of the keys made a clicking noise that would have driven an average man crazy, but the lack of preconceptions in this case led to the clack, clack, clack, clack to a tap, tap, tap, tap to a drum beat driven into the heart of the most relevant moments of his life....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>April 12, 2018</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/typing/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Le Guin</h2>
-  </header>
-  <section class="entry-content">
-   <p>“If you cannot or will not imagine the results of your actions, there’s no way you can act morally or responsibly, Little kids can’t do it; babies are morally monsters — completely greedy. Their imagination has to be trained into foresight and empathy.”
-Ursula K. Le Guin ...</p>
-  </section>
-  <footer class="entry-footer">
-    <time>January 28, 2018</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/leguin/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Capacity</h2>
-  </header>
-  <section class="entry-content">
-   <p>We have the capacity to find joy in all things.
-A negative attitude is worse than a tumor.
-The best of life can come from the worst of life....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>January 4, 2018</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/capacity/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Death</h2>
-  </header>
-  <section class="entry-content">
-   <p>A stiff wind blows and snaps the reed in the canebrake. Gilgamesh is dead. And yet we persist. How do we persist? Why do we persist?
-The stories we tell ourselves are fabircations. The world tells only a single story. The story of all life, bending, arcing towards a darkness that knows nothing, that promises nothing. Only the great recycling of energy and mass. Heat and light and dust....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 5, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/death/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>UPCs</h2>
-  </header>
-  <section class="entry-content">
-   <p>The ability to reason about output, production or worth. If you id, catalog, organize you can gain insight, improvements or reaction. Understanding your universal product codes improves very little. Codes are tools of catagorization ensuring that everything is unique, trackable, known. All our products should be known. That is a universal goal of humanity....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>November 10, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/upcs/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Fail</h2>
-  </header>
-  <section class="entry-content">
-   <p>By definition, seasons are temporal. There is no beginning but what we claim, and no end but what we decree. Earth’s oscilations, rotations and orbits provide consistency, but only inasmuch as we remember what came before. Life, our Earth, and each day is change. When drawn out a thousand, ten thousand years, do we have a right, or is it even reasonable, to expect anything to be stable?...</p>
-  </section>
-  <footer class="entry-footer">
-    <time>September 27, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/fail/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Color</h2>
-  </header>
-  <section class="entry-content">
-   <p>As an article of faith, collaboration, coordination, we claim red comes before blue. Energy and rates of oscilation bounce around inside our eyes and our brain tells us how to feel. Embracing the abritrary and acknowledging the structure of the world serves to build resilience and ultimately to allow us to consume our mortality and live for others as we live for ourselves....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>September 25, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/color/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Preschool</h2>
-  </header>
-  <section class="entry-content">
-   <p>Wow. What’s now? I’m not sure I like … don’t want food, no no. Under the table I think that’s where I, hey. Who took the piece. You. Give it back. I’m sad because he wont give it back and. Yes! I wonder if they have the minions game here. Can I play it? I don’t want to go home yet....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>September 20, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/preschool/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Consider</h2>
-  </header>
-  <section class="entry-content">
-   <p>A torrent of wind and water and the blue disappears from the sky, leaving slate gray and silver streaks like knives cutting, deboning houses and slipping trees from sodden ground. And then nothing. Silence and the sun slips onto the surface for minutes, feeling like hours. Children, tempted to dance in the spitting rain scurry back behind boards over windows and the tempest slams sideways into the world again....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>September 18, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/consider/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Haze</h2>
-  </header>
-  <section class="entry-content">
-   <p>Before you begin, consider the atmosphere of the day. Take stock when the day is humid and hazy and the sun never seems to move beyond the burnt orange hue.
-Or is there not a cloud in sight, with not a drop of moisture in the air and a brilliant cerulean sky above you?
-Perhaps the mood is changeable with a brisk wind and clouds that seem to shift and move every minute....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>September 16, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/haze/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Trees</h2>
-  </header>
-  <section class="entry-content">
-   <p>Take a moment to hold a single, specific tree in your vision.
-Now turn away and try to visualize the same tree in your mind.
-Turn back to the tree and consider that the tree is alive.
-The tree is growing right now; pulling water from the ground.
-Return to holding the same tree tomorrow, and the next day....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>September 15, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/trees/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Breathe</h2>
-  </header>
-  <section class="entry-content">
-   <p>Before action, there is thought, and before thought there is breath.
-Breathe intentionally sometimes. In through your nose, and out through your
-mouth.
-Breathe.
-Take that thought in your head, picture it on a piece of paper, and let the
-paper fly away in a breeze, land in the river running past you, and disappear.
-Now do it with the next thought.
-And the next one.
-And breathe again....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>June 25, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/breathe/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Inverted</h2>
-  </header>
-  <section class="entry-content">
-   <p>Imagine for a moment a tree. Hold the shape of it in your mind a moment. Consider where it draws its strength. The soil, moisture, minerals.
-Now imagine a human. Hold our shape in your mind. Consider where it draws it’s strength. An inverted tree? Not bound to the soil below, but to the heavens above. Inspiration striking like lightining and causing our passions to grow....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>June 15, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/inverted/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Assassin</h2>
-  </header>
-  <section class="entry-content">
-   <p>What if we were indestructable? A blaze of light and ground shaking thunder tears through our awarness and then nothing for a moment; sleep by any other name. And we awake years later coming to understand our new surroundings. A roll of dice and oak tree woods and the ocean are replaced by alpine meadows and pine.
-Isolated from earlier experiences, how would we know? What choice do we have?...</p>
-  </section>
-  <footer class="entry-footer">
-    <time>June 14, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/assassin/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Justice</h2>
-  </header>
-  <section class="entry-content">
-   <p>Caught in the wire, with neither the agility or intelligence to free itself, the sheep suffocates. Justice lays over humans like the shepard to their flock, untangling us in moments of dread, and slaughtering us when our duty is fulfilled....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>June 5, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/justice/"></a>
-</article>
-
-
-
-
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 508
public/categories/misc/index.xml

@@ -1,508 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
-  <channel>
-    <title>misc on UNBLINK</title>
-    <link>https://unbl.ink/categories/misc/</link>
-    <description>Recent content in misc on UNBLINK</description>
-    <generator>Hugo -- gohugo.io</generator>
-    <language>en</language>
-    <lastBuildDate>Mon, 23 Jan 2023 00:00:00 +0000</lastBuildDate><atom:link href="https://unbl.ink/categories/misc/index.xml" rel="self" type="application/rss+xml" />
-    <item>
-      <title>Deploy</title>
-      <link>https://unbl.ink/post/deploy/</link>
-      <pubDate>Mon, 23 Jan 2023 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/deploy/</guid>
-      <description>There are so many things to deploy. Flowers deploy pollen, tricking bees. Navies deploy battleships, tricking their enemy. Corporations deploy lawyers, tricking their customers. People deploy emotions, tricking others.</description>
-    </item>
-    
-    <item>
-      <title>Condition</title>
-      <link>https://unbl.ink/post/condition/</link>
-      <pubDate>Sun, 06 Mar 2022 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/condition/</guid>
-      <description>Some say the human condition is
-Our contract with death.
-But I&#39;ve watched my dog
-Fear death and recoil in disgust.
-No, our curse is
-Being in the present
-While living for a future
-We believe
-May inevitably come.</description>
-    </item>
-    
-    <item>
-      <title>Suns</title>
-      <link>https://unbl.ink/post/suns/</link>
-      <pubDate>Tue, 17 Nov 2020 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/suns/</guid>
-      <description>It was a lot of wind for us, really, the day the wind came up. There were no grand meteorological explanations. No perfect storms. Just wind, blasting from the southeast, pushing over coolers on tables with eggs for sale. Slamming doors left ajar.
-Buddhists believe the world will end in a sequence of seven suns, each causing some specific, systematic failure of a vital life function on Earth. The seventh will consume everything.</description>
-    </item>
-    
-    <item>
-      <title>Curt</title>
-      <link>https://unbl.ink/post/curt/</link>
-      <pubDate>Sat, 24 Oct 2020 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/curt/</guid>
-      <description>Not really cutting someone off, but making sure they understand.</description>
-    </item>
-    
-    <item>
-      <title>Pink</title>
-      <link>https://unbl.ink/post/pink/</link>
-      <pubDate>Fri, 27 Mar 2020 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/pink/</guid>
-      <description>When I put on a pink shirt I immediately think I&amp;rsquo;m doing something bold, unexpected. Fuck you expected culture, I&amp;rsquo;m wearing pink. But really, it&amp;rsquo;s just light red. And I still look askance at people with mo-hawks or giant riser shoes. Silly fools, using their appearance to signal how they&amp;rsquo;re different. I should probably just always wear black.</description>
-    </item>
-    
-    <item>
-      <title>Infection</title>
-      <link>https://unbl.ink/post/infection/</link>
-      <pubDate>Wed, 25 Mar 2020 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/infection/</guid>
-      <description>Under a steel sky, snow falling
-Likely in April, as the garlic
-Struggles to push through soil
-Left on top of it months ago,
-We forget what we used to know.
-People used to get sick. They
-Used to get close to death.
-And the beer on the table
-Promises me a buzz, comfort
-And all the things I want.
-But what about the things
-That I know I don&#39;t want?</description>
-    </item>
-    
-    <item>
-      <title>Preservation</title>
-      <link>https://unbl.ink/post/preservation/</link>
-      <pubDate>Tue, 10 Mar 2020 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/preservation/</guid>
-      <description>I once had occasion to eat mincemeat from a Ball jar processed eight years before my birth. The dubiousness with which I approached that experience says volumes about our ability to preserve things. Even preservation has it&amp;rsquo;s limits, you must agree. A ship, replaced board by board over five hundred years will, at some point not be an exercise in preservation, but change. The slow inevitability of change that causes mountains to fall and entire ecosystems to die.</description>
-    </item>
-    
-    <item>
-      <title>Wind</title>
-      <link>https://unbl.ink/post/wind/</link>
-      <pubDate>Mon, 10 Feb 2020 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/wind/</guid>
-      <description>Traveling ice that builds up on the bows of living organisms I didn&amp;rsquo;t see until just now, and I&amp;rsquo;m wondering now how trees got to be here. Certain species are moving. The North is warmer and they know and are moving. Closer to the warmth they go, but not the one here, covered in ice. It&amp;rsquo;s stuck, stoic, standing its ground. Water drawn up to dizzying heights, to each little branch until a thin paper-like sheet of living cells that turns sunlight into sugar receives exactly as much as it needs to do it&amp;rsquo;s work.</description>
-    </item>
-    
-    <item>
-      <title>Sunk</title>
-      <link>https://unbl.ink/post/sunk/</link>
-      <pubDate>Thu, 19 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/sunk/</guid>
-      <description>It&amp;rsquo;s that sinking feeling you get, when all things being equal you&amp;rsquo;d just rather give up.</description>
-    </item>
-    
-    <item>
-      <title>Garble</title>
-      <link>https://unbl.ink/post/garble/</link>
-      <pubDate>Tue, 17 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/garble/</guid>
-      <description>When sunk costs dig holes in your yard
-And rampant words stand vigil over your house,
-You will be done in your domain
-As his haven turned out all but the best of us.</description>
-    </item>
-    
-    <item>
-      <title>Writing</title>
-      <link>https://unbl.ink/post/writing/</link>
-      <pubDate>Wed, 11 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/writing/</guid>
-      <description>Writing is a technology.
-Writing improves information density.
-Writing creates a moral hazard of intention.
-Writing remembers what we forget.
-Writing destroys relationships.
-Writing cannot replace thought.
-Writing is not often true.</description>
-    </item>
-    
-    <item>
-      <title>Relationship</title>
-      <link>https://unbl.ink/post/relationship/</link>
-      <pubDate>Thu, 05 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/relationship/</guid>
-      <description>And in the end, we were just supposed to get our work done. But our work was hidden from us, so first we had to discover what our work was. Upon discovering where our work was, it turned out we had the wrong work in mind at the start and so we begin to plumb the depths of our found work.
-While plumbing, we resolve to do the right work this time.</description>
-    </item>
-    
-    <item>
-      <title>Load</title>
-      <link>https://unbl.ink/post/load/</link>
-      <pubDate>Tue, 03 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/load/</guid>
-      <description>A wire carries can carry a certain load before the molecular bonds holding the material together are weighted down too much. Is it unreasonable, then, to imagine the tapestry of our lives, held together by invisible bonds, molecules of constitution. And is it not possible that our constitutional bonds carry a certain load?
-What are we do to when we need a wire to carry more load? Faced with the upper bounds of physical laws, we need more wires to share the load.</description>
-    </item>
-    
-    <item>
-      <title>Sky</title>
-      <link>https://unbl.ink/post/sky/</link>
-      <pubDate>Mon, 02 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/sky/</guid>
-      <description>Today the winds shifted abruptly to come from the Northeast, which means cold, and snow, and clouds.
-The sky is a flat, slate gray with wisps of contrast ripped into it by the sheering of the win.
-They sky occupies half of our world view on any given day. Is it any wonder our moods should rise and fall by the contents?</description>
-    </item>
-    
-    <item>
-      <title>Parent</title>
-      <link>https://unbl.ink/post/parent/</link>
-      <pubDate>Sun, 01 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/parent/</guid>
-      <description>To be the parent node, or the source of life
-For something beyond what you yourself contain,
-Is a special position, in a world of relationship.
-The reason for existence for something so small,
-And the source of a desperate persistence in the world,
-Soon strong enough to declare itself independent.
-Of the source of life, only the parent knows
-How fragile the connection can feel sometimes—
-How tenuous the lines that draw the child node back.</description>
-    </item>
-    
-    <item>
-      <title>Interfaces</title>
-      <link>https://unbl.ink/post/interfaces/</link>
-      <pubDate>Tue, 26 Nov 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/interfaces/</guid>
-      <description>If we were in a simulation, everything would be an interface. Modify this, get this response, adjust and modify the next things.
-If we were in a simulation, everything would be relative. Gravity would depend on the flow of time and light would bend and warp.
-If we were in a simulation we would be stuck waiting for the next step to run, unable to go forward at different rates, or ever backwards.</description>
-    </item>
-    
-    <item>
-      <title>Flow</title>
-      <link>https://unbl.ink/post/flow/</link>
-      <pubDate>Sun, 24 Nov 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/flow/</guid>
-      <description>When everything appears to be flowing,
-You tear pages from the book and watch
-As they flutter to fall in the water.
-When everything falls apart around you
-You tear at your hair and think
-As life remains as it was when,
-Everything is flowing.</description>
-    </item>
-    
-    <item>
-      <title>Seat</title>
-      <link>https://unbl.ink/post/seat/</link>
-      <pubDate>Mon, 28 Oct 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/seat/</guid>
-      <description>You knew a guest was in the house
-The seat would be up.
-Sometimes the door would be closed.
-Intimacy breeds familiarity,
-And a sense that what was hidden
-Behind the door was less a right
-Of all, than an expectation.
-We are unashamed, possibly even
-Impolite. But we always know
-When there&#39;s a guest in the house.</description>
-    </item>
-    
-    <item>
-      <title>Flight</title>
-      <link>https://unbl.ink/post/flight/</link>
-      <pubDate>Tue, 22 Oct 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/flight/</guid>
-      <description>And to just lift off, leave
-Everything behind, a fancy
-Flight of. But
-It&#39;s not really possible.
-And leave just to lift off,
-Find yourself gone, a fancy
-Dinner party of. Or
-All your best friends.
-They would miss you. Most likely.
-They would wonder where
-You had lifted off to.
-A flight of fancy from a fancy dinner party.
-All expectation gone.</description>
-    </item>
-    
-    <item>
-      <title>Rome</title>
-      <link>https://unbl.ink/post/rome/</link>
-      <pubDate>Wed, 24 Jul 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/rome/</guid>
-      <description>Fireworks at the colisseum. No. In the colisseum. Chinese tourists, roman candles, in the colisseum. From outside, over the wall. Can we remember everything in the past? Or are we doomed to repeat some things. Can we be doomed when repeation is how we learn?
-Roman candles, Chinese tourists, fireworks in the parking lot at the colisseum. This is not what I had expected.</description>
-    </item>
-    
-    <item>
-      <title>Water</title>
-      <link>https://unbl.ink/post/water/</link>
-      <pubDate>Tue, 23 Jul 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/water/</guid>
-      <description>Rain doesn&amp;rsquo;t help us
-Remember the cause, the
-Animating factor.
-Rain only redistributes
-Colossal amounts of
-Caustic chemicals everywhere.</description>
-    </item>
-    
-    <item>
-      <title>Soft</title>
-      <link>https://unbl.ink/post/soft/</link>
-      <pubDate>Tue, 21 May 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/soft/</guid>
-      <description>The taoists had it right. There is no strength without weakness, no wet without dry. Puffing up his chest, he stares through you, as though through staring he can destroy. But soon, enfilade and then off-guard the underbelly reveals insecurity that air cannot protect.
-All is soft in the middle.</description>
-    </item>
-    
-    <item>
-      <title>Angry</title>
-      <link>https://unbl.ink/post/angry/</link>
-      <pubDate>Thu, 02 May 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/angry/</guid>
-      <description>Spend much time there myself. Depth charges primed, deployed, sinking, waiting, fury unleashed. Proximity and destruction raining shrapnel slowly sinking. No fire down here, just a shudder and ripping, tearing. Nothing to see. All contained by pressure. Crushing pressure, surrounding us all. Can&amp;rsquo;t decide which direction so it goes everywhere.</description>
-    </item>
-    
-    <item>
-      <title>Fixable</title>
-      <link>https://unbl.ink/post/fixable/</link>
-      <pubDate>Fri, 26 Apr 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/fixable/</guid>
-      <description>Under what circumstance did we expect this would work? Days, numbered, slide past and not everything is repaired promptly. Some things are not fixable at all. Amazing, what we&amp;rsquo;ll carry with us, into the subway, the neighbor&amp;rsquo;s house, our last swim in the ocean. Scars from life. Some physical, some metaphysical, all a product of choice and circumstance.</description>
-    </item>
-    
-    <item>
-      <title>Roughly</title>
-      <link>https://unbl.ink/post/roughly/</link>
-      <pubDate>Fri, 19 Apr 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/roughly/</guid>
-      <description>Understanding how everything goes together is, roughly, all that life requires of you.</description>
-    </item>
-    
-    <item>
-      <title>Acadian</title>
-      <link>https://unbl.ink/post/acadian/</link>
-      <pubDate>Wed, 17 Apr 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/acadian/</guid>
-      <description>Diaspora in a compromised land, stretched by forces moving so slowly, slower than we can see but with evidence left everywhere. Culture accretes faster, but still imperceptible, reminding us that no one knows everything, or anything when it comes to that. When it comes to remembering how to live, how we survived the cataclysm, we depend on those who were lost once. We depend on those who knew enough to get us here.</description>
-    </item>
-    
-    <item>
-      <title>Cold</title>
-      <link>https://unbl.ink/post/cold/</link>
-      <pubDate>Sat, 17 Nov 2018 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/cold/</guid>
-      <description>Roadways clutter with debris of passing motorists and the cold draws the filth out, into a grim reflection of the gray, moistureless clouds above. Cold will descend, has descended, descends over the pine forests which stop only when they reach the sea, or we cut them back and till, plant and live.
-There is so little old growth forest left. In the cold, it seems impossible to have such an impact on so vast and inhospitable an expanse.</description>
-    </item>
-    
-    <item>
-      <title>Thunder</title>
-      <link>https://unbl.ink/post/thunder/</link>
-      <pubDate>Sat, 10 Nov 2018 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/thunder/</guid>
-      <description>The thunder rolls, and the lightnng strikes. Under a blanket of clouds, cropped tight to the ground, but not so tight to be fog, the thunder rolls. Gray permeates the sky and the thunder rolls. Scattered rain showers ruin a wedding celebration and the thunder rolls.
-Above the clouds the thunder rolls. The sun shines, and the rain is nothing but what we can imagine.</description>
-    </item>
-    
-    <item>
-      <title>Seethe</title>
-      <link>https://unbl.ink/post/repeatability/</link>
-      <pubDate>Sat, 14 Apr 2018 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/repeatability/</guid>
-      <description>And in the hour of need, surrounded by all our loved ones, even some we missed or had forgotten about, the sea roils and seethes with the fury that only the planet can command.
-In hubris, life clings to boats, tossed at once, and yet fettered to the spot, frozen, unable to move or suffer destruction. It thought itself invincible. But nothing was ever farther from the truth.
-Memory of this life fades and what&amp;rsquo;s left is another rock, slightly warmer than the rest.</description>
-    </item>
-    
-    <item>
-      <title>Typing</title>
-      <link>https://unbl.ink/post/typing/</link>
-      <pubDate>Thu, 12 Apr 2018 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/typing/</guid>
-      <description>It&amp;rsquo;s hard to understand what&amp;rsquo;s not understandable especially in light of what we never understood to begin with. The sound of the keys made a clicking noise that would have driven an average man crazy, but the lack of preconceptions in this case led to the clack, clack, clack, clack to a tap, tap, tap, tap to a drum beat driven into the heart of the most relevant moments of his life.</description>
-    </item>
-    
-    <item>
-      <title>Le Guin</title>
-      <link>https://unbl.ink/post/leguin/</link>
-      <pubDate>Sun, 28 Jan 2018 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/leguin/</guid>
-      <description>“If you cannot or will not imagine the results of your actions, there’s no way you can act morally or responsibly, Little kids can’t do it; babies are morally monsters — completely greedy. Their imagination has to be trained into foresight and empathy.”
-Ursula K. Le Guin </description>
-    </item>
-    
-    <item>
-      <title>Capacity</title>
-      <link>https://unbl.ink/post/capacity/</link>
-      <pubDate>Thu, 04 Jan 2018 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/capacity/</guid>
-      <description>We have the capacity to find joy in all things.
-A negative attitude is worse than a tumor.
-The best of life can come from the worst of life.</description>
-    </item>
-    
-    <item>
-      <title>Death</title>
-      <link>https://unbl.ink/post/death/</link>
-      <pubDate>Tue, 05 Dec 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/death/</guid>
-      <description>A stiff wind blows and snaps the reed in the canebrake. Gilgamesh is dead. And yet we persist. How do we persist? Why do we persist?
-The stories we tell ourselves are fabircations. The world tells only a single story. The story of all life, bending, arcing towards a darkness that knows nothing, that promises nothing. Only the great recycling of energy and mass. Heat and light and dust.</description>
-    </item>
-    
-    <item>
-      <title>UPCs</title>
-      <link>https://unbl.ink/post/upcs/</link>
-      <pubDate>Fri, 10 Nov 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/upcs/</guid>
-      <description>The ability to reason about output, production or worth. If you id, catalog, organize you can gain insight, improvements or reaction. Understanding your universal product codes improves very little. Codes are tools of catagorization ensuring that everything is unique, trackable, known. All our products should be known. That is a universal goal of humanity.</description>
-    </item>
-    
-    <item>
-      <title>Fail</title>
-      <link>https://unbl.ink/post/fail/</link>
-      <pubDate>Wed, 27 Sep 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/fail/</guid>
-      <description>By definition, seasons are temporal. There is no beginning but what we claim, and no end but what we decree. Earth&amp;rsquo;s oscilations, rotations and orbits provide consistency, but only inasmuch as we remember what came before. Life, our Earth, and each day is change. When drawn out a thousand, ten thousand years, do we have a right, or is it even reasonable, to expect anything to be stable?</description>
-    </item>
-    
-    <item>
-      <title>Color</title>
-      <link>https://unbl.ink/post/color/</link>
-      <pubDate>Mon, 25 Sep 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/color/</guid>
-      <description>As an article of faith, collaboration, coordination, we claim red comes before blue. Energy and rates of oscilation bounce around inside our eyes and our brain tells us how to feel. Embracing the abritrary and acknowledging the structure of the world serves to build resilience and ultimately to allow us to consume our mortality and live for others as we live for ourselves.</description>
-    </item>
-    
-    <item>
-      <title>Preschool</title>
-      <link>https://unbl.ink/post/preschool/</link>
-      <pubDate>Wed, 20 Sep 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/preschool/</guid>
-      <description>Wow. What&amp;rsquo;s now? I&amp;rsquo;m not sure I like &amp;hellip; don&amp;rsquo;t want food, no no. Under the table I think that&amp;rsquo;s where I, hey. Who took the piece. You. Give it back. I&amp;rsquo;m sad because he wont give it back and. Yes! I wonder if they have the minions game here. Can I play it? I don&amp;rsquo;t want to go home yet.</description>
-    </item>
-    
-    <item>
-      <title>Consider</title>
-      <link>https://unbl.ink/post/consider/</link>
-      <pubDate>Mon, 18 Sep 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/consider/</guid>
-      <description>A torrent of wind and water and the blue disappears from the sky, leaving slate gray and silver streaks like knives cutting, deboning houses and slipping trees from sodden ground. And then nothing. Silence and the sun slips onto the surface for minutes, feeling like hours. Children, tempted to dance in the spitting rain scurry back behind boards over windows and the tempest slams sideways into the world again.</description>
-    </item>
-    
-    <item>
-      <title>Haze</title>
-      <link>https://unbl.ink/post/haze/</link>
-      <pubDate>Sat, 16 Sep 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/haze/</guid>
-      <description>Before you begin, consider the atmosphere of the day. Take stock when the day is humid and hazy and the sun never seems to move beyond the burnt orange hue.
-Or is there not a cloud in sight, with not a drop of moisture in the air and a brilliant cerulean sky above you?
-Perhaps the mood is changeable with a brisk wind and clouds that seem to shift and move every minute.</description>
-    </item>
-    
-    <item>
-      <title>Trees</title>
-      <link>https://unbl.ink/post/trees/</link>
-      <pubDate>Fri, 15 Sep 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/trees/</guid>
-      <description>Take a moment to hold a single, specific tree in your vision.
-Now turn away and try to visualize the same tree in your mind.
-Turn back to the tree and consider that the tree is alive.
-The tree is growing right now; pulling water from the ground.
-Return to holding the same tree tomorrow, and the next day.</description>
-    </item>
-    
-    <item>
-      <title>Breathe</title>
-      <link>https://unbl.ink/post/breathe/</link>
-      <pubDate>Sun, 25 Jun 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/breathe/</guid>
-      <description>Before action, there is thought, and before thought there is breath.
-Breathe intentionally sometimes. In through your nose, and out through your
-mouth.
-Breathe.
-Take that thought in your head, picture it on a piece of paper, and let the
-paper fly away in a breeze, land in the river running past you, and disappear.
-Now do it with the next thought.
-And the next one.
-And breathe again.</description>
-    </item>
-    
-    <item>
-      <title>Inverted</title>
-      <link>https://unbl.ink/post/inverted/</link>
-      <pubDate>Thu, 15 Jun 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/inverted/</guid>
-      <description>Imagine for a moment a tree. Hold the shape of it in your mind a moment. Consider where it draws its strength. The soil, moisture, minerals.
-Now imagine a human. Hold our shape in your mind. Consider where it draws it&amp;rsquo;s strength. An inverted tree? Not bound to the soil below, but to the heavens above. Inspiration striking like lightining and causing our passions to grow.</description>
-    </item>
-    
-    <item>
-      <title>Assassin</title>
-      <link>https://unbl.ink/post/assassin/</link>
-      <pubDate>Wed, 14 Jun 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/assassin/</guid>
-      <description>What if we were indestructable? A blaze of light and ground shaking thunder tears through our awarness and then nothing for a moment; sleep by any other name. And we awake years later coming to understand our new surroundings. A roll of dice and oak tree woods and the ocean are replaced by alpine meadows and pine.
-Isolated from earlier experiences, how would we know? What choice do we have?</description>
-    </item>
-    
-    <item>
-      <title>Justice</title>
-      <link>https://unbl.ink/post/justice/</link>
-      <pubDate>Mon, 05 Jun 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/justice/</guid>
-      <description>Caught in the wire, with neither the agility or intelligence to free itself, the sheep suffocates. Justice lays over humans like the shepard to their flock, untangling us in moments of dread, and slaughtering us when our duty is fulfilled.</description>
-    </item>
-    
-  </channel>
-</rss>

+ 0 - 10
public/categories/misc/page/1/index.html

@@ -1,10 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <title>https://unbl.ink/categories/misc/</title>
-    <link rel="canonical" href="https://unbl.ink/categories/misc/">
-    <meta name="robots" content="noindex">
-    <meta charset="utf-8">
-    <meta http-equiv="refresh" content="0; url=https://unbl.ink/categories/misc/">
-  </head>
-</html>

+ 0 - 10
public/categories/page/1/index.html

@@ -1,10 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <title>https://unbl.ink/categories/</title>
-    <link rel="canonical" href="https://unbl.ink/categories/">
-    <meta name="robots" content="noindex">
-    <meta charset="utf-8">
-    <meta http-equiv="refresh" content="0; url=https://unbl.ink/categories/">
-  </head>
-</html>

BIN
public/favicon.ico


File diff suppressed because it is too large
+ 0 - 1
public/highlight.min.js


+ 0 - 800
public/index.html

@@ -1,800 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>UNBLINK</title>
-    
-    <meta name="description" content="UNBLINK">
-    <meta name="author" content="">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="list home">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <h1 class="logo"><a href="https://unbl.ink/">UNBLINK</a></h1>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-
-
-
-
-
-
-
-
-
-
-<article class="first-entry">
-  <header class="entry-header">
-    <h2>Deploy</h2>
-  </header>
-  <section class="entry-content">
-   <p>There are so many things to deploy. Flowers deploy pollen, tricking bees. Navies deploy battleships, tricking their enemy. Corporations deploy lawyers, tricking their customers. People deploy emotions, tricking others....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>January 23, 2023</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/deploy/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Condition</h2>
-  </header>
-  <section class="entry-content">
-   <p>Some say the human condition is
-Our contract with death.
-But I&#39;ve watched my dog
-Fear death and recoil in disgust.
-No, our curse is
-Being in the present
-While living for a future
-We believe
-May inevitably come....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>March 6, 2022</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/condition/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Suns</h2>
-  </header>
-  <section class="entry-content">
-   <p>It was a lot of wind for us, really, the day the wind came up. There were no grand meteorological explanations. No perfect storms. Just wind, blasting from the southeast, pushing over coolers on tables with eggs for sale. Slamming doors left ajar.
-Buddhists believe the world will end in a sequence of seven suns, each causing some specific, systematic failure of a vital life function on Earth. The seventh will consume everything....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>November 17, 2020</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/suns/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Curt</h2>
-  </header>
-  <section class="entry-content">
-   <p>Not really cutting someone off, but making sure they understand....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>October 24, 2020</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/curt/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Pink</h2>
-  </header>
-  <section class="entry-content">
-   <p>When I put on a pink shirt I immediately think I’m doing something bold, unexpected. Fuck you expected culture, I’m wearing pink. But really, it’s just light red. And I still look askance at people with mo-hawks or giant riser shoes. Silly fools, using their appearance to signal how they’re different. I should probably just always wear black....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>March 27, 2020</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/pink/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Infection</h2>
-  </header>
-  <section class="entry-content">
-   <p>Under a steel sky, snow falling
-Likely in April, as the garlic
-Struggles to push through soil
-Left on top of it months ago,
-We forget what we used to know.
-People used to get sick. They
-Used to get close to death.
-And the beer on the table
-Promises me a buzz, comfort
-And all the things I want.
-But what about the things
-That I know I don&#39;t want?...</p>
-  </section>
-  <footer class="entry-footer">
-    <time>March 25, 2020</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/infection/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Preservation</h2>
-  </header>
-  <section class="entry-content">
-   <p>I once had occasion to eat mincemeat from a Ball jar processed eight years before my birth. The dubiousness with which I approached that experience says volumes about our ability to preserve things. Even preservation has it’s limits, you must agree. A ship, replaced board by board over five hundred years will, at some point not be an exercise in preservation, but change. The slow inevitability of change that causes mountains to fall and entire ecosystems to die....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>March 10, 2020</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/preservation/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Wind</h2>
-  </header>
-  <section class="entry-content">
-   <p>Traveling ice that builds up on the bows of living organisms I didn’t see until just now, and I’m wondering now how trees got to be here. Certain species are moving. The North is warmer and they know and are moving. Closer to the warmth they go, but not the one here, covered in ice. It’s stuck, stoic, standing its ground. Water drawn up to dizzying heights, to each little branch until a thin paper-like sheet of living cells that turns sunlight into sugar receives exactly as much as it needs to do it’s work....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>February 10, 2020</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/wind/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Sunk</h2>
-  </header>
-  <section class="entry-content">
-   <p>It’s that sinking feeling you get, when all things being equal you’d just rather give up....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 19, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/sunk/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Garble</h2>
-  </header>
-  <section class="entry-content">
-   <p>When sunk costs dig holes in your yard
-And rampant words stand vigil over your house,
-You will be done in your domain
-As his haven turned out all but the best of us....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 17, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/garble/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Writing</h2>
-  </header>
-  <section class="entry-content">
-   <p>Writing is a technology.
-Writing improves information density.
-Writing creates a moral hazard of intention.
-Writing remembers what we forget.
-Writing destroys relationships.
-Writing cannot replace thought.
-Writing is not often true....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 11, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/writing/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Relationship</h2>
-  </header>
-  <section class="entry-content">
-   <p>And in the end, we were just supposed to get our work done. But our work was hidden from us, so first we had to discover what our work was. Upon discovering where our work was, it turned out we had the wrong work in mind at the start and so we begin to plumb the depths of our found work.
-While plumbing, we resolve to do the right work this time....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 5, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/relationship/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Load</h2>
-  </header>
-  <section class="entry-content">
-   <p>A wire carries can carry a certain load before the molecular bonds holding the material together are weighted down too much. Is it unreasonable, then, to imagine the tapestry of our lives, held together by invisible bonds, molecules of constitution. And is it not possible that our constitutional bonds carry a certain load?
-What are we do to when we need a wire to carry more load? Faced with the upper bounds of physical laws, we need more wires to share the load....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 3, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/load/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Sky</h2>
-  </header>
-  <section class="entry-content">
-   <p>Today the winds shifted abruptly to come from the Northeast, which means cold, and snow, and clouds.
-The sky is a flat, slate gray with wisps of contrast ripped into it by the sheering of the win.
-They sky occupies half of our world view on any given day. Is it any wonder our moods should rise and fall by the contents?...</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 2, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/sky/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Parent</h2>
-  </header>
-  <section class="entry-content">
-   <p>To be the parent node, or the source of life
-For something beyond what you yourself contain,
-Is a special position, in a world of relationship.
-The reason for existence for something so small,
-And the source of a desperate persistence in the world,
-Soon strong enough to declare itself independent.
-Of the source of life, only the parent knows
-How fragile the connection can feel sometimes—
-How tenuous the lines that draw the child node back....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 1, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/parent/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Interfaces</h2>
-  </header>
-  <section class="entry-content">
-   <p>If we were in a simulation, everything would be an interface. Modify this, get this response, adjust and modify the next things.
-If we were in a simulation, everything would be relative. Gravity would depend on the flow of time and light would bend and warp.
-If we were in a simulation we would be stuck waiting for the next step to run, unable to go forward at different rates, or ever backwards....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>November 26, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/interfaces/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Flow</h2>
-  </header>
-  <section class="entry-content">
-   <p>When everything appears to be flowing,
-You tear pages from the book and watch
-As they flutter to fall in the water.
-When everything falls apart around you
-You tear at your hair and think
-As life remains as it was when,
-Everything is flowing....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>November 24, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/flow/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Seat</h2>
-  </header>
-  <section class="entry-content">
-   <p>You knew a guest was in the house
-The seat would be up.
-Sometimes the door would be closed.
-Intimacy breeds familiarity,
-And a sense that what was hidden
-Behind the door was less a right
-Of all, than an expectation.
-We are unashamed, possibly even
-Impolite. But we always know
-When there&#39;s a guest in the house....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>October 28, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/seat/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Flight</h2>
-  </header>
-  <section class="entry-content">
-   <p>And to just lift off, leave
-Everything behind, a fancy
-Flight of. But
-It&#39;s not really possible.
-And leave just to lift off,
-Find yourself gone, a fancy
-Dinner party of. Or
-All your best friends.
-They would miss you. Most likely.
-They would wonder where
-You had lifted off to.
-A flight of fancy from a fancy dinner party.
-All expectation gone....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>October 22, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/flight/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Rome</h2>
-  </header>
-  <section class="entry-content">
-   <p>Fireworks at the colisseum. No. In the colisseum. Chinese tourists, roman candles, in the colisseum. From outside, over the wall. Can we remember everything in the past? Or are we doomed to repeat some things. Can we be doomed when repeation is how we learn?
-Roman candles, Chinese tourists, fireworks in the parking lot at the colisseum. This is not what I had expected....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>July 24, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/rome/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Water</h2>
-  </header>
-  <section class="entry-content">
-   <p>Rain doesn’t help us
-Remember the cause, the
-Animating factor.
-Rain only redistributes
-Colossal amounts of
-Caustic chemicals everywhere....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>July 23, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/water/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Soft</h2>
-  </header>
-  <section class="entry-content">
-   <p>The taoists had it right. There is no strength without weakness, no wet without dry. Puffing up his chest, he stares through you, as though through staring he can destroy. But soon, enfilade and then off-guard the underbelly reveals insecurity that air cannot protect.
-All is soft in the middle....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>May 21, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/soft/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Angry</h2>
-  </header>
-  <section class="entry-content">
-   <p>Spend much time there myself. Depth charges primed, deployed, sinking, waiting, fury unleashed. Proximity and destruction raining shrapnel slowly sinking. No fire down here, just a shudder and ripping, tearing. Nothing to see. All contained by pressure. Crushing pressure, surrounding us all. Can’t decide which direction so it goes everywhere....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>May 2, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/angry/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Fixable</h2>
-  </header>
-  <section class="entry-content">
-   <p>Under what circumstance did we expect this would work? Days, numbered, slide past and not everything is repaired promptly. Some things are not fixable at all. Amazing, what we’ll carry with us, into the subway, the neighbor’s house, our last swim in the ocean. Scars from life. Some physical, some metaphysical, all a product of choice and circumstance....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>April 26, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/fixable/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Roughly</h2>
-  </header>
-  <section class="entry-content">
-   <p>Understanding how everything goes together is, roughly, all that life requires of you....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>April 19, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/roughly/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Acadian</h2>
-  </header>
-  <section class="entry-content">
-   <p>Diaspora in a compromised land, stretched by forces moving so slowly, slower than we can see but with evidence left everywhere. Culture accretes faster, but still imperceptible, reminding us that no one knows everything, or anything when it comes to that. When it comes to remembering how to live, how we survived the cataclysm, we depend on those who were lost once. We depend on those who knew enough to get us here....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>April 17, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/acadian/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Cold</h2>
-  </header>
-  <section class="entry-content">
-   <p>Roadways clutter with debris of passing motorists and the cold draws the filth out, into a grim reflection of the gray, moistureless clouds above. Cold will descend, has descended, descends over the pine forests which stop only when they reach the sea, or we cut them back and till, plant and live.
-There is so little old growth forest left. In the cold, it seems impossible to have such an impact on so vast and inhospitable an expanse....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>November 17, 2018</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/cold/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Thunder</h2>
-  </header>
-  <section class="entry-content">
-   <p>The thunder rolls, and the lightnng strikes. Under a blanket of clouds, cropped tight to the ground, but not so tight to be fog, the thunder rolls. Gray permeates the sky and the thunder rolls. Scattered rain showers ruin a wedding celebration and the thunder rolls.
-Above the clouds the thunder rolls. The sun shines, and the rain is nothing but what we can imagine....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>November 10, 2018</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/thunder/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Seethe</h2>
-  </header>
-  <section class="entry-content">
-   <p>And in the hour of need, surrounded by all our loved ones, even some we missed or had forgotten about, the sea roils and seethes with the fury that only the planet can command.
-In hubris, life clings to boats, tossed at once, and yet fettered to the spot, frozen, unable to move or suffer destruction. It thought itself invincible. But nothing was ever farther from the truth.
-Memory of this life fades and what’s left is another rock, slightly warmer than the rest....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>April 14, 2018</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/repeatability/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Typing</h2>
-  </header>
-  <section class="entry-content">
-   <p>It’s hard to understand what’s not understandable especially in light of what we never understood to begin with. The sound of the keys made a clicking noise that would have driven an average man crazy, but the lack of preconceptions in this case led to the clack, clack, clack, clack to a tap, tap, tap, tap to a drum beat driven into the heart of the most relevant moments of his life....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>April 12, 2018</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/typing/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Le Guin</h2>
-  </header>
-  <section class="entry-content">
-   <p>“If you cannot or will not imagine the results of your actions, there’s no way you can act morally or responsibly, Little kids can’t do it; babies are morally monsters — completely greedy. Their imagination has to be trained into foresight and empathy.”
-Ursula K. Le Guin ...</p>
-  </section>
-  <footer class="entry-footer">
-    <time>January 28, 2018</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/leguin/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Capacity</h2>
-  </header>
-  <section class="entry-content">
-   <p>We have the capacity to find joy in all things.
-A negative attitude is worse than a tumor.
-The best of life can come from the worst of life....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>January 4, 2018</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/capacity/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Death</h2>
-  </header>
-  <section class="entry-content">
-   <p>A stiff wind blows and snaps the reed in the canebrake. Gilgamesh is dead. And yet we persist. How do we persist? Why do we persist?
-The stories we tell ourselves are fabircations. The world tells only a single story. The story of all life, bending, arcing towards a darkness that knows nothing, that promises nothing. Only the great recycling of energy and mass. Heat and light and dust....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 5, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/death/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>UPCs</h2>
-  </header>
-  <section class="entry-content">
-   <p>The ability to reason about output, production or worth. If you id, catalog, organize you can gain insight, improvements or reaction. Understanding your universal product codes improves very little. Codes are tools of catagorization ensuring that everything is unique, trackable, known. All our products should be known. That is a universal goal of humanity....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>November 10, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/upcs/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Fail</h2>
-  </header>
-  <section class="entry-content">
-   <p>By definition, seasons are temporal. There is no beginning but what we claim, and no end but what we decree. Earth’s oscilations, rotations and orbits provide consistency, but only inasmuch as we remember what came before. Life, our Earth, and each day is change. When drawn out a thousand, ten thousand years, do we have a right, or is it even reasonable, to expect anything to be stable?...</p>
-  </section>
-  <footer class="entry-footer">
-    <time>September 27, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/fail/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Color</h2>
-  </header>
-  <section class="entry-content">
-   <p>As an article of faith, collaboration, coordination, we claim red comes before blue. Energy and rates of oscilation bounce around inside our eyes and our brain tells us how to feel. Embracing the abritrary and acknowledging the structure of the world serves to build resilience and ultimately to allow us to consume our mortality and live for others as we live for ourselves....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>September 25, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/color/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Preschool</h2>
-  </header>
-  <section class="entry-content">
-   <p>Wow. What’s now? I’m not sure I like … don’t want food, no no. Under the table I think that’s where I, hey. Who took the piece. You. Give it back. I’m sad because he wont give it back and. Yes! I wonder if they have the minions game here. Can I play it? I don’t want to go home yet....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>September 20, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/preschool/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Consider</h2>
-  </header>
-  <section class="entry-content">
-   <p>A torrent of wind and water and the blue disappears from the sky, leaving slate gray and silver streaks like knives cutting, deboning houses and slipping trees from sodden ground. And then nothing. Silence and the sun slips onto the surface for minutes, feeling like hours. Children, tempted to dance in the spitting rain scurry back behind boards over windows and the tempest slams sideways into the world again....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>September 18, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/consider/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Haze</h2>
-  </header>
-  <section class="entry-content">
-   <p>Before you begin, consider the atmosphere of the day. Take stock when the day is humid and hazy and the sun never seems to move beyond the burnt orange hue.
-Or is there not a cloud in sight, with not a drop of moisture in the air and a brilliant cerulean sky above you?
-Perhaps the mood is changeable with a brisk wind and clouds that seem to shift and move every minute....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>September 16, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/haze/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Trees</h2>
-  </header>
-  <section class="entry-content">
-   <p>Take a moment to hold a single, specific tree in your vision.
-Now turn away and try to visualize the same tree in your mind.
-Turn back to the tree and consider that the tree is alive.
-The tree is growing right now; pulling water from the ground.
-Return to holding the same tree tomorrow, and the next day....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>September 15, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/trees/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Breathe</h2>
-  </header>
-  <section class="entry-content">
-   <p>Before action, there is thought, and before thought there is breath.
-Breathe intentionally sometimes. In through your nose, and out through your
-mouth.
-Breathe.
-Take that thought in your head, picture it on a piece of paper, and let the
-paper fly away in a breeze, land in the river running past you, and disappear.
-Now do it with the next thought.
-And the next one.
-And breathe again....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>June 25, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/breathe/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Inverted</h2>
-  </header>
-  <section class="entry-content">
-   <p>Imagine for a moment a tree. Hold the shape of it in your mind a moment. Consider where it draws its strength. The soil, moisture, minerals.
-Now imagine a human. Hold our shape in your mind. Consider where it draws it’s strength. An inverted tree? Not bound to the soil below, but to the heavens above. Inspiration striking like lightining and causing our passions to grow....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>June 15, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/inverted/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Assassin</h2>
-  </header>
-  <section class="entry-content">
-   <p>What if we were indestructable? A blaze of light and ground shaking thunder tears through our awarness and then nothing for a moment; sleep by any other name. And we awake years later coming to understand our new surroundings. A roll of dice and oak tree woods and the ocean are replaced by alpine meadows and pine.
-Isolated from earlier experiences, how would we know? What choice do we have?...</p>
-  </section>
-  <footer class="entry-footer">
-    <time>June 14, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/assassin/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Justice</h2>
-  </header>
-  <section class="entry-content">
-   <p>Caught in the wire, with neither the agility or intelligence to free itself, the sheep suffocates. Justice lays over humans like the shepard to their flock, untangling us in moments of dread, and slaughtering us when our duty is fulfilled....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>June 5, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/justice/"></a>
-</article>
-
-
-
-
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 508
public/index.xml

@@ -1,508 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
-  <channel>
-    <title>UNBLINK</title>
-    <link>https://unbl.ink/</link>
-    <description>Recent content on UNBLINK</description>
-    <generator>Hugo -- gohugo.io</generator>
-    <language>en</language>
-    <lastBuildDate>Mon, 23 Jan 2023 00:00:00 +0000</lastBuildDate><atom:link href="https://unbl.ink/index.xml" rel="self" type="application/rss+xml" />
-    <item>
-      <title>Deploy</title>
-      <link>https://unbl.ink/post/deploy/</link>
-      <pubDate>Mon, 23 Jan 2023 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/deploy/</guid>
-      <description>There are so many things to deploy. Flowers deploy pollen, tricking bees. Navies deploy battleships, tricking their enemy. Corporations deploy lawyers, tricking their customers. People deploy emotions, tricking others.</description>
-    </item>
-    
-    <item>
-      <title>Condition</title>
-      <link>https://unbl.ink/post/condition/</link>
-      <pubDate>Sun, 06 Mar 2022 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/condition/</guid>
-      <description>Some say the human condition is
-Our contract with death.
-But I&#39;ve watched my dog
-Fear death and recoil in disgust.
-No, our curse is
-Being in the present
-While living for a future
-We believe
-May inevitably come.</description>
-    </item>
-    
-    <item>
-      <title>Suns</title>
-      <link>https://unbl.ink/post/suns/</link>
-      <pubDate>Tue, 17 Nov 2020 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/suns/</guid>
-      <description>It was a lot of wind for us, really, the day the wind came up. There were no grand meteorological explanations. No perfect storms. Just wind, blasting from the southeast, pushing over coolers on tables with eggs for sale. Slamming doors left ajar.
-Buddhists believe the world will end in a sequence of seven suns, each causing some specific, systematic failure of a vital life function on Earth. The seventh will consume everything.</description>
-    </item>
-    
-    <item>
-      <title>Curt</title>
-      <link>https://unbl.ink/post/curt/</link>
-      <pubDate>Sat, 24 Oct 2020 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/curt/</guid>
-      <description>Not really cutting someone off, but making sure they understand.</description>
-    </item>
-    
-    <item>
-      <title>Pink</title>
-      <link>https://unbl.ink/post/pink/</link>
-      <pubDate>Fri, 27 Mar 2020 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/pink/</guid>
-      <description>When I put on a pink shirt I immediately think I&amp;rsquo;m doing something bold, unexpected. Fuck you expected culture, I&amp;rsquo;m wearing pink. But really, it&amp;rsquo;s just light red. And I still look askance at people with mo-hawks or giant riser shoes. Silly fools, using their appearance to signal how they&amp;rsquo;re different. I should probably just always wear black.</description>
-    </item>
-    
-    <item>
-      <title>Infection</title>
-      <link>https://unbl.ink/post/infection/</link>
-      <pubDate>Wed, 25 Mar 2020 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/infection/</guid>
-      <description>Under a steel sky, snow falling
-Likely in April, as the garlic
-Struggles to push through soil
-Left on top of it months ago,
-We forget what we used to know.
-People used to get sick. They
-Used to get close to death.
-And the beer on the table
-Promises me a buzz, comfort
-And all the things I want.
-But what about the things
-That I know I don&#39;t want?</description>
-    </item>
-    
-    <item>
-      <title>Preservation</title>
-      <link>https://unbl.ink/post/preservation/</link>
-      <pubDate>Tue, 10 Mar 2020 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/preservation/</guid>
-      <description>I once had occasion to eat mincemeat from a Ball jar processed eight years before my birth. The dubiousness with which I approached that experience says volumes about our ability to preserve things. Even preservation has it&amp;rsquo;s limits, you must agree. A ship, replaced board by board over five hundred years will, at some point not be an exercise in preservation, but change. The slow inevitability of change that causes mountains to fall and entire ecosystems to die.</description>
-    </item>
-    
-    <item>
-      <title>Wind</title>
-      <link>https://unbl.ink/post/wind/</link>
-      <pubDate>Mon, 10 Feb 2020 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/wind/</guid>
-      <description>Traveling ice that builds up on the bows of living organisms I didn&amp;rsquo;t see until just now, and I&amp;rsquo;m wondering now how trees got to be here. Certain species are moving. The North is warmer and they know and are moving. Closer to the warmth they go, but not the one here, covered in ice. It&amp;rsquo;s stuck, stoic, standing its ground. Water drawn up to dizzying heights, to each little branch until a thin paper-like sheet of living cells that turns sunlight into sugar receives exactly as much as it needs to do it&amp;rsquo;s work.</description>
-    </item>
-    
-    <item>
-      <title>Sunk</title>
-      <link>https://unbl.ink/post/sunk/</link>
-      <pubDate>Thu, 19 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/sunk/</guid>
-      <description>It&amp;rsquo;s that sinking feeling you get, when all things being equal you&amp;rsquo;d just rather give up.</description>
-    </item>
-    
-    <item>
-      <title>Garble</title>
-      <link>https://unbl.ink/post/garble/</link>
-      <pubDate>Tue, 17 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/garble/</guid>
-      <description>When sunk costs dig holes in your yard
-And rampant words stand vigil over your house,
-You will be done in your domain
-As his haven turned out all but the best of us.</description>
-    </item>
-    
-    <item>
-      <title>Writing</title>
-      <link>https://unbl.ink/post/writing/</link>
-      <pubDate>Wed, 11 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/writing/</guid>
-      <description>Writing is a technology.
-Writing improves information density.
-Writing creates a moral hazard of intention.
-Writing remembers what we forget.
-Writing destroys relationships.
-Writing cannot replace thought.
-Writing is not often true.</description>
-    </item>
-    
-    <item>
-      <title>Relationship</title>
-      <link>https://unbl.ink/post/relationship/</link>
-      <pubDate>Thu, 05 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/relationship/</guid>
-      <description>And in the end, we were just supposed to get our work done. But our work was hidden from us, so first we had to discover what our work was. Upon discovering where our work was, it turned out we had the wrong work in mind at the start and so we begin to plumb the depths of our found work.
-While plumbing, we resolve to do the right work this time.</description>
-    </item>
-    
-    <item>
-      <title>Load</title>
-      <link>https://unbl.ink/post/load/</link>
-      <pubDate>Tue, 03 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/load/</guid>
-      <description>A wire carries can carry a certain load before the molecular bonds holding the material together are weighted down too much. Is it unreasonable, then, to imagine the tapestry of our lives, held together by invisible bonds, molecules of constitution. And is it not possible that our constitutional bonds carry a certain load?
-What are we do to when we need a wire to carry more load? Faced with the upper bounds of physical laws, we need more wires to share the load.</description>
-    </item>
-    
-    <item>
-      <title>Sky</title>
-      <link>https://unbl.ink/post/sky/</link>
-      <pubDate>Mon, 02 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/sky/</guid>
-      <description>Today the winds shifted abruptly to come from the Northeast, which means cold, and snow, and clouds.
-The sky is a flat, slate gray with wisps of contrast ripped into it by the sheering of the win.
-They sky occupies half of our world view on any given day. Is it any wonder our moods should rise and fall by the contents?</description>
-    </item>
-    
-    <item>
-      <title>Parent</title>
-      <link>https://unbl.ink/post/parent/</link>
-      <pubDate>Sun, 01 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/parent/</guid>
-      <description>To be the parent node, or the source of life
-For something beyond what you yourself contain,
-Is a special position, in a world of relationship.
-The reason for existence for something so small,
-And the source of a desperate persistence in the world,
-Soon strong enough to declare itself independent.
-Of the source of life, only the parent knows
-How fragile the connection can feel sometimes—
-How tenuous the lines that draw the child node back.</description>
-    </item>
-    
-    <item>
-      <title>Interfaces</title>
-      <link>https://unbl.ink/post/interfaces/</link>
-      <pubDate>Tue, 26 Nov 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/interfaces/</guid>
-      <description>If we were in a simulation, everything would be an interface. Modify this, get this response, adjust and modify the next things.
-If we were in a simulation, everything would be relative. Gravity would depend on the flow of time and light would bend and warp.
-If we were in a simulation we would be stuck waiting for the next step to run, unable to go forward at different rates, or ever backwards.</description>
-    </item>
-    
-    <item>
-      <title>Flow</title>
-      <link>https://unbl.ink/post/flow/</link>
-      <pubDate>Sun, 24 Nov 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/flow/</guid>
-      <description>When everything appears to be flowing,
-You tear pages from the book and watch
-As they flutter to fall in the water.
-When everything falls apart around you
-You tear at your hair and think
-As life remains as it was when,
-Everything is flowing.</description>
-    </item>
-    
-    <item>
-      <title>Seat</title>
-      <link>https://unbl.ink/post/seat/</link>
-      <pubDate>Mon, 28 Oct 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/seat/</guid>
-      <description>You knew a guest was in the house
-The seat would be up.
-Sometimes the door would be closed.
-Intimacy breeds familiarity,
-And a sense that what was hidden
-Behind the door was less a right
-Of all, than an expectation.
-We are unashamed, possibly even
-Impolite. But we always know
-When there&#39;s a guest in the house.</description>
-    </item>
-    
-    <item>
-      <title>Flight</title>
-      <link>https://unbl.ink/post/flight/</link>
-      <pubDate>Tue, 22 Oct 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/flight/</guid>
-      <description>And to just lift off, leave
-Everything behind, a fancy
-Flight of. But
-It&#39;s not really possible.
-And leave just to lift off,
-Find yourself gone, a fancy
-Dinner party of. Or
-All your best friends.
-They would miss you. Most likely.
-They would wonder where
-You had lifted off to.
-A flight of fancy from a fancy dinner party.
-All expectation gone.</description>
-    </item>
-    
-    <item>
-      <title>Rome</title>
-      <link>https://unbl.ink/post/rome/</link>
-      <pubDate>Wed, 24 Jul 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/rome/</guid>
-      <description>Fireworks at the colisseum. No. In the colisseum. Chinese tourists, roman candles, in the colisseum. From outside, over the wall. Can we remember everything in the past? Or are we doomed to repeat some things. Can we be doomed when repeation is how we learn?
-Roman candles, Chinese tourists, fireworks in the parking lot at the colisseum. This is not what I had expected.</description>
-    </item>
-    
-    <item>
-      <title>Water</title>
-      <link>https://unbl.ink/post/water/</link>
-      <pubDate>Tue, 23 Jul 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/water/</guid>
-      <description>Rain doesn&amp;rsquo;t help us
-Remember the cause, the
-Animating factor.
-Rain only redistributes
-Colossal amounts of
-Caustic chemicals everywhere.</description>
-    </item>
-    
-    <item>
-      <title>Soft</title>
-      <link>https://unbl.ink/post/soft/</link>
-      <pubDate>Tue, 21 May 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/soft/</guid>
-      <description>The taoists had it right. There is no strength without weakness, no wet without dry. Puffing up his chest, he stares through you, as though through staring he can destroy. But soon, enfilade and then off-guard the underbelly reveals insecurity that air cannot protect.
-All is soft in the middle.</description>
-    </item>
-    
-    <item>
-      <title>Angry</title>
-      <link>https://unbl.ink/post/angry/</link>
-      <pubDate>Thu, 02 May 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/angry/</guid>
-      <description>Spend much time there myself. Depth charges primed, deployed, sinking, waiting, fury unleashed. Proximity and destruction raining shrapnel slowly sinking. No fire down here, just a shudder and ripping, tearing. Nothing to see. All contained by pressure. Crushing pressure, surrounding us all. Can&amp;rsquo;t decide which direction so it goes everywhere.</description>
-    </item>
-    
-    <item>
-      <title>Fixable</title>
-      <link>https://unbl.ink/post/fixable/</link>
-      <pubDate>Fri, 26 Apr 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/fixable/</guid>
-      <description>Under what circumstance did we expect this would work? Days, numbered, slide past and not everything is repaired promptly. Some things are not fixable at all. Amazing, what we&amp;rsquo;ll carry with us, into the subway, the neighbor&amp;rsquo;s house, our last swim in the ocean. Scars from life. Some physical, some metaphysical, all a product of choice and circumstance.</description>
-    </item>
-    
-    <item>
-      <title>Roughly</title>
-      <link>https://unbl.ink/post/roughly/</link>
-      <pubDate>Fri, 19 Apr 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/roughly/</guid>
-      <description>Understanding how everything goes together is, roughly, all that life requires of you.</description>
-    </item>
-    
-    <item>
-      <title>Acadian</title>
-      <link>https://unbl.ink/post/acadian/</link>
-      <pubDate>Wed, 17 Apr 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/acadian/</guid>
-      <description>Diaspora in a compromised land, stretched by forces moving so slowly, slower than we can see but with evidence left everywhere. Culture accretes faster, but still imperceptible, reminding us that no one knows everything, or anything when it comes to that. When it comes to remembering how to live, how we survived the cataclysm, we depend on those who were lost once. We depend on those who knew enough to get us here.</description>
-    </item>
-    
-    <item>
-      <title>Cold</title>
-      <link>https://unbl.ink/post/cold/</link>
-      <pubDate>Sat, 17 Nov 2018 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/cold/</guid>
-      <description>Roadways clutter with debris of passing motorists and the cold draws the filth out, into a grim reflection of the gray, moistureless clouds above. Cold will descend, has descended, descends over the pine forests which stop only when they reach the sea, or we cut them back and till, plant and live.
-There is so little old growth forest left. In the cold, it seems impossible to have such an impact on so vast and inhospitable an expanse.</description>
-    </item>
-    
-    <item>
-      <title>Thunder</title>
-      <link>https://unbl.ink/post/thunder/</link>
-      <pubDate>Sat, 10 Nov 2018 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/thunder/</guid>
-      <description>The thunder rolls, and the lightnng strikes. Under a blanket of clouds, cropped tight to the ground, but not so tight to be fog, the thunder rolls. Gray permeates the sky and the thunder rolls. Scattered rain showers ruin a wedding celebration and the thunder rolls.
-Above the clouds the thunder rolls. The sun shines, and the rain is nothing but what we can imagine.</description>
-    </item>
-    
-    <item>
-      <title>Seethe</title>
-      <link>https://unbl.ink/post/repeatability/</link>
-      <pubDate>Sat, 14 Apr 2018 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/repeatability/</guid>
-      <description>And in the hour of need, surrounded by all our loved ones, even some we missed or had forgotten about, the sea roils and seethes with the fury that only the planet can command.
-In hubris, life clings to boats, tossed at once, and yet fettered to the spot, frozen, unable to move or suffer destruction. It thought itself invincible. But nothing was ever farther from the truth.
-Memory of this life fades and what&amp;rsquo;s left is another rock, slightly warmer than the rest.</description>
-    </item>
-    
-    <item>
-      <title>Typing</title>
-      <link>https://unbl.ink/post/typing/</link>
-      <pubDate>Thu, 12 Apr 2018 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/typing/</guid>
-      <description>It&amp;rsquo;s hard to understand what&amp;rsquo;s not understandable especially in light of what we never understood to begin with. The sound of the keys made a clicking noise that would have driven an average man crazy, but the lack of preconceptions in this case led to the clack, clack, clack, clack to a tap, tap, tap, tap to a drum beat driven into the heart of the most relevant moments of his life.</description>
-    </item>
-    
-    <item>
-      <title>Le Guin</title>
-      <link>https://unbl.ink/post/leguin/</link>
-      <pubDate>Sun, 28 Jan 2018 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/leguin/</guid>
-      <description>“If you cannot or will not imagine the results of your actions, there’s no way you can act morally or responsibly, Little kids can’t do it; babies are morally monsters — completely greedy. Their imagination has to be trained into foresight and empathy.”
-Ursula K. Le Guin </description>
-    </item>
-    
-    <item>
-      <title>Capacity</title>
-      <link>https://unbl.ink/post/capacity/</link>
-      <pubDate>Thu, 04 Jan 2018 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/capacity/</guid>
-      <description>We have the capacity to find joy in all things.
-A negative attitude is worse than a tumor.
-The best of life can come from the worst of life.</description>
-    </item>
-    
-    <item>
-      <title>Death</title>
-      <link>https://unbl.ink/post/death/</link>
-      <pubDate>Tue, 05 Dec 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/death/</guid>
-      <description>A stiff wind blows and snaps the reed in the canebrake. Gilgamesh is dead. And yet we persist. How do we persist? Why do we persist?
-The stories we tell ourselves are fabircations. The world tells only a single story. The story of all life, bending, arcing towards a darkness that knows nothing, that promises nothing. Only the great recycling of energy and mass. Heat and light and dust.</description>
-    </item>
-    
-    <item>
-      <title>UPCs</title>
-      <link>https://unbl.ink/post/upcs/</link>
-      <pubDate>Fri, 10 Nov 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/upcs/</guid>
-      <description>The ability to reason about output, production or worth. If you id, catalog, organize you can gain insight, improvements or reaction. Understanding your universal product codes improves very little. Codes are tools of catagorization ensuring that everything is unique, trackable, known. All our products should be known. That is a universal goal of humanity.</description>
-    </item>
-    
-    <item>
-      <title>Fail</title>
-      <link>https://unbl.ink/post/fail/</link>
-      <pubDate>Wed, 27 Sep 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/fail/</guid>
-      <description>By definition, seasons are temporal. There is no beginning but what we claim, and no end but what we decree. Earth&amp;rsquo;s oscilations, rotations and orbits provide consistency, but only inasmuch as we remember what came before. Life, our Earth, and each day is change. When drawn out a thousand, ten thousand years, do we have a right, or is it even reasonable, to expect anything to be stable?</description>
-    </item>
-    
-    <item>
-      <title>Color</title>
-      <link>https://unbl.ink/post/color/</link>
-      <pubDate>Mon, 25 Sep 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/color/</guid>
-      <description>As an article of faith, collaboration, coordination, we claim red comes before blue. Energy and rates of oscilation bounce around inside our eyes and our brain tells us how to feel. Embracing the abritrary and acknowledging the structure of the world serves to build resilience and ultimately to allow us to consume our mortality and live for others as we live for ourselves.</description>
-    </item>
-    
-    <item>
-      <title>Preschool</title>
-      <link>https://unbl.ink/post/preschool/</link>
-      <pubDate>Wed, 20 Sep 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/preschool/</guid>
-      <description>Wow. What&amp;rsquo;s now? I&amp;rsquo;m not sure I like &amp;hellip; don&amp;rsquo;t want food, no no. Under the table I think that&amp;rsquo;s where I, hey. Who took the piece. You. Give it back. I&amp;rsquo;m sad because he wont give it back and. Yes! I wonder if they have the minions game here. Can I play it? I don&amp;rsquo;t want to go home yet.</description>
-    </item>
-    
-    <item>
-      <title>Consider</title>
-      <link>https://unbl.ink/post/consider/</link>
-      <pubDate>Mon, 18 Sep 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/consider/</guid>
-      <description>A torrent of wind and water and the blue disappears from the sky, leaving slate gray and silver streaks like knives cutting, deboning houses and slipping trees from sodden ground. And then nothing. Silence and the sun slips onto the surface for minutes, feeling like hours. Children, tempted to dance in the spitting rain scurry back behind boards over windows and the tempest slams sideways into the world again.</description>
-    </item>
-    
-    <item>
-      <title>Haze</title>
-      <link>https://unbl.ink/post/haze/</link>
-      <pubDate>Sat, 16 Sep 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/haze/</guid>
-      <description>Before you begin, consider the atmosphere of the day. Take stock when the day is humid and hazy and the sun never seems to move beyond the burnt orange hue.
-Or is there not a cloud in sight, with not a drop of moisture in the air and a brilliant cerulean sky above you?
-Perhaps the mood is changeable with a brisk wind and clouds that seem to shift and move every minute.</description>
-    </item>
-    
-    <item>
-      <title>Trees</title>
-      <link>https://unbl.ink/post/trees/</link>
-      <pubDate>Fri, 15 Sep 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/trees/</guid>
-      <description>Take a moment to hold a single, specific tree in your vision.
-Now turn away and try to visualize the same tree in your mind.
-Turn back to the tree and consider that the tree is alive.
-The tree is growing right now; pulling water from the ground.
-Return to holding the same tree tomorrow, and the next day.</description>
-    </item>
-    
-    <item>
-      <title>Breathe</title>
-      <link>https://unbl.ink/post/breathe/</link>
-      <pubDate>Sun, 25 Jun 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/breathe/</guid>
-      <description>Before action, there is thought, and before thought there is breath.
-Breathe intentionally sometimes. In through your nose, and out through your
-mouth.
-Breathe.
-Take that thought in your head, picture it on a piece of paper, and let the
-paper fly away in a breeze, land in the river running past you, and disappear.
-Now do it with the next thought.
-And the next one.
-And breathe again.</description>
-    </item>
-    
-    <item>
-      <title>Inverted</title>
-      <link>https://unbl.ink/post/inverted/</link>
-      <pubDate>Thu, 15 Jun 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/inverted/</guid>
-      <description>Imagine for a moment a tree. Hold the shape of it in your mind a moment. Consider where it draws its strength. The soil, moisture, minerals.
-Now imagine a human. Hold our shape in your mind. Consider where it draws it&amp;rsquo;s strength. An inverted tree? Not bound to the soil below, but to the heavens above. Inspiration striking like lightining and causing our passions to grow.</description>
-    </item>
-    
-    <item>
-      <title>Assassin</title>
-      <link>https://unbl.ink/post/assassin/</link>
-      <pubDate>Wed, 14 Jun 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/assassin/</guid>
-      <description>What if we were indestructable? A blaze of light and ground shaking thunder tears through our awarness and then nothing for a moment; sleep by any other name. And we awake years later coming to understand our new surroundings. A roll of dice and oak tree woods and the ocean are replaced by alpine meadows and pine.
-Isolated from earlier experiences, how would we know? What choice do we have?</description>
-    </item>
-    
-    <item>
-      <title>Justice</title>
-      <link>https://unbl.ink/post/justice/</link>
-      <pubDate>Mon, 05 Jun 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/justice/</guid>
-      <description>Caught in the wire, with neither the agility or intelligence to free itself, the sheep suffocates. Justice lays over humans like the shepard to their flock, untangling us in moments of dread, and slaughtering us when our duty is fulfilled.</description>
-    </item>
-    
-  </channel>
-</rss>

+ 0 - 10
public/page/1/index.html

@@ -1,10 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <title>https://unbl.ink/</title>
-    <link rel="canonical" href="https://unbl.ink/">
-    <meta name="robots" content="noindex">
-    <meta charset="utf-8">
-    <meta http-equiv="refresh" content="0; url=https://unbl.ink/">
-  </head>
-</html>

+ 0 - 133
public/post/acadian/index.html

@@ -1,133 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Acadian - UNBLINK</title>
-    
-    <meta name="description" content="Diaspora in a compromised land, stretched by forces moving so slowly, slower than we can see but with evidence left everywhere. Culture accretes faster, but still imperceptible, reminding us that no one knows everything, or anything when it comes to that. When it comes to remembering how to live, how we survived the cataclysm, we depend on those who were lost once. We depend on those who knew enough to get us here.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Acadian</h1>
-    <div class="post-meta">[CP] · April 17, 2019</div>
-  </header>
-  <div class="post-content"><p>Diaspora in a compromised land, stretched by forces moving so slowly, slower
-than we can see but with evidence left everywhere. Culture accretes faster, but
-still imperceptible, reminding us that no one knows everything, or anything when
-it comes to that. When it comes to remembering how to live, how we survived the
-cataclysm, we depend on those who were lost once. We depend on those who knew
-enough to get us here. We depend on those around us now, able to carry our hopes
-and our dreams of returning to a place we&rsquo;ve only been told about.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 131
public/post/angry/index.html

@@ -1,131 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Angry - UNBLINK</title>
-    
-    <meta name="description" content="Spend much time there myself. Depth charges primed, deployed, sinking, waiting, fury unleashed. Proximity and destruction raining shrapnel slowly sinking. No fire down here, just a shudder and ripping, tearing. Nothing to see. All contained by pressure. Crushing pressure, surrounding us all. Can&rsquo;t decide which direction so it goes everywhere.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Angry</h1>
-    <div class="post-meta">[CP] · May 2, 2019</div>
-  </header>
-  <div class="post-content"><p>Spend much time there myself. Depth charges primed, deployed, sinking, waiting,
-fury unleashed. Proximity and destruction raining shrapnel slowly sinking.  No
-fire down here, just a shudder and ripping, tearing. Nothing to see. All
-contained by pressure. Crushing pressure, surrounding us all.  Can&rsquo;t decide
-which direction so it goes everywhere.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 140
public/post/assassin/index.html

@@ -1,140 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Assassin - UNBLINK</title>
-    
-    <meta name="description" content="What if we were indestructable? A blaze of light and ground shaking thunder tears through our awarness and then nothing for a moment; sleep by any other name. And we awake years later coming to understand our new surroundings. A roll of dice and oak tree woods and the ocean are replaced by alpine meadows and pine.
-Isolated from earlier experiences, how would we know? What choice do we have?">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Assassin</h1>
-    <div class="post-meta">[CP] · June 14, 2017</div>
-  </header>
-  <div class="post-content"><p>What if we were indestructable? A blaze of light and ground shaking thunder
-tears through our awarness and then nothing for a moment; sleep by any other
-name. And we awake years later coming to understand our new surroundings. A
-roll of dice and oak tree woods and the ocean are replaced by alpine meadows
-and pine.</p>
-<p>Isolated from earlier experiences, how would we know? What choice do we
-have?</p>
-<p>In a world where joy and sorrow live almost side by side, and where
-choices are often between bad and horrible, how can we be made whole?</p>
-<p>What if we were indestructable? Our bodies grow, mature and die, but we
-never die. How many times would this have to happen for us to discover
-that the path to right thought was in front of us the whole time? Many
-times, is my guess.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 152
public/post/breathe/index.html

@@ -1,152 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Breathe - UNBLINK</title>
-    
-    <meta name="description" content="Before action, there is thought, and before thought there is breath.
-Breathe intentionally sometimes. In through your nose, and out through your
-mouth.
-Breathe.
-Take that thought in your head, picture it on a piece of paper, and let the
-paper fly away in a breeze, land in the river running past you, and disappear.
-Now do it with the next thought.
-And the next one.
-And breathe again.">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Breathe</h1>
-    <div class="post-meta">[Colin Powell] · June 25, 2017</div>
-  </header>
-  <div class="post-content">
-<p class="verse">
-Before action, there is thought, and before thought there is breath.<br />
-<br />
-Breathe intentionally sometimes. In through your nose, and out through your<br />
-mouth.<br />
-<br />
-Breathe.<br />
-<br />
-Take that thought in your head, picture it on a piece of paper, and let the<br />
-paper fly away in a breeze, land in the river running past you, and disappear.<br />
-<br />
-Now do it with the next thought.<br />
-<br />
-And the next one.<br />
-<br />
-And breathe again.<br />
-</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 131
public/post/capacity/index.html

@@ -1,131 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Capacity - UNBLINK</title>
-    
-    <meta name="description" content="We have the capacity to find joy in all things.
-A negative attitude is worse than a tumor.
-The best of life can come from the worst of life.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Capacity</h1>
-    <div class="post-meta">[CP] · January 4, 2018</div>
-  </header>
-  <div class="post-content"><p>We have the capacity to find joy in all things.</p>
-<p>A negative attitude is worse than a tumor.</p>
-<p>The best of life can come from the worst of life.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 133
public/post/cold/index.html

@@ -1,133 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Cold - UNBLINK</title>
-    
-    <meta name="description" content="Roadways clutter with debris of passing motorists and the cold draws the filth out, into a grim reflection of the gray, moistureless clouds above. Cold will descend, has descended, descends over the pine forests which stop only when they reach the sea, or we cut them back and till, plant and live.
-There is so little old growth forest left. In the cold, it seems impossible to have such an impact on so vast and inhospitable an expanse.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Cold</h1>
-    <div class="post-meta">[CP] · November 17, 2018</div>
-  </header>
-  <div class="post-content"><p>Roadways clutter with debris of passing motorists and the cold draws the filth
-out, into a grim reflection of the gray, moistureless clouds above. Cold will
-descend, has descended, descends over the pine forests which stop only when they
-reach the sea, or we cut them back and till, plant and live.</p>
-<p>There is so little old growth forest left. In the cold, it seems impossible to
-have such an impact on so vast and inhospitable an expanse.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 127
public/post/color/index.html

@@ -1,127 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Color - UNBLINK</title>
-    
-    <meta name="description" content="As an article of faith, collaboration, coordination, we claim red comes before blue. Energy and rates of oscilation bounce around inside our eyes and our brain tells us how to feel. Embracing the abritrary and acknowledging the structure of the world serves to build resilience and ultimately to allow us to consume our mortality and live for others as we live for ourselves.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Color</h1>
-    <div class="post-meta">[CP] · September 25, 2017</div>
-  </header>
-  <div class="post-content"><p>As an article of faith, collaboration, coordination, we claim red comes before blue. Energy and rates of oscilation bounce around inside our eyes and our brain tells us how to feel. Embracing the abritrary and acknowledging the structure of the world serves to build resilience and ultimately to allow us to consume our mortality and live for others as we live for ourselves.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 149
public/post/condition/index.html

@@ -1,149 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Condition - UNBLINK</title>
-    
-    <meta name="description" content="Some say the human condition is
-Our contract with death.
-But I&#39;ve watched my dog
-Fear death and recoil in disgust.
-No, our curse is
-Being in the present
-While living for a future
-We believe
-May inevitably come.">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Condition</h1>
-    <div class="post-meta">[Colin Powell] · March 6, 2022</div>
-  </header>
-  <div class="post-content">
-<div class="verse">
-
-Some say the human condition is<br />
-Our contract with death.<br />
-But I've watched my dog<br />
-Fear death and recoil in disgust.<br />
-<br />
-No, our curse is<br />
-Being in the present<br />
-While living for a future<br />
-We believe<br />
-May inevitably come.<br />
-
-</div>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 127
public/post/consider/index.html

@@ -1,127 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Consider - UNBLINK</title>
-    
-    <meta name="description" content="A torrent of wind and water and the blue disappears from the sky, leaving slate gray and silver streaks like knives cutting, deboning houses and slipping trees from sodden ground. And then nothing. Silence and the sun slips onto the surface for minutes, feeling like hours. Children, tempted to dance in the spitting rain scurry back behind boards over windows and the tempest slams sideways into the world again.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Consider</h1>
-    <div class="post-meta">[CP] · September 18, 2017</div>
-  </header>
-  <div class="post-content"><p>A torrent of wind and water and the blue disappears from the sky, leaving slate gray and silver streaks like knives cutting, deboning houses and slipping trees from sodden ground. And then nothing. Silence and the sun slips onto the surface for minutes, feeling like hours. Children, tempted to dance in the spitting rain scurry back behind boards over windows and the tempest slams sideways into the world again.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 127
public/post/curt/index.html

@@ -1,127 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Curt - UNBLINK</title>
-    
-    <meta name="description" content="Not really cutting someone off, but making sure they understand.">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Curt</h1>
-    <div class="post-meta">[Colin Powell] · October 24, 2020</div>
-  </header>
-  <div class="post-content"><p>Not really cutting someone off, but making sure they understand.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 129
public/post/death/index.html

@@ -1,129 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Death - UNBLINK</title>
-    
-    <meta name="description" content="A stiff wind blows and snaps the reed in the canebrake. Gilgamesh is dead. And yet we persist. How do we persist? Why do we persist?
-The stories we tell ourselves are fabircations. The world tells only a single story. The story of all life, bending, arcing towards a darkness that knows nothing, that promises nothing. Only the great recycling of energy and mass. Heat and light and dust.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Death</h1>
-    <div class="post-meta">[CP] · December 5, 2017</div>
-  </header>
-  <div class="post-content"><p>A stiff wind blows and snaps the reed in the canebrake. Gilgamesh is dead. And yet we persist. How do we persist? Why do we persist?</p>
-<p>The stories we tell ourselves are fabircations. The world tells only a single story. The story of all life, bending, arcing towards a darkness that knows nothing, that promises nothing. Only the great recycling of energy and mass. Heat and light and dust.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 127
public/post/deploy/index.html

@@ -1,127 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Deploy - UNBLINK</title>
-    
-    <meta name="description" content="There are so many things to deploy. Flowers deploy pollen, tricking bees. Navies deploy battleships, tricking their enemy. Corporations deploy lawyers, tricking their customers. People deploy emotions, tricking others.">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Deploy</h1>
-    <div class="post-meta">[Colin Powell] · January 23, 2023</div>
-  </header>
-  <div class="post-content"><p>There are so many things to deploy. Flowers deploy pollen, tricking bees. Navies deploy battleships, tricking their enemy. Corporations deploy lawyers, tricking their customers. People deploy emotions, tricking others.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 127
public/post/fail/index.html

@@ -1,127 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Fail - UNBLINK</title>
-    
-    <meta name="description" content="By definition, seasons are temporal. There is no beginning but what we claim, and no end but what we decree. Earth&rsquo;s oscilations, rotations and orbits provide consistency, but only inasmuch as we remember what came before. Life, our Earth, and each day is change. When drawn out a thousand, ten thousand years, do we have a right, or is it even reasonable, to expect anything to be stable?">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Fail</h1>
-    <div class="post-meta">[CP] · September 27, 2017</div>
-  </header>
-  <div class="post-content"><p>By definition, seasons are temporal. There is no beginning but what we claim, and no end but what we decree. Earth&rsquo;s oscilations, rotations and orbits provide consistency, but only inasmuch as we remember what came before. Life, our Earth, and each day is change. When drawn out a thousand, ten thousand years, do we have a right, or is it even reasonable, to expect anything to be stable?</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 131
public/post/fixable/index.html

@@ -1,131 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Fixable - UNBLINK</title>
-    
-    <meta name="description" content="Under what circumstance did we expect this would work? Days, numbered, slide past and not everything is repaired promptly. Some things are not fixable at all. Amazing, what we&rsquo;ll carry with us, into the subway, the neighbor&rsquo;s house, our last swim in the ocean. Scars from life. Some physical, some metaphysical, all a product of choice and circumstance.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Fixable</h1>
-    <div class="post-meta">[CP] · April 26, 2019</div>
-  </header>
-  <div class="post-content"><p>Under what circumstance did we expect this would work? Days, numbered, slide
-past and not everything is repaired promptly. Some things are not fixable at all.
-Amazing, what we&rsquo;ll carry with us, into the subway, the neighbor&rsquo;s house, our
-last swim in the ocean. Scars from life. Some physical, some metaphysical, all a
-product of choice and circumstance.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 159
public/post/flight/index.html

@@ -1,159 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Flight - UNBLINK</title>
-    
-    <meta name="description" content="And to just lift off, leave
-Everything behind, a fancy
-Flight of. But
-It&#39;s not really possible.
-And leave just to lift off,
-Find yourself gone, a fancy
-Dinner party of. Or
-All your best friends.
-They would miss you. Most likely.
-They would wonder where
-You had lifted off to.
-A flight of fancy from a fancy dinner party.
-All expectation gone.">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Flight</h1>
-    <div class="post-meta">[Colin Powell] · October 22, 2019</div>
-  </header>
-  <div class="post-content">
-<p class="verse">
-And to just lift off, leave<br />
-Everything behind, a fancy<br />
-Flight of. But<br />
-<br />
-It's not really possible.<br />
-<br />
-And leave just to lift off,<br />
-Find yourself gone, a fancy<br />
-Dinner party of. Or<br />
-<br />
-All your best friends.<br />
-<br />
-They would miss you. Most likely.<br />
-<br />
-They would wonder where<br />
-You had lifted off to.<br />
-A flight of fancy from a fancy dinner party.<br />
-All expectation gone.<br />
-</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 144
public/post/flow/index.html

@@ -1,144 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Flow - UNBLINK</title>
-    
-    <meta name="description" content="When everything appears to be flowing,
-You tear pages from the book and watch
-As they flutter to fall in the water.
-When everything falls apart around you
-You tear at your hair and think
-As life remains as it was when,
-Everything is flowing.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Flow</h1>
-    <div class="post-meta">[CP] · November 24, 2019</div>
-  </header>
-  <div class="post-content">
-<p class="verse">
-When everything appears to be flowing,<br />
-You tear pages from the book and watch<br />
-As they flutter to fall in the water.<br />
-<br />
-When everything falls apart around you<br />
-You tear at your hair and think<br />
-As life remains as it was when,<br />
-<br />
-Everything is flowing.<br />
-</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 136
public/post/garble/index.html

@@ -1,136 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Garble - UNBLINK</title>
-    
-    <meta name="description" content="When sunk costs dig holes in your yard
-And rampant words stand vigil over your house,
-You will be done in your domain
-As his haven turned out all but the best of us.">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Garble</h1>
-    <div class="post-meta">[Colin Powell] · December 17, 2019</div>
-  </header>
-  <div class="post-content">
-<p class="verse">
-When sunk costs dig holes in your yard<br />
-And rampant words stand vigil over your house,<br />
-You will be done in your domain<br />
-As his haven turned out all but the best of us.<br />
-</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 137
public/post/haze/index.html

@@ -1,137 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Haze - UNBLINK</title>
-    
-    <meta name="description" content="Before you begin, consider the atmosphere of the day. Take stock when the day is humid and hazy and the sun never seems to move beyond the burnt orange hue.
-Or is there not a cloud in sight, with not a drop of moisture in the air and a brilliant cerulean sky above you?
-Perhaps the mood is changeable with a brisk wind and clouds that seem to shift and move every minute.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Haze</h1>
-    <div class="post-meta">[CP] · September 16, 2017</div>
-  </header>
-  <div class="post-content"><p>Before you begin, consider the atmosphere of the day. Take stock when the day is
-humid and hazy and the sun never seems to move beyond the burnt orange hue.</p>
-<p>Or is there not a cloud in sight, with not a drop of moisture in the air and a
-brilliant cerulean sky above you?</p>
-<p>Perhaps the mood is changeable with a brisk wind and clouds that seem to shift
-and move every minute.</p>
-<p>Whatever your day, take stock that how the day presents itself to you can have
-an impact on how you perceive yourself and those around you. Now act accordingly
-and maintain your virtue.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 802
public/post/index.html

@@ -1,802 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Posts - UNBLINK</title>
-    
-    <meta name="description" content="UNBLINK">
-    <meta name="author" content="">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="list">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-
-
-
-<header class="page-header">
-  <h1>Posts</h1>
-</header>
-
-
-
-
-
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Deploy</h2>
-  </header>
-  <section class="entry-content">
-   <p>There are so many things to deploy. Flowers deploy pollen, tricking bees. Navies deploy battleships, tricking their enemy. Corporations deploy lawyers, tricking their customers. People deploy emotions, tricking others....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>January 23, 2023</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/deploy/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Condition</h2>
-  </header>
-  <section class="entry-content">
-   <p>Some say the human condition is
-Our contract with death.
-But I&#39;ve watched my dog
-Fear death and recoil in disgust.
-No, our curse is
-Being in the present
-While living for a future
-We believe
-May inevitably come....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>March 6, 2022</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/condition/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Suns</h2>
-  </header>
-  <section class="entry-content">
-   <p>It was a lot of wind for us, really, the day the wind came up. There were no grand meteorological explanations. No perfect storms. Just wind, blasting from the southeast, pushing over coolers on tables with eggs for sale. Slamming doors left ajar.
-Buddhists believe the world will end in a sequence of seven suns, each causing some specific, systematic failure of a vital life function on Earth. The seventh will consume everything....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>November 17, 2020</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/suns/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Curt</h2>
-  </header>
-  <section class="entry-content">
-   <p>Not really cutting someone off, but making sure they understand....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>October 24, 2020</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/curt/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Pink</h2>
-  </header>
-  <section class="entry-content">
-   <p>When I put on a pink shirt I immediately think I’m doing something bold, unexpected. Fuck you expected culture, I’m wearing pink. But really, it’s just light red. And I still look askance at people with mo-hawks or giant riser shoes. Silly fools, using their appearance to signal how they’re different. I should probably just always wear black....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>March 27, 2020</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/pink/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Infection</h2>
-  </header>
-  <section class="entry-content">
-   <p>Under a steel sky, snow falling
-Likely in April, as the garlic
-Struggles to push through soil
-Left on top of it months ago,
-We forget what we used to know.
-People used to get sick. They
-Used to get close to death.
-And the beer on the table
-Promises me a buzz, comfort
-And all the things I want.
-But what about the things
-That I know I don&#39;t want?...</p>
-  </section>
-  <footer class="entry-footer">
-    <time>March 25, 2020</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/infection/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Preservation</h2>
-  </header>
-  <section class="entry-content">
-   <p>I once had occasion to eat mincemeat from a Ball jar processed eight years before my birth. The dubiousness with which I approached that experience says volumes about our ability to preserve things. Even preservation has it’s limits, you must agree. A ship, replaced board by board over five hundred years will, at some point not be an exercise in preservation, but change. The slow inevitability of change that causes mountains to fall and entire ecosystems to die....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>March 10, 2020</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/preservation/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Wind</h2>
-  </header>
-  <section class="entry-content">
-   <p>Traveling ice that builds up on the bows of living organisms I didn’t see until just now, and I’m wondering now how trees got to be here. Certain species are moving. The North is warmer and they know and are moving. Closer to the warmth they go, but not the one here, covered in ice. It’s stuck, stoic, standing its ground. Water drawn up to dizzying heights, to each little branch until a thin paper-like sheet of living cells that turns sunlight into sugar receives exactly as much as it needs to do it’s work....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>February 10, 2020</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/wind/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Sunk</h2>
-  </header>
-  <section class="entry-content">
-   <p>It’s that sinking feeling you get, when all things being equal you’d just rather give up....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 19, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/sunk/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Garble</h2>
-  </header>
-  <section class="entry-content">
-   <p>When sunk costs dig holes in your yard
-And rampant words stand vigil over your house,
-You will be done in your domain
-As his haven turned out all but the best of us....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 17, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/garble/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Writing</h2>
-  </header>
-  <section class="entry-content">
-   <p>Writing is a technology.
-Writing improves information density.
-Writing creates a moral hazard of intention.
-Writing remembers what we forget.
-Writing destroys relationships.
-Writing cannot replace thought.
-Writing is not often true....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 11, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/writing/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Relationship</h2>
-  </header>
-  <section class="entry-content">
-   <p>And in the end, we were just supposed to get our work done. But our work was hidden from us, so first we had to discover what our work was. Upon discovering where our work was, it turned out we had the wrong work in mind at the start and so we begin to plumb the depths of our found work.
-While plumbing, we resolve to do the right work this time....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 5, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/relationship/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Load</h2>
-  </header>
-  <section class="entry-content">
-   <p>A wire carries can carry a certain load before the molecular bonds holding the material together are weighted down too much. Is it unreasonable, then, to imagine the tapestry of our lives, held together by invisible bonds, molecules of constitution. And is it not possible that our constitutional bonds carry a certain load?
-What are we do to when we need a wire to carry more load? Faced with the upper bounds of physical laws, we need more wires to share the load....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 3, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/load/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Sky</h2>
-  </header>
-  <section class="entry-content">
-   <p>Today the winds shifted abruptly to come from the Northeast, which means cold, and snow, and clouds.
-The sky is a flat, slate gray with wisps of contrast ripped into it by the sheering of the win.
-They sky occupies half of our world view on any given day. Is it any wonder our moods should rise and fall by the contents?...</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 2, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/sky/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Parent</h2>
-  </header>
-  <section class="entry-content">
-   <p>To be the parent node, or the source of life
-For something beyond what you yourself contain,
-Is a special position, in a world of relationship.
-The reason for existence for something so small,
-And the source of a desperate persistence in the world,
-Soon strong enough to declare itself independent.
-Of the source of life, only the parent knows
-How fragile the connection can feel sometimes—
-How tenuous the lines that draw the child node back....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 1, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/parent/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Interfaces</h2>
-  </header>
-  <section class="entry-content">
-   <p>If we were in a simulation, everything would be an interface. Modify this, get this response, adjust and modify the next things.
-If we were in a simulation, everything would be relative. Gravity would depend on the flow of time and light would bend and warp.
-If we were in a simulation we would be stuck waiting for the next step to run, unable to go forward at different rates, or ever backwards....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>November 26, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/interfaces/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Flow</h2>
-  </header>
-  <section class="entry-content">
-   <p>When everything appears to be flowing,
-You tear pages from the book and watch
-As they flutter to fall in the water.
-When everything falls apart around you
-You tear at your hair and think
-As life remains as it was when,
-Everything is flowing....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>November 24, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/flow/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Seat</h2>
-  </header>
-  <section class="entry-content">
-   <p>You knew a guest was in the house
-The seat would be up.
-Sometimes the door would be closed.
-Intimacy breeds familiarity,
-And a sense that what was hidden
-Behind the door was less a right
-Of all, than an expectation.
-We are unashamed, possibly even
-Impolite. But we always know
-When there&#39;s a guest in the house....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>October 28, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/seat/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Flight</h2>
-  </header>
-  <section class="entry-content">
-   <p>And to just lift off, leave
-Everything behind, a fancy
-Flight of. But
-It&#39;s not really possible.
-And leave just to lift off,
-Find yourself gone, a fancy
-Dinner party of. Or
-All your best friends.
-They would miss you. Most likely.
-They would wonder where
-You had lifted off to.
-A flight of fancy from a fancy dinner party.
-All expectation gone....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>October 22, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/flight/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Rome</h2>
-  </header>
-  <section class="entry-content">
-   <p>Fireworks at the colisseum. No. In the colisseum. Chinese tourists, roman candles, in the colisseum. From outside, over the wall. Can we remember everything in the past? Or are we doomed to repeat some things. Can we be doomed when repeation is how we learn?
-Roman candles, Chinese tourists, fireworks in the parking lot at the colisseum. This is not what I had expected....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>July 24, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/rome/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Water</h2>
-  </header>
-  <section class="entry-content">
-   <p>Rain doesn’t help us
-Remember the cause, the
-Animating factor.
-Rain only redistributes
-Colossal amounts of
-Caustic chemicals everywhere....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>July 23, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/water/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Soft</h2>
-  </header>
-  <section class="entry-content">
-   <p>The taoists had it right. There is no strength without weakness, no wet without dry. Puffing up his chest, he stares through you, as though through staring he can destroy. But soon, enfilade and then off-guard the underbelly reveals insecurity that air cannot protect.
-All is soft in the middle....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>May 21, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/soft/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Angry</h2>
-  </header>
-  <section class="entry-content">
-   <p>Spend much time there myself. Depth charges primed, deployed, sinking, waiting, fury unleashed. Proximity and destruction raining shrapnel slowly sinking. No fire down here, just a shudder and ripping, tearing. Nothing to see. All contained by pressure. Crushing pressure, surrounding us all. Can’t decide which direction so it goes everywhere....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>May 2, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/angry/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Fixable</h2>
-  </header>
-  <section class="entry-content">
-   <p>Under what circumstance did we expect this would work? Days, numbered, slide past and not everything is repaired promptly. Some things are not fixable at all. Amazing, what we’ll carry with us, into the subway, the neighbor’s house, our last swim in the ocean. Scars from life. Some physical, some metaphysical, all a product of choice and circumstance....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>April 26, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/fixable/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Roughly</h2>
-  </header>
-  <section class="entry-content">
-   <p>Understanding how everything goes together is, roughly, all that life requires of you....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>April 19, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/roughly/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Acadian</h2>
-  </header>
-  <section class="entry-content">
-   <p>Diaspora in a compromised land, stretched by forces moving so slowly, slower than we can see but with evidence left everywhere. Culture accretes faster, but still imperceptible, reminding us that no one knows everything, or anything when it comes to that. When it comes to remembering how to live, how we survived the cataclysm, we depend on those who were lost once. We depend on those who knew enough to get us here....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>April 17, 2019</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/acadian/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Cold</h2>
-  </header>
-  <section class="entry-content">
-   <p>Roadways clutter with debris of passing motorists and the cold draws the filth out, into a grim reflection of the gray, moistureless clouds above. Cold will descend, has descended, descends over the pine forests which stop only when they reach the sea, or we cut them back and till, plant and live.
-There is so little old growth forest left. In the cold, it seems impossible to have such an impact on so vast and inhospitable an expanse....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>November 17, 2018</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/cold/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Thunder</h2>
-  </header>
-  <section class="entry-content">
-   <p>The thunder rolls, and the lightnng strikes. Under a blanket of clouds, cropped tight to the ground, but not so tight to be fog, the thunder rolls. Gray permeates the sky and the thunder rolls. Scattered rain showers ruin a wedding celebration and the thunder rolls.
-Above the clouds the thunder rolls. The sun shines, and the rain is nothing but what we can imagine....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>November 10, 2018</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/thunder/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Seethe</h2>
-  </header>
-  <section class="entry-content">
-   <p>And in the hour of need, surrounded by all our loved ones, even some we missed or had forgotten about, the sea roils and seethes with the fury that only the planet can command.
-In hubris, life clings to boats, tossed at once, and yet fettered to the spot, frozen, unable to move or suffer destruction. It thought itself invincible. But nothing was ever farther from the truth.
-Memory of this life fades and what’s left is another rock, slightly warmer than the rest....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>April 14, 2018</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/repeatability/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Typing</h2>
-  </header>
-  <section class="entry-content">
-   <p>It’s hard to understand what’s not understandable especially in light of what we never understood to begin with. The sound of the keys made a clicking noise that would have driven an average man crazy, but the lack of preconceptions in this case led to the clack, clack, clack, clack to a tap, tap, tap, tap to a drum beat driven into the heart of the most relevant moments of his life....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>April 12, 2018</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/typing/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Le Guin</h2>
-  </header>
-  <section class="entry-content">
-   <p>“If you cannot or will not imagine the results of your actions, there’s no way you can act morally or responsibly, Little kids can’t do it; babies are morally monsters — completely greedy. Their imagination has to be trained into foresight and empathy.”
-Ursula K. Le Guin ...</p>
-  </section>
-  <footer class="entry-footer">
-    <time>January 28, 2018</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/leguin/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Capacity</h2>
-  </header>
-  <section class="entry-content">
-   <p>We have the capacity to find joy in all things.
-A negative attitude is worse than a tumor.
-The best of life can come from the worst of life....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>January 4, 2018</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/capacity/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Death</h2>
-  </header>
-  <section class="entry-content">
-   <p>A stiff wind blows and snaps the reed in the canebrake. Gilgamesh is dead. And yet we persist. How do we persist? Why do we persist?
-The stories we tell ourselves are fabircations. The world tells only a single story. The story of all life, bending, arcing towards a darkness that knows nothing, that promises nothing. Only the great recycling of energy and mass. Heat and light and dust....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>December 5, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/death/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>UPCs</h2>
-  </header>
-  <section class="entry-content">
-   <p>The ability to reason about output, production or worth. If you id, catalog, organize you can gain insight, improvements or reaction. Understanding your universal product codes improves very little. Codes are tools of catagorization ensuring that everything is unique, trackable, known. All our products should be known. That is a universal goal of humanity....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>November 10, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/upcs/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Fail</h2>
-  </header>
-  <section class="entry-content">
-   <p>By definition, seasons are temporal. There is no beginning but what we claim, and no end but what we decree. Earth’s oscilations, rotations and orbits provide consistency, but only inasmuch as we remember what came before. Life, our Earth, and each day is change. When drawn out a thousand, ten thousand years, do we have a right, or is it even reasonable, to expect anything to be stable?...</p>
-  </section>
-  <footer class="entry-footer">
-    <time>September 27, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/fail/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Color</h2>
-  </header>
-  <section class="entry-content">
-   <p>As an article of faith, collaboration, coordination, we claim red comes before blue. Energy and rates of oscilation bounce around inside our eyes and our brain tells us how to feel. Embracing the abritrary and acknowledging the structure of the world serves to build resilience and ultimately to allow us to consume our mortality and live for others as we live for ourselves....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>September 25, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/color/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Preschool</h2>
-  </header>
-  <section class="entry-content">
-   <p>Wow. What’s now? I’m not sure I like … don’t want food, no no. Under the table I think that’s where I, hey. Who took the piece. You. Give it back. I’m sad because he wont give it back and. Yes! I wonder if they have the minions game here. Can I play it? I don’t want to go home yet....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>September 20, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/preschool/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Consider</h2>
-  </header>
-  <section class="entry-content">
-   <p>A torrent of wind and water and the blue disappears from the sky, leaving slate gray and silver streaks like knives cutting, deboning houses and slipping trees from sodden ground. And then nothing. Silence and the sun slips onto the surface for minutes, feeling like hours. Children, tempted to dance in the spitting rain scurry back behind boards over windows and the tempest slams sideways into the world again....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>September 18, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/consider/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Haze</h2>
-  </header>
-  <section class="entry-content">
-   <p>Before you begin, consider the atmosphere of the day. Take stock when the day is humid and hazy and the sun never seems to move beyond the burnt orange hue.
-Or is there not a cloud in sight, with not a drop of moisture in the air and a brilliant cerulean sky above you?
-Perhaps the mood is changeable with a brisk wind and clouds that seem to shift and move every minute....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>September 16, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/haze/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Trees</h2>
-  </header>
-  <section class="entry-content">
-   <p>Take a moment to hold a single, specific tree in your vision.
-Now turn away and try to visualize the same tree in your mind.
-Turn back to the tree and consider that the tree is alive.
-The tree is growing right now; pulling water from the ground.
-Return to holding the same tree tomorrow, and the next day....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>September 15, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/trees/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Breathe</h2>
-  </header>
-  <section class="entry-content">
-   <p>Before action, there is thought, and before thought there is breath.
-Breathe intentionally sometimes. In through your nose, and out through your
-mouth.
-Breathe.
-Take that thought in your head, picture it on a piece of paper, and let the
-paper fly away in a breeze, land in the river running past you, and disappear.
-Now do it with the next thought.
-And the next one.
-And breathe again....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>June 25, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/breathe/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Inverted</h2>
-  </header>
-  <section class="entry-content">
-   <p>Imagine for a moment a tree. Hold the shape of it in your mind a moment. Consider where it draws its strength. The soil, moisture, minerals.
-Now imagine a human. Hold our shape in your mind. Consider where it draws it’s strength. An inverted tree? Not bound to the soil below, but to the heavens above. Inspiration striking like lightining and causing our passions to grow....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>June 15, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/inverted/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Assassin</h2>
-  </header>
-  <section class="entry-content">
-   <p>What if we were indestructable? A blaze of light and ground shaking thunder tears through our awarness and then nothing for a moment; sleep by any other name. And we awake years later coming to understand our new surroundings. A roll of dice and oak tree woods and the ocean are replaced by alpine meadows and pine.
-Isolated from earlier experiences, how would we know? What choice do we have?...</p>
-  </section>
-  <footer class="entry-footer">
-    <time>June 14, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/assassin/"></a>
-</article>
-
-<article class="post-entry">
-  <header class="entry-header">
-    <h2>Justice</h2>
-  </header>
-  <section class="entry-content">
-   <p>Caught in the wire, with neither the agility or intelligence to free itself, the sheep suffocates. Justice lays over humans like the shepard to their flock, untangling us in moments of dread, and slaughtering us when our duty is fulfilled....</p>
-  </section>
-  <footer class="entry-footer">
-    <time>June 5, 2017</time>
-  </footer>
-  <a class="entry-link" href="https://unbl.ink/post/justice/"></a>
-</article>
-
-
-
-
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 508
public/post/index.xml

@@ -1,508 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
-  <channel>
-    <title>Posts on UNBLINK</title>
-    <link>https://unbl.ink/post/</link>
-    <description>Recent content in Posts on UNBLINK</description>
-    <generator>Hugo -- gohugo.io</generator>
-    <language>en</language>
-    <lastBuildDate>Mon, 23 Jan 2023 00:00:00 +0000</lastBuildDate><atom:link href="https://unbl.ink/post/index.xml" rel="self" type="application/rss+xml" />
-    <item>
-      <title>Deploy</title>
-      <link>https://unbl.ink/post/deploy/</link>
-      <pubDate>Mon, 23 Jan 2023 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/deploy/</guid>
-      <description>There are so many things to deploy. Flowers deploy pollen, tricking bees. Navies deploy battleships, tricking their enemy. Corporations deploy lawyers, tricking their customers. People deploy emotions, tricking others.</description>
-    </item>
-    
-    <item>
-      <title>Condition</title>
-      <link>https://unbl.ink/post/condition/</link>
-      <pubDate>Sun, 06 Mar 2022 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/condition/</guid>
-      <description>Some say the human condition is
-Our contract with death.
-But I&#39;ve watched my dog
-Fear death and recoil in disgust.
-No, our curse is
-Being in the present
-While living for a future
-We believe
-May inevitably come.</description>
-    </item>
-    
-    <item>
-      <title>Suns</title>
-      <link>https://unbl.ink/post/suns/</link>
-      <pubDate>Tue, 17 Nov 2020 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/suns/</guid>
-      <description>It was a lot of wind for us, really, the day the wind came up. There were no grand meteorological explanations. No perfect storms. Just wind, blasting from the southeast, pushing over coolers on tables with eggs for sale. Slamming doors left ajar.
-Buddhists believe the world will end in a sequence of seven suns, each causing some specific, systematic failure of a vital life function on Earth. The seventh will consume everything.</description>
-    </item>
-    
-    <item>
-      <title>Curt</title>
-      <link>https://unbl.ink/post/curt/</link>
-      <pubDate>Sat, 24 Oct 2020 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/curt/</guid>
-      <description>Not really cutting someone off, but making sure they understand.</description>
-    </item>
-    
-    <item>
-      <title>Pink</title>
-      <link>https://unbl.ink/post/pink/</link>
-      <pubDate>Fri, 27 Mar 2020 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/pink/</guid>
-      <description>When I put on a pink shirt I immediately think I&amp;rsquo;m doing something bold, unexpected. Fuck you expected culture, I&amp;rsquo;m wearing pink. But really, it&amp;rsquo;s just light red. And I still look askance at people with mo-hawks or giant riser shoes. Silly fools, using their appearance to signal how they&amp;rsquo;re different. I should probably just always wear black.</description>
-    </item>
-    
-    <item>
-      <title>Infection</title>
-      <link>https://unbl.ink/post/infection/</link>
-      <pubDate>Wed, 25 Mar 2020 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/infection/</guid>
-      <description>Under a steel sky, snow falling
-Likely in April, as the garlic
-Struggles to push through soil
-Left on top of it months ago,
-We forget what we used to know.
-People used to get sick. They
-Used to get close to death.
-And the beer on the table
-Promises me a buzz, comfort
-And all the things I want.
-But what about the things
-That I know I don&#39;t want?</description>
-    </item>
-    
-    <item>
-      <title>Preservation</title>
-      <link>https://unbl.ink/post/preservation/</link>
-      <pubDate>Tue, 10 Mar 2020 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/preservation/</guid>
-      <description>I once had occasion to eat mincemeat from a Ball jar processed eight years before my birth. The dubiousness with which I approached that experience says volumes about our ability to preserve things. Even preservation has it&amp;rsquo;s limits, you must agree. A ship, replaced board by board over five hundred years will, at some point not be an exercise in preservation, but change. The slow inevitability of change that causes mountains to fall and entire ecosystems to die.</description>
-    </item>
-    
-    <item>
-      <title>Wind</title>
-      <link>https://unbl.ink/post/wind/</link>
-      <pubDate>Mon, 10 Feb 2020 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/wind/</guid>
-      <description>Traveling ice that builds up on the bows of living organisms I didn&amp;rsquo;t see until just now, and I&amp;rsquo;m wondering now how trees got to be here. Certain species are moving. The North is warmer and they know and are moving. Closer to the warmth they go, but not the one here, covered in ice. It&amp;rsquo;s stuck, stoic, standing its ground. Water drawn up to dizzying heights, to each little branch until a thin paper-like sheet of living cells that turns sunlight into sugar receives exactly as much as it needs to do it&amp;rsquo;s work.</description>
-    </item>
-    
-    <item>
-      <title>Sunk</title>
-      <link>https://unbl.ink/post/sunk/</link>
-      <pubDate>Thu, 19 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/sunk/</guid>
-      <description>It&amp;rsquo;s that sinking feeling you get, when all things being equal you&amp;rsquo;d just rather give up.</description>
-    </item>
-    
-    <item>
-      <title>Garble</title>
-      <link>https://unbl.ink/post/garble/</link>
-      <pubDate>Tue, 17 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/garble/</guid>
-      <description>When sunk costs dig holes in your yard
-And rampant words stand vigil over your house,
-You will be done in your domain
-As his haven turned out all but the best of us.</description>
-    </item>
-    
-    <item>
-      <title>Writing</title>
-      <link>https://unbl.ink/post/writing/</link>
-      <pubDate>Wed, 11 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/writing/</guid>
-      <description>Writing is a technology.
-Writing improves information density.
-Writing creates a moral hazard of intention.
-Writing remembers what we forget.
-Writing destroys relationships.
-Writing cannot replace thought.
-Writing is not often true.</description>
-    </item>
-    
-    <item>
-      <title>Relationship</title>
-      <link>https://unbl.ink/post/relationship/</link>
-      <pubDate>Thu, 05 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/relationship/</guid>
-      <description>And in the end, we were just supposed to get our work done. But our work was hidden from us, so first we had to discover what our work was. Upon discovering where our work was, it turned out we had the wrong work in mind at the start and so we begin to plumb the depths of our found work.
-While plumbing, we resolve to do the right work this time.</description>
-    </item>
-    
-    <item>
-      <title>Load</title>
-      <link>https://unbl.ink/post/load/</link>
-      <pubDate>Tue, 03 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/load/</guid>
-      <description>A wire carries can carry a certain load before the molecular bonds holding the material together are weighted down too much. Is it unreasonable, then, to imagine the tapestry of our lives, held together by invisible bonds, molecules of constitution. And is it not possible that our constitutional bonds carry a certain load?
-What are we do to when we need a wire to carry more load? Faced with the upper bounds of physical laws, we need more wires to share the load.</description>
-    </item>
-    
-    <item>
-      <title>Sky</title>
-      <link>https://unbl.ink/post/sky/</link>
-      <pubDate>Mon, 02 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/sky/</guid>
-      <description>Today the winds shifted abruptly to come from the Northeast, which means cold, and snow, and clouds.
-The sky is a flat, slate gray with wisps of contrast ripped into it by the sheering of the win.
-They sky occupies half of our world view on any given day. Is it any wonder our moods should rise and fall by the contents?</description>
-    </item>
-    
-    <item>
-      <title>Parent</title>
-      <link>https://unbl.ink/post/parent/</link>
-      <pubDate>Sun, 01 Dec 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/parent/</guid>
-      <description>To be the parent node, or the source of life
-For something beyond what you yourself contain,
-Is a special position, in a world of relationship.
-The reason for existence for something so small,
-And the source of a desperate persistence in the world,
-Soon strong enough to declare itself independent.
-Of the source of life, only the parent knows
-How fragile the connection can feel sometimes—
-How tenuous the lines that draw the child node back.</description>
-    </item>
-    
-    <item>
-      <title>Interfaces</title>
-      <link>https://unbl.ink/post/interfaces/</link>
-      <pubDate>Tue, 26 Nov 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/interfaces/</guid>
-      <description>If we were in a simulation, everything would be an interface. Modify this, get this response, adjust and modify the next things.
-If we were in a simulation, everything would be relative. Gravity would depend on the flow of time and light would bend and warp.
-If we were in a simulation we would be stuck waiting for the next step to run, unable to go forward at different rates, or ever backwards.</description>
-    </item>
-    
-    <item>
-      <title>Flow</title>
-      <link>https://unbl.ink/post/flow/</link>
-      <pubDate>Sun, 24 Nov 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/flow/</guid>
-      <description>When everything appears to be flowing,
-You tear pages from the book and watch
-As they flutter to fall in the water.
-When everything falls apart around you
-You tear at your hair and think
-As life remains as it was when,
-Everything is flowing.</description>
-    </item>
-    
-    <item>
-      <title>Seat</title>
-      <link>https://unbl.ink/post/seat/</link>
-      <pubDate>Mon, 28 Oct 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/seat/</guid>
-      <description>You knew a guest was in the house
-The seat would be up.
-Sometimes the door would be closed.
-Intimacy breeds familiarity,
-And a sense that what was hidden
-Behind the door was less a right
-Of all, than an expectation.
-We are unashamed, possibly even
-Impolite. But we always know
-When there&#39;s a guest in the house.</description>
-    </item>
-    
-    <item>
-      <title>Flight</title>
-      <link>https://unbl.ink/post/flight/</link>
-      <pubDate>Tue, 22 Oct 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/flight/</guid>
-      <description>And to just lift off, leave
-Everything behind, a fancy
-Flight of. But
-It&#39;s not really possible.
-And leave just to lift off,
-Find yourself gone, a fancy
-Dinner party of. Or
-All your best friends.
-They would miss you. Most likely.
-They would wonder where
-You had lifted off to.
-A flight of fancy from a fancy dinner party.
-All expectation gone.</description>
-    </item>
-    
-    <item>
-      <title>Rome</title>
-      <link>https://unbl.ink/post/rome/</link>
-      <pubDate>Wed, 24 Jul 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/rome/</guid>
-      <description>Fireworks at the colisseum. No. In the colisseum. Chinese tourists, roman candles, in the colisseum. From outside, over the wall. Can we remember everything in the past? Or are we doomed to repeat some things. Can we be doomed when repeation is how we learn?
-Roman candles, Chinese tourists, fireworks in the parking lot at the colisseum. This is not what I had expected.</description>
-    </item>
-    
-    <item>
-      <title>Water</title>
-      <link>https://unbl.ink/post/water/</link>
-      <pubDate>Tue, 23 Jul 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/water/</guid>
-      <description>Rain doesn&amp;rsquo;t help us
-Remember the cause, the
-Animating factor.
-Rain only redistributes
-Colossal amounts of
-Caustic chemicals everywhere.</description>
-    </item>
-    
-    <item>
-      <title>Soft</title>
-      <link>https://unbl.ink/post/soft/</link>
-      <pubDate>Tue, 21 May 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/soft/</guid>
-      <description>The taoists had it right. There is no strength without weakness, no wet without dry. Puffing up his chest, he stares through you, as though through staring he can destroy. But soon, enfilade and then off-guard the underbelly reveals insecurity that air cannot protect.
-All is soft in the middle.</description>
-    </item>
-    
-    <item>
-      <title>Angry</title>
-      <link>https://unbl.ink/post/angry/</link>
-      <pubDate>Thu, 02 May 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/angry/</guid>
-      <description>Spend much time there myself. Depth charges primed, deployed, sinking, waiting, fury unleashed. Proximity and destruction raining shrapnel slowly sinking. No fire down here, just a shudder and ripping, tearing. Nothing to see. All contained by pressure. Crushing pressure, surrounding us all. Can&amp;rsquo;t decide which direction so it goes everywhere.</description>
-    </item>
-    
-    <item>
-      <title>Fixable</title>
-      <link>https://unbl.ink/post/fixable/</link>
-      <pubDate>Fri, 26 Apr 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/fixable/</guid>
-      <description>Under what circumstance did we expect this would work? Days, numbered, slide past and not everything is repaired promptly. Some things are not fixable at all. Amazing, what we&amp;rsquo;ll carry with us, into the subway, the neighbor&amp;rsquo;s house, our last swim in the ocean. Scars from life. Some physical, some metaphysical, all a product of choice and circumstance.</description>
-    </item>
-    
-    <item>
-      <title>Roughly</title>
-      <link>https://unbl.ink/post/roughly/</link>
-      <pubDate>Fri, 19 Apr 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/roughly/</guid>
-      <description>Understanding how everything goes together is, roughly, all that life requires of you.</description>
-    </item>
-    
-    <item>
-      <title>Acadian</title>
-      <link>https://unbl.ink/post/acadian/</link>
-      <pubDate>Wed, 17 Apr 2019 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/acadian/</guid>
-      <description>Diaspora in a compromised land, stretched by forces moving so slowly, slower than we can see but with evidence left everywhere. Culture accretes faster, but still imperceptible, reminding us that no one knows everything, or anything when it comes to that. When it comes to remembering how to live, how we survived the cataclysm, we depend on those who were lost once. We depend on those who knew enough to get us here.</description>
-    </item>
-    
-    <item>
-      <title>Cold</title>
-      <link>https://unbl.ink/post/cold/</link>
-      <pubDate>Sat, 17 Nov 2018 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/cold/</guid>
-      <description>Roadways clutter with debris of passing motorists and the cold draws the filth out, into a grim reflection of the gray, moistureless clouds above. Cold will descend, has descended, descends over the pine forests which stop only when they reach the sea, or we cut them back and till, plant and live.
-There is so little old growth forest left. In the cold, it seems impossible to have such an impact on so vast and inhospitable an expanse.</description>
-    </item>
-    
-    <item>
-      <title>Thunder</title>
-      <link>https://unbl.ink/post/thunder/</link>
-      <pubDate>Sat, 10 Nov 2018 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/thunder/</guid>
-      <description>The thunder rolls, and the lightnng strikes. Under a blanket of clouds, cropped tight to the ground, but not so tight to be fog, the thunder rolls. Gray permeates the sky and the thunder rolls. Scattered rain showers ruin a wedding celebration and the thunder rolls.
-Above the clouds the thunder rolls. The sun shines, and the rain is nothing but what we can imagine.</description>
-    </item>
-    
-    <item>
-      <title>Seethe</title>
-      <link>https://unbl.ink/post/repeatability/</link>
-      <pubDate>Sat, 14 Apr 2018 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/repeatability/</guid>
-      <description>And in the hour of need, surrounded by all our loved ones, even some we missed or had forgotten about, the sea roils and seethes with the fury that only the planet can command.
-In hubris, life clings to boats, tossed at once, and yet fettered to the spot, frozen, unable to move or suffer destruction. It thought itself invincible. But nothing was ever farther from the truth.
-Memory of this life fades and what&amp;rsquo;s left is another rock, slightly warmer than the rest.</description>
-    </item>
-    
-    <item>
-      <title>Typing</title>
-      <link>https://unbl.ink/post/typing/</link>
-      <pubDate>Thu, 12 Apr 2018 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/typing/</guid>
-      <description>It&amp;rsquo;s hard to understand what&amp;rsquo;s not understandable especially in light of what we never understood to begin with. The sound of the keys made a clicking noise that would have driven an average man crazy, but the lack of preconceptions in this case led to the clack, clack, clack, clack to a tap, tap, tap, tap to a drum beat driven into the heart of the most relevant moments of his life.</description>
-    </item>
-    
-    <item>
-      <title>Le Guin</title>
-      <link>https://unbl.ink/post/leguin/</link>
-      <pubDate>Sun, 28 Jan 2018 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/leguin/</guid>
-      <description>“If you cannot or will not imagine the results of your actions, there’s no way you can act morally or responsibly, Little kids can’t do it; babies are morally monsters — completely greedy. Their imagination has to be trained into foresight and empathy.”
-Ursula K. Le Guin </description>
-    </item>
-    
-    <item>
-      <title>Capacity</title>
-      <link>https://unbl.ink/post/capacity/</link>
-      <pubDate>Thu, 04 Jan 2018 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/capacity/</guid>
-      <description>We have the capacity to find joy in all things.
-A negative attitude is worse than a tumor.
-The best of life can come from the worst of life.</description>
-    </item>
-    
-    <item>
-      <title>Death</title>
-      <link>https://unbl.ink/post/death/</link>
-      <pubDate>Tue, 05 Dec 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/death/</guid>
-      <description>A stiff wind blows and snaps the reed in the canebrake. Gilgamesh is dead. And yet we persist. How do we persist? Why do we persist?
-The stories we tell ourselves are fabircations. The world tells only a single story. The story of all life, bending, arcing towards a darkness that knows nothing, that promises nothing. Only the great recycling of energy and mass. Heat and light and dust.</description>
-    </item>
-    
-    <item>
-      <title>UPCs</title>
-      <link>https://unbl.ink/post/upcs/</link>
-      <pubDate>Fri, 10 Nov 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/upcs/</guid>
-      <description>The ability to reason about output, production or worth. If you id, catalog, organize you can gain insight, improvements or reaction. Understanding your universal product codes improves very little. Codes are tools of catagorization ensuring that everything is unique, trackable, known. All our products should be known. That is a universal goal of humanity.</description>
-    </item>
-    
-    <item>
-      <title>Fail</title>
-      <link>https://unbl.ink/post/fail/</link>
-      <pubDate>Wed, 27 Sep 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/fail/</guid>
-      <description>By definition, seasons are temporal. There is no beginning but what we claim, and no end but what we decree. Earth&amp;rsquo;s oscilations, rotations and orbits provide consistency, but only inasmuch as we remember what came before. Life, our Earth, and each day is change. When drawn out a thousand, ten thousand years, do we have a right, or is it even reasonable, to expect anything to be stable?</description>
-    </item>
-    
-    <item>
-      <title>Color</title>
-      <link>https://unbl.ink/post/color/</link>
-      <pubDate>Mon, 25 Sep 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/color/</guid>
-      <description>As an article of faith, collaboration, coordination, we claim red comes before blue. Energy and rates of oscilation bounce around inside our eyes and our brain tells us how to feel. Embracing the abritrary and acknowledging the structure of the world serves to build resilience and ultimately to allow us to consume our mortality and live for others as we live for ourselves.</description>
-    </item>
-    
-    <item>
-      <title>Preschool</title>
-      <link>https://unbl.ink/post/preschool/</link>
-      <pubDate>Wed, 20 Sep 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/preschool/</guid>
-      <description>Wow. What&amp;rsquo;s now? I&amp;rsquo;m not sure I like &amp;hellip; don&amp;rsquo;t want food, no no. Under the table I think that&amp;rsquo;s where I, hey. Who took the piece. You. Give it back. I&amp;rsquo;m sad because he wont give it back and. Yes! I wonder if they have the minions game here. Can I play it? I don&amp;rsquo;t want to go home yet.</description>
-    </item>
-    
-    <item>
-      <title>Consider</title>
-      <link>https://unbl.ink/post/consider/</link>
-      <pubDate>Mon, 18 Sep 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/consider/</guid>
-      <description>A torrent of wind and water and the blue disappears from the sky, leaving slate gray and silver streaks like knives cutting, deboning houses and slipping trees from sodden ground. And then nothing. Silence and the sun slips onto the surface for minutes, feeling like hours. Children, tempted to dance in the spitting rain scurry back behind boards over windows and the tempest slams sideways into the world again.</description>
-    </item>
-    
-    <item>
-      <title>Haze</title>
-      <link>https://unbl.ink/post/haze/</link>
-      <pubDate>Sat, 16 Sep 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/haze/</guid>
-      <description>Before you begin, consider the atmosphere of the day. Take stock when the day is humid and hazy and the sun never seems to move beyond the burnt orange hue.
-Or is there not a cloud in sight, with not a drop of moisture in the air and a brilliant cerulean sky above you?
-Perhaps the mood is changeable with a brisk wind and clouds that seem to shift and move every minute.</description>
-    </item>
-    
-    <item>
-      <title>Trees</title>
-      <link>https://unbl.ink/post/trees/</link>
-      <pubDate>Fri, 15 Sep 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/trees/</guid>
-      <description>Take a moment to hold a single, specific tree in your vision.
-Now turn away and try to visualize the same tree in your mind.
-Turn back to the tree and consider that the tree is alive.
-The tree is growing right now; pulling water from the ground.
-Return to holding the same tree tomorrow, and the next day.</description>
-    </item>
-    
-    <item>
-      <title>Breathe</title>
-      <link>https://unbl.ink/post/breathe/</link>
-      <pubDate>Sun, 25 Jun 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/breathe/</guid>
-      <description>Before action, there is thought, and before thought there is breath.
-Breathe intentionally sometimes. In through your nose, and out through your
-mouth.
-Breathe.
-Take that thought in your head, picture it on a piece of paper, and let the
-paper fly away in a breeze, land in the river running past you, and disappear.
-Now do it with the next thought.
-And the next one.
-And breathe again.</description>
-    </item>
-    
-    <item>
-      <title>Inverted</title>
-      <link>https://unbl.ink/post/inverted/</link>
-      <pubDate>Thu, 15 Jun 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/inverted/</guid>
-      <description>Imagine for a moment a tree. Hold the shape of it in your mind a moment. Consider where it draws its strength. The soil, moisture, minerals.
-Now imagine a human. Hold our shape in your mind. Consider where it draws it&amp;rsquo;s strength. An inverted tree? Not bound to the soil below, but to the heavens above. Inspiration striking like lightining and causing our passions to grow.</description>
-    </item>
-    
-    <item>
-      <title>Assassin</title>
-      <link>https://unbl.ink/post/assassin/</link>
-      <pubDate>Wed, 14 Jun 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/assassin/</guid>
-      <description>What if we were indestructable? A blaze of light and ground shaking thunder tears through our awarness and then nothing for a moment; sleep by any other name. And we awake years later coming to understand our new surroundings. A roll of dice and oak tree woods and the ocean are replaced by alpine meadows and pine.
-Isolated from earlier experiences, how would we know? What choice do we have?</description>
-    </item>
-    
-    <item>
-      <title>Justice</title>
-      <link>https://unbl.ink/post/justice/</link>
-      <pubDate>Mon, 05 Jun 2017 00:00:00 +0000</pubDate>
-      
-      <guid>https://unbl.ink/post/justice/</guid>
-      <description>Caught in the wire, with neither the agility or intelligence to free itself, the sheep suffocates. Justice lays over humans like the shepard to their flock, untangling us in moments of dread, and slaughtering us when our duty is fulfilled.</description>
-    </item>
-    
-  </channel>
-</rss>

+ 0 - 156
public/post/infection/index.html

@@ -1,156 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Infection - UNBLINK</title>
-    
-    <meta name="description" content="Under a steel sky, snow falling
-Likely in April, as the garlic
-Struggles to push through soil
-Left on top of it months ago,
-We forget what we used to know.
-People used to get sick. They
-Used to get close to death.
-And the beer on the table
-Promises me a buzz, comfort
-And all the things I want.
-But what about the things
-That I know I don&#39;t want?">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Infection</h1>
-    <div class="post-meta">[Colin Powell] · March 25, 2020</div>
-  </header>
-  <div class="post-content">
-<p class="verse">
-Under a steel sky, snow falling<br />
-Likely in April, as the garlic<br />
-Struggles to push through soil<br />
-Left on top of it months ago,<br />
-<br />
-We forget what we used to know.<br />
-People used to get sick. They<br />
-Used to get close to death.<br />
-And the beer on the table<br />
-<br />
-Promises me a buzz, comfort<br />
-And all the things I want.<br />
-But what about the things<br />
-That I know I don't want?<br />
-<br />
-Infection breeds necessity.<br />
-</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 134
public/post/interfaces/index.html

@@ -1,134 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Interfaces - UNBLINK</title>
-    
-    <meta name="description" content="If we were in a simulation, everything would be an interface. Modify this, get this response, adjust and modify the next things.
-If we were in a simulation, everything would be relative. Gravity would depend on the flow of time and light would bend and warp.
-If we were in a simulation we would be stuck waiting for the next step to run, unable to go forward at different rates, or ever backwards.">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Interfaces</h1>
-    <div class="post-meta">[Colin Powell] · November 26, 2019</div>
-  </header>
-  <div class="post-content"><p>If we were in a simulation, everything would be an interface. Modify this, get
-this response, adjust and modify the next things.</p>
-<p>If we were in a simulation, everything would be relative. Gravity would depend
-on the flow of time and light would bend and warp.</p>
-<p>If we were in a simulation we would be stuck waiting for the next step to run,
-unable to go forward at different rates, or ever backwards.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 132
public/post/inverted/index.html

@@ -1,132 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Inverted - UNBLINK</title>
-    
-    <meta name="description" content="Imagine for a moment a tree. Hold the shape of it in your mind a moment. Consider where it draws its strength. The soil, moisture, minerals.
-Now imagine a human. Hold our shape in your mind. Consider where it draws it&rsquo;s strength. An inverted tree? Not bound to the soil below, but to the heavens above. Inspiration striking like lightining and causing our passions to grow.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Inverted</h1>
-    <div class="post-meta">[CP] · June 15, 2017</div>
-  </header>
-  <div class="post-content"><p>Imagine for a moment a tree. Hold the shape of it in your mind a moment.
-Consider where it draws its strength. The soil, moisture, minerals.</p>
-<p>Now imagine a human. Hold our shape in your mind. Consider where it draws it&rsquo;s
-strength. An inverted tree? Not bound to the soil below, but to the heavens
-above. Inspiration striking like lightining and causing our passions to grow.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 130
public/post/justice/index.html

@@ -1,130 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Justice - UNBLINK</title>
-    
-    <meta name="description" content="Caught in the wire, with neither the agility or intelligence to free itself, the sheep suffocates. Justice lays over humans like the shepard to their flock, untangling us in moments of dread, and slaughtering us when our duty is fulfilled.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Justice</h1>
-    <div class="post-meta">[CP] · June 5, 2017</div>
-  </header>
-  <div class="post-content"><p>Caught in the wire, with neither the agility or intelligence to free itself,
-the sheep suffocates. Justice lays over humans like the shepard to their
-flock, untangling us in moments of dread, and slaughtering us when our duty
-is fulfilled.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 131
public/post/leguin/index.html

@@ -1,131 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Le Guin - UNBLINK</title>
-    
-    <meta name="description" content="“If you cannot or will not imagine the results of your actions, there’s no way you can act morally or responsibly, Little kids can’t do it; babies are morally monsters — completely greedy. Their imagination has to be trained into foresight and empathy.”
-Ursula K. Le Guin ">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Le Guin</h1>
-    <div class="post-meta">[CP] · January 28, 2018</div>
-  </header>
-  <div class="post-content"><p>“If you cannot or will not imagine the results of your actions, there’s no way you can act morally or responsibly,  Little kids can’t do it; babies are morally monsters — completely greedy. Their imagination has to be trained into foresight and empathy.”</p>
-<ul>
-<li>Ursula K. Le Guin</li>
-</ul>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 134
public/post/load/index.html

@@ -1,134 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Load - UNBLINK</title>
-    
-    <meta name="description" content="A wire carries can carry a certain load before the molecular bonds holding the material together are weighted down too much. Is it unreasonable, then, to imagine the tapestry of our lives, held together by invisible bonds, molecules of constitution. And is it not possible that our constitutional bonds carry a certain load?
-What are we do to when we need a wire to carry more load? Faced with the upper bounds of physical laws, we need more wires to share the load.">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Load</h1>
-    <div class="post-meta">[Colin Powell] · December 3, 2019</div>
-  </header>
-  <div class="post-content"><p>A wire carries can carry a certain load before the molecular bonds holding the
-material together are weighted down too much. Is it unreasonable, then, to
-imagine the tapestry of our lives, held together by invisible bonds, molecules
-of constitution. And is it not possible that our constitutional bonds carry a
-certain load?</p>
-<p>What are we do to when we need a wire to carry more load? Faced with the upper
-bounds of physical laws, we need more wires to share the load. We share the load.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 10
public/post/page/1/index.html

@@ -1,10 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <title>https://unbl.ink/post/</title>
-    <link rel="canonical" href="https://unbl.ink/post/">
-    <meta name="robots" content="noindex">
-    <meta charset="utf-8">
-    <meta http-equiv="refresh" content="0; url=https://unbl.ink/post/">
-  </head>
-</html>

+ 0 - 152
public/post/parent/index.html

@@ -1,152 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Parent - UNBLINK</title>
-    
-    <meta name="description" content="To be the parent node, or the source of life
-For something beyond what you yourself contain,
-Is a special position, in a world of relationship.
-The reason for existence for something so small,
-And the source of a desperate persistence in the world,
-Soon strong enough to declare itself independent.
-Of the source of life, only the parent knows
-How fragile the connection can feel sometimes—
-How tenuous the lines that draw the child node back.">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Parent</h1>
-    <div class="post-meta">[Colin Powell] · December 1, 2019</div>
-  </header>
-  <div class="post-content">
-<p class="verse">
-To be the parent node, or the source of life<br />
-For something beyond what you yourself contain,<br />
-Is a special position, in a world of relationship.<br />
-<br />
-The reason for existence for something so small,<br />
-And the source of a desperate persistence in the world,<br />
-Soon strong enough to declare itself independent.<br />
-<br />
-Of the source of life, only the parent knows<br />
-How fragile the connection can feel sometimes—<br />
-How tenuous the lines that draw the child node back.<br />
-<br />
-No parent can insure life against tragedy, and no<br />
-child node can escape the truth of it's source.<br />
-This is all we're given to go on, and yet we go.<br />
-</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 131
public/post/pink/index.html

@@ -1,131 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Pink - UNBLINK</title>
-    
-    <meta name="description" content="When I put on a pink shirt I immediately think I&rsquo;m doing something bold, unexpected. Fuck you expected culture, I&rsquo;m wearing pink. But really, it&rsquo;s just light red. And I still look askance at people with mo-hawks or giant riser shoes. Silly fools, using their appearance to signal how they&rsquo;re different. I should probably just always wear black.">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Pink</h1>
-    <div class="post-meta">[Colin Powell] · March 27, 2020</div>
-  </header>
-  <div class="post-content"><p>When I put on a pink shirt I immediately think I&rsquo;m doing something bold,
-unexpected. Fuck you expected culture, I&rsquo;m wearing pink. But really, it&rsquo;s just
-light red. And I still look askance at people with mo-hawks or giant riser
-shoes. Silly fools, using their appearance to signal how they&rsquo;re different. I
-should probably just always wear black.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 127
public/post/preschool/index.html

@@ -1,127 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Preschool - UNBLINK</title>
-    
-    <meta name="description" content="Wow. What&rsquo;s now? I&rsquo;m not sure I like &hellip; don&rsquo;t want food, no no. Under the table I think that&rsquo;s where I, hey. Who took the piece. You. Give it back. I&rsquo;m sad because he wont give it back and. Yes! I wonder if they have the minions game here. Can I play it? I don&rsquo;t want to go home yet.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Preschool</h1>
-    <div class="post-meta">[CP] · September 20, 2017</div>
-  </header>
-  <div class="post-content"><p>Wow. What&rsquo;s now? I&rsquo;m not sure I like &hellip; don&rsquo;t want food, no no. Under the table I think that&rsquo;s where I, hey. Who took the piece. You. Give it back. I&rsquo;m sad because he wont give it back and. Yes! I wonder if they have the minions game here. Can I play it? I don&rsquo;t want to go home yet.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 136
public/post/preservation/index.html

@@ -1,136 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Preservation - UNBLINK</title>
-    
-    <meta name="description" content="I once had occasion to eat mincemeat from a Ball jar processed eight years before my birth. The dubiousness with which I approached that experience says volumes about our ability to preserve things. Even preservation has it&rsquo;s limits, you must agree. A ship, replaced board by board over five hundred years will, at some point not be an exercise in preservation, but change. The slow inevitability of change that causes mountains to fall and entire ecosystems to die.">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Preservation</h1>
-    <div class="post-meta">[Colin Powell] · March 10, 2020</div>
-  </header>
-  <div class="post-content"><p>I once had occasion to eat mincemeat from a Ball jar processed eight years
-before my birth. The dubiousness with which I approached that experience says
-volumes about our ability to preserve things. Even preservation has it&rsquo;s limits,
-you must agree. A ship, replaced board by board over five hundred years will, at
-some point not be an exercise in preservation, but change. The slow
-inevitability of change that causes mountains to fall and entire ecosystems to
-die.</p>
-<p>Our home among the stars has invited us for a short visit. Let us not, in our
-determination to survive, forget that we are guests. Mind your manners, do unto
-others, and don&rsquo;t try too hard to stay alive that you forget to live.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 138
public/post/relationship/index.html

@@ -1,138 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Relationship - UNBLINK</title>
-    
-    <meta name="description" content="And in the end, we were just supposed to get our work done. But our work was hidden from us, so first we had to discover what our work was. Upon discovering where our work was, it turned out we had the wrong work in mind at the start and so we begin to plumb the depths of our found work.
-While plumbing, we resolve to do the right work this time.">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Relationship</h1>
-    <div class="post-meta">[Colin Powell] · December 5, 2019</div>
-  </header>
-  <div class="post-content"><p>And in the end, we were just supposed to get our work done. But our work was
-hidden from us, so first we had to discover what our work was. Upon discovering
-where our work was, it turned out we had the wrong work in mind at the start and
-so we begin to plumb the depths of our found work.</p>
-<p>While plumbing, we resolve to do the right work this time. No more time to mess
-around. We haul up our new work and find that it wasn&rsquo;t what we expected. No one
-wants this work do be done at all.</p>
-<p>But looking around, the work we thought we should do turned out to be okay work.
-The people around us were able to eat while doing the work, and they laughed and
-joked, sang and cried. The work made us remember we were human, and that was
-good work.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 131
public/post/repeatability/index.html

@@ -1,131 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Seethe - UNBLINK</title>
-    
-    <meta name="description" content="And in the hour of need, surrounded by all our loved ones, even some we missed or had forgotten about, the sea roils and seethes with the fury that only the planet can command.
-In hubris, life clings to boats, tossed at once, and yet fettered to the spot, frozen, unable to move or suffer destruction. It thought itself invincible. But nothing was ever farther from the truth.
-Memory of this life fades and what&rsquo;s left is another rock, slightly warmer than the rest.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Seethe</h1>
-    <div class="post-meta">[CP] · April 14, 2018</div>
-  </header>
-  <div class="post-content"><p>And in the hour of need, surrounded by all our loved ones, even some we missed or had forgotten about, the sea roils and seethes with the fury that only the planet can command.</p>
-<p>In hubris, life clings to boats, tossed at once, and yet fettered to the spot, frozen, unable to move or suffer destruction. It thought itself invincible. But nothing was ever farther from the truth.</p>
-<p>Memory of this life fades and what&rsquo;s left is another rock, slightly warmer than the rest.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 133
public/post/rome/index.html

@@ -1,133 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Rome - UNBLINK</title>
-    
-    <meta name="description" content="Fireworks at the colisseum. No. In the colisseum. Chinese tourists, roman candles, in the colisseum. From outside, over the wall. Can we remember everything in the past? Or are we doomed to repeat some things. Can we be doomed when repeation is how we learn?
-Roman candles, Chinese tourists, fireworks in the parking lot at the colisseum. This is not what I had expected.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Rome</h1>
-    <div class="post-meta">[CP] · July 24, 2019</div>
-  </header>
-  <div class="post-content"><p>Fireworks at the colisseum. No. In the colisseum. Chinese tourists, roman
-candles, in the colisseum. From outside, over the wall. Can we remember
-everything in the past? Or are we doomed to repeat some things. Can we be doomed
-when repeation is how we learn?</p>
-<p>Roman candles, Chinese tourists, fireworks in the parking lot at the colisseum.
-This is not what I had expected.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 128
public/post/roughly/index.html

@@ -1,128 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Roughly - UNBLINK</title>
-    
-    <meta name="description" content="Understanding how everything goes together is, roughly, all that life requires of you.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Roughly</h1>
-    <div class="post-meta">[CP] · April 19, 2019</div>
-  </header>
-  <div class="post-content"><p>Understanding how everything goes together is, roughly, all that life requires
-of you.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 150
public/post/seat/index.html

@@ -1,150 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Seat - UNBLINK</title>
-    
-    <meta name="description" content="You knew a guest was in the house
-The seat would be up.
-Sometimes the door would be closed.
-Intimacy breeds familiarity,
-And a sense that what was hidden
-Behind the door was less a right
-Of all, than an expectation.
-We are unashamed, possibly even
-Impolite. But we always know
-When there&#39;s a guest in the house.">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Seat</h1>
-    <div class="post-meta">[Colin Powell] · October 28, 2019</div>
-  </header>
-  <div class="post-content">
-<p class="verse">
-You knew a guest was in the house<br />
-The seat would be up.<br />
-Sometimes the door would be closed.<br />
-<br />
-Intimacy breeds familiarity,<br />
-And a sense that what was hidden<br />
-Behind the door was less a right<br />
-Of all, than an expectation.<br />
-<br />
-We are unashamed, possibly even<br />
-Impolite. But we always know<br />
-When there's a guest in the house.<br />
-</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 134
public/post/sky/index.html

@@ -1,134 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Sky - UNBLINK</title>
-    
-    <meta name="description" content="Today the winds shifted abruptly to come from the Northeast, which means cold, and snow, and clouds.
-The sky is a flat, slate gray with wisps of contrast ripped into it by the sheering of the win.
-They sky occupies half of our world view on any given day. Is it any wonder our moods should rise and fall by the contents?">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Sky</h1>
-    <div class="post-meta">[Colin Powell] · December 2, 2019</div>
-  </header>
-  <div class="post-content"><p>Today the winds shifted abruptly to come from the Northeast, which means cold,
-and snow, and clouds.</p>
-<p>The sky is a flat, slate gray with wisps of contrast ripped into it by the
-sheering of the win.</p>
-<p>They sky occupies half of our world view on any given day. Is it any wonder our
-moods should rise and fall by the contents?</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 132
public/post/soft/index.html

@@ -1,132 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Soft - UNBLINK</title>
-    
-    <meta name="description" content="The taoists had it right. There is no strength without weakness, no wet without dry. Puffing up his chest, he stares through you, as though through staring he can destroy. But soon, enfilade and then off-guard the underbelly reveals insecurity that air cannot protect.
-All is soft in the middle.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Soft</h1>
-    <div class="post-meta">[CP] · May 21, 2019</div>
-  </header>
-  <div class="post-content"><p>The taoists had it right. There is no strength without weakness, no wet without
-dry. Puffing up his chest, he stares through you, as though through staring he
-can destroy. But soon, enfilade and then off-guard the underbelly reveals
-insecurity that air cannot protect.</p>
-<p>All is soft in the middle.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 128
public/post/sunk/index.html

@@ -1,128 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Sunk - UNBLINK</title>
-    
-    <meta name="description" content="It&rsquo;s that sinking feeling you get, when all things being equal you&rsquo;d just rather give up.">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Sunk</h1>
-    <div class="post-meta">[Colin Powell] · December 19, 2019</div>
-  </header>
-  <div class="post-content"><p>It&rsquo;s that sinking feeling you get, when all things being equal you&rsquo;d just rather
-give up.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 137
public/post/suns/index.html

@@ -1,137 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Suns - UNBLINK</title>
-    
-    <meta name="description" content="It was a lot of wind for us, really, the day the wind came up. There were no grand meteorological explanations. No perfect storms. Just wind, blasting from the southeast, pushing over coolers on tables with eggs for sale. Slamming doors left ajar.
-Buddhists believe the world will end in a sequence of seven suns, each causing some specific, systematic failure of a vital life function on Earth. The seventh will consume everything.">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Suns</h1>
-    <div class="post-meta">[Colin Powell] · November 17, 2020</div>
-  </header>
-  <div class="post-content"><p>It was a lot of wind for us, really, the day the wind came up. There were no
-grand meteorological explanations. No perfect storms. Just wind, blasting from
-the southeast, pushing over coolers on tables with eggs for sale. Slamming doors
-left ajar.</p>
-<p>Buddhists believe the world will end in a sequence of seven suns, each causing
-some specific, systematic failure of a vital life function on Earth. The seventh
-will consume everything. The ground beneath our feet will burn beyond ashes.</p>
-<p>There will be no perfect storms when the sun expands to consume us. There will
-be no grand explanations as a fairly average star does what fairly average stars
-do when their fuel is expended. But it will be a lot of heat for us, really.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 133
public/post/thunder/index.html

@@ -1,133 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Thunder - UNBLINK</title>
-    
-    <meta name="description" content="The thunder rolls, and the lightnng strikes. Under a blanket of clouds, cropped tight to the ground, but not so tight to be fog, the thunder rolls. Gray permeates the sky and the thunder rolls. Scattered rain showers ruin a wedding celebration and the thunder rolls.
-Above the clouds the thunder rolls. The sun shines, and the rain is nothing but what we can imagine.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Thunder</h1>
-    <div class="post-meta">[CP] · November 10, 2018</div>
-  </header>
-  <div class="post-content"><p>The thunder rolls, and the lightnng strikes. Under a blanket of clouds, cropped
-tight to the ground, but not so tight to be fog, the thunder rolls. Gray
-permeates the sky and the thunder rolls. Scattered rain showers ruin a wedding
-celebration and the thunder rolls.</p>
-<p>Above the clouds the thunder rolls. The sun shines, and the rain is nothing but
-what we can imagine.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 135
public/post/trees/index.html

@@ -1,135 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Trees - UNBLINK</title>
-    
-    <meta name="description" content="Take a moment to hold a single, specific tree in your vision.
-Now turn away and try to visualize the same tree in your mind.
-Turn back to the tree and consider that the tree is alive.
-The tree is growing right now; pulling water from the ground.
-Return to holding the same tree tomorrow, and the next day.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Trees</h1>
-    <div class="post-meta">[CP] · September 15, 2017</div>
-  </header>
-  <div class="post-content"><p>Take a moment to hold a single, specific tree in your vision.</p>
-<p>Now turn away and try to visualize the same tree in your mind.</p>
-<p>Turn back to the tree and consider that the tree is alive.</p>
-<p>The tree is growing right now; pulling water from the ground.</p>
-<p>Return to holding the same tree tomorrow, and the next day.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 127
public/post/typing/index.html

@@ -1,127 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Typing - UNBLINK</title>
-    
-    <meta name="description" content="It&rsquo;s hard to understand what&rsquo;s not understandable especially in light of what we never understood to begin with. The sound of the keys made a clicking noise that would have driven an average man crazy, but the lack of preconceptions in this case led to the clack, clack, clack, clack to a tap, tap, tap, tap to a drum beat driven into the heart of the most relevant moments of his life.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Typing</h1>
-    <div class="post-meta">[CP] · April 12, 2018</div>
-  </header>
-  <div class="post-content"><p>It&rsquo;s hard to understand what&rsquo;s not understandable especially in light of what we never understood to begin with. The sound of the keys made a clicking noise that would have driven an average man crazy, but the lack of preconceptions in this case led to the clack, clack, clack, clack to a tap, tap, tap, tap to a drum beat driven into the heart of the most relevant moments of his life. But he didn&rsquo;t understand what that meant. Reliving moments you thought were gone. Crying again and again for something you thought you were done with. The clacking, the tapping, leading to recall. Perfect, heartbreaking recall.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 482
public/post/unblink/index.html

@@ -1,482 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>unblink - UNBLINK</title>
-    
-    <meta name="description" content="Misc @misc Condition Some say the human condition is Our contract with death. But I&rsquo;ve watched my dog Fear death and recoil in disgust. No, our curse is Being in the present While living for a future We believe May inevitably come.
-Suns It was a lot of wind for us, really, the day the wind came up. There were no grand meteorological explanations. No perfect storms. Just wind, blasting from the southeast, pushing over coolers on tables with eggs for sale.">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">unblink</h1>
-    <div class="post-meta">[Colin Powell] · January 1, 0001</div>
-  </header>
-  <div class="post-content"><h2 id="misc">Misc <!-- raw HTML omitted --><!-- raw HTML omitted -->@misc<!-- raw HTML omitted --><!-- raw HTML omitted --></h2>
-<h3 id="condition">Condition</h3>
-<!-- raw HTML omitted -->
-<p>Some say the human condition is<!-- raw HTML omitted -->
-Our contract with death.<!-- raw HTML omitted -->
-But I&rsquo;ve watched my dog<!-- raw HTML omitted -->
-Fear death and recoil in disgust.<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-No, our curse is<!-- raw HTML omitted -->
-Being in the present<!-- raw HTML omitted -->
-While living for a future<!-- raw HTML omitted -->
-We believe<!-- raw HTML omitted -->
-May inevitably come.<!-- raw HTML omitted --></p>
-<!-- raw HTML omitted -->
-<h3 id="suns">Suns</h3>
-<pre><code>It was a lot of wind for us, really, the day the wind came up. There were no
-</code></pre>
-<p>grand meteorological explanations. No perfect storms. Just wind, blasting from
-the southeast, pushing over coolers on tables with eggs for sale. Slamming doors
-left ajar.</p>
-<p>Buddhists believe the world will end in a sequence of seven suns, each causing
-some specific, systematic failure of a vital life function on Earth. The seventh
-will consume everything. The ground beneath our feet will burn beyond ashes.</p>
-<p>There will be no perfect storms when the sun expands to consume us. There will
-be no grand explanations as a fairly average star does what fairly average stars
-do when their fuel is expended. But it will be a lot of heat for us, really.</p>
-<h3 id="curt">Curt</h3>
-<!-- raw HTML omitted -->
-<p>Not really cutting someone off, but making sure they understand.<!-- raw HTML omitted --></p>
-<!-- raw HTML omitted -->
-<h3 id="pink">Pink</h3>
-<p>When I put on a pink shirt I immediately think I&rsquo;m doing something bold,
-unexpected. Fuck you expected culture, I&rsquo;m wearing pink. But really, it&rsquo;s just
-light red. And I still look askance at people with mo-hawks or giant riser
-shoes. Silly fools, using their appearance to signal how they&rsquo;re different. I
-should probably just always wear black.</p>
-<h3 id="infection">Infection</h3>
-<!-- raw HTML omitted -->
-<p>Under a steel sky, snow falling<!-- raw HTML omitted -->
-Likely in April, as the garlic<!-- raw HTML omitted -->
-Struggles to push through soil<!-- raw HTML omitted -->
-Left on top of it months ago,<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-We forget what we used to know.<!-- raw HTML omitted -->
-People used to get sick. They<!-- raw HTML omitted -->
-Used to get close to death.<!-- raw HTML omitted -->
-And the beer on the table<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-Promises me a buzz, comfort<!-- raw HTML omitted -->
-And all the things I want.<!-- raw HTML omitted -->
-But what about the things<!-- raw HTML omitted -->
-That I know I don&rsquo;t want?<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-Infection breeds necessity.<!-- raw HTML omitted --></p>
-<!-- raw HTML omitted -->
-<h3 id="preservation">Preservation</h3>
-<p>I once had occasion to eat mincemeat from a Ball jar processed eight years
-before my birth. The dubiousness with which I approached that experience says
-volumes about our ability to preserve things. Even preservation has it&rsquo;s limits,
-you must agree. A ship, replaced board by board over five hundred years will, at
-some point not be an exercise in preservation, but change. The slow
-inevitability of change that causes mountains to fall and entire ecosystems to
-die.</p>
-<p>Our home among the stars has invited us for a short visit. Let us not, in our
-determination to survive, forget that we are guests. Mind your manners, do unto
-others, and don&rsquo;t try too hard to stay alive that you forget to live.</p>
-<h3 id="wind">Wind</h3>
-<p>Traveling ice that builds up on the bows of living organisms I didn&rsquo;t see until
-just now, and I&rsquo;m wondering now how trees got to be here. Certain species are
-moving. The North is warmer and they know and are moving. Closer to the warmth
-they go, but not the one here, covered in ice. It&rsquo;s stuck, stoic, standing its
-ground. Water drawn up to dizzying heights, to each little branch until a thin
-paper-like sheet of living cells that turns sunlight into sugar receives exactly
-as much as it needs to do it&rsquo;s work. Yes. We are extraordinary machines.</p>
-<h3 id="sunk">Sunk</h3>
-<p>It&rsquo;s that sinking feeling you get, when all things being equal you&rsquo;d just rather
-give up.</p>
-<h3 id="garble">Garble</h3>
-<!-- raw HTML omitted -->
-<p>When sunk costs dig holes in your yard<!-- raw HTML omitted -->
-And rampant words stand vigil over your house,<!-- raw HTML omitted -->
-You will be done in your domain<!-- raw HTML omitted -->
-As his haven turned out all but the best of us.<!-- raw HTML omitted --></p>
-<!-- raw HTML omitted -->
-<h3 id="writing">Writing</h3>
-<p>Writing is a technology.</p>
-<p>Writing improves information density.</p>
-<p>Writing creates a moral hazard of intention.</p>
-<p>Writing remembers what we forget.</p>
-<p>Writing destroys relationships.</p>
-<p>Writing cannot replace thought.</p>
-<p>Writing is not often true.</p>
-<h3 id="relationship">Relationship</h3>
-<p>And in the end, we were just supposed to get our work done. But our work was
-hidden from us, so first we had to discover what our work was. Upon discovering
-where our work was, it turned out we had the wrong work in mind at the start and
-so we begin to plumb the depths of our found work.</p>
-<p>While plumbing, we resolve to do the right work this time. No more time to mess
-around. We haul up our new work and find that it wasn&rsquo;t what we expected. No one
-wants this work do be done at all.</p>
-<p>But looking around, the work we thought we should do turned out to be okay work.
-The people around us were able to eat while doing the work, and they laughed and
-joked, sang and cried. The work made us remember we were human, and that was
-good work.</p>
-<h3 id="load">Load</h3>
-<p>A wire carries, can carry, a certain load before the molecular bonds holding the
-material together are weighted down too much. Is it unreasonable, then, to
-imagine the tapestry of our lives, held together by invisible bonds, molecules
-of constitution. And is it not possible that our constitutional bonds carry a
-certain load?</p>
-<p>What are we do to when we need a wire to carry more load? Faced with the upper
-bounds of physical laws, we need more wires to share the load. We share the load.</p>
-<h3 id="sky">Sky</h3>
-<p>Today the winds shifted abruptly to come from the Northeast, which means cold,
-and snow, and clouds.</p>
-<p>The sky is a flat, slate gray with wisps of contrast ripped into it by the
-sheering of the win.</p>
-<p>They sky occupies half of our world view on any given day. Is it any wonder our
-moods should rise and fall by the contents?</p>
-<h3 id="parent">Parent</h3>
-<!-- raw HTML omitted -->
-<p>To be the parent node, or the source of life<!-- raw HTML omitted -->
-For something beyond what you yourself contain,<!-- raw HTML omitted -->
-Is a special position, in a world of relationship.<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-The reason for existence for something so small,<!-- raw HTML omitted -->
-And the source of a desperate persistence in the world,<!-- raw HTML omitted -->
-Soon strong enough to declare itself independent.<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-Of the source of life, only the parent knows<!-- raw HTML omitted -->
-How fragile the connection can feel sometimes—<!-- raw HTML omitted -->
-How tenuous the lines that draw the child node back.<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-No parent can insure life against tragedy, and no<!-- raw HTML omitted -->
-child node can escape the truth of it&rsquo;s source.<!-- raw HTML omitted -->
-This is all we&rsquo;re given to go on, and yet we go.<!-- raw HTML omitted --></p>
-<!-- raw HTML omitted -->
-<h3 id="interfaces">Interfaces</h3>
-<p>If we were in a simulation, everything would be an interface. Modify this, get
-this response, adjust and modify the next things.</p>
-<p>If we were in a simulation, everything would be relative. Gravity would depend
-on the flow of time and light would bend and warp.</p>
-<p>If we were in a simulation we would be stuck waiting for the next step to run,
-unable to go forward at different rates, or ever backwards.</p>
-<h3 id="flow">Flow</h3>
-<!-- raw HTML omitted -->
-<p>When everything appears to be flowing,<!-- raw HTML omitted -->
-You tear pages from the book and watch<!-- raw HTML omitted -->
-As they flutter to fall in the water.<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-When everything falls apart around you<!-- raw HTML omitted -->
-You tear at your hair and think<!-- raw HTML omitted -->
-As life remains as it was when,<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-Everything is flowing.<!-- raw HTML omitted --></p>
-<!-- raw HTML omitted -->
-<h3 id="space">Space</h3>
-<p>Take a globe, the one from school, that no one ever actually looked at. Try to
-imagine how big the moon would be in comparison. A tennis ball? Surprisingly
-large for a natural satellite. Most planets are lucky to have one a fraction of
-the size.</p>
-<p>Put it 30 feet away and then imagine, if you will, sitting in a tin can as you
-traverse that space, 100,000 times larger. I don&rsquo;t know how we did it. I still
-can&rsquo;t really comprehend the feeling of isolation as they drifted, on a
-calculated trajectory towards a place that could never harbor life.</p>
-<h3 id="seat">Seat</h3>
-<!-- raw HTML omitted -->
-<p>You knew a guest was in the house<!-- raw HTML omitted -->
-The seat would be up.<!-- raw HTML omitted -->
-Sometimes the door would be closed.<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-Intimacy breeds familiarity,<!-- raw HTML omitted -->
-And a sense that what was hidden<!-- raw HTML omitted -->
-Behind the door was less a right<!-- raw HTML omitted -->
-Of all, than an expectation.<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-We are unashamed, possibly even<!-- raw HTML omitted -->
-Impolite. But we always know<!-- raw HTML omitted -->
-When there&rsquo;s a guest in the house.<!-- raw HTML omitted --></p>
-<!-- raw HTML omitted -->
-<h3 id="flight">Flight</h3>
-<!-- raw HTML omitted -->
-<p>And to just lift off, leave<!-- raw HTML omitted -->
-Everything behind, a fancy<!-- raw HTML omitted -->
-Flight of. But<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-It&rsquo;s not really possible.<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-And leave just to lift off,<!-- raw HTML omitted -->
-Find yourself gone, a fancy<!-- raw HTML omitted -->
-Dinner party of. Or<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-All your best friends.<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-They would miss you. Most likely.<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-They would wonder where<!-- raw HTML omitted -->
-You had lifted off to.<!-- raw HTML omitted -->
-A flight of fancy from a fancy dinner party.<!-- raw HTML omitted -->
-All expectation gone.<!-- raw HTML omitted --></p>
-<!-- raw HTML omitted -->
-<h3 id="rome">Rome</h3>
-<p>Fireworks at the colisseum. No. In the colisseum. Chinese tourists, roman
-candles, in the colisseum. From outside, over the wall. Can we remember
-everything in the past? Or are we doomed to repeat some things. Can we be doomed
-when repeation is how we learn?</p>
-<p>Roman candles, Chinese tourists, fireworks in the parking lot at the colisseum.
-This is not what I had expected.</p>
-<h3 id="water">Water</h3>
-<p>Rain doesn&rsquo;t help us</p>
-<p>Remember the cause, the</p>
-<p>Animating factor.</p>
-<p>Rain only redistributes</p>
-<p>Colossal amounts of</p>
-<p>Caustic chemicals everywhere.</p>
-<h3 id="acadian">Acadian</h3>
-<p>Diaspora in a compromised land, stretched by forces moving so slowly, slower
-than we can see but with evidence left everywhere. Culture accretes faster, but
-still imperceptible, reminding us that no one knows everything, or anything when
-it comes to that. When it comes to remembering how to live, how we survived the
-cataclysm, we depend on those who were lost once. We depend on those who knew
-enough to get us here. We depend on those around us now, able to carry our hopes
-and our dreams of returning to a place we&rsquo;ve only been told about.</p>
-<h3 id="assassin">Assassin</h3>
-<p>What if we were indestructable? A blaze of light and ground shaking thunder
-tears through our awarness and then nothing for a moment; sleep by any other
-name. And we awake years later coming to understand our new surroundings. A
-roll of dice and oak tree woods and the ocean are replaced by alpine meadows
-and pine.</p>
-<p>Isolated from earlier experiences, how would we know? What choice do we
-have?</p>
-<p>In a world where joy and sorrow live almost side by side, and where
-choices are often between bad and horrible, how can we be made whole?</p>
-<p>What if we were indestructable? Our bodies grow, mature and die, but we
-never die. How many times would this have to happen for us to discover
-that the path to right thought was in front of us the whole time? Many
-times, is my guess.</p>
-<h3 id="thunder">Thunder</h3>
-<p>The thunder rolls, and the lightnng strikes. Under a blanket of clouds, cropped
-tight to the ground, but not so tight to be fog, the thunder rolls. Gray
-permeates the sky and the thunder rolls. Scattered rain showers ruin a wedding
-celebration and the thunder rolls.</p>
-<p>Above the clouds the thunder rolls. The sun shines, and the rain is nothing but
-what we can imagine.</p>
-<h3 id="breathe">Breathe</h3>
-<!-- raw HTML omitted -->
-<p>Before action, there is thought, and before thought there is breath.<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-Breathe intentionally sometimes. In through your nose, and out through your<!-- raw HTML omitted -->
-mouth.<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-Breathe.<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-Take that thought in your head, picture it on a piece of paper, and let the<!-- raw HTML omitted -->
-paper fly away in a breeze, land in the river running past you, and disappear.<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-Now do it with the next thought.<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-And the next one.<!-- raw HTML omitted -->
-<!-- raw HTML omitted -->
-And breathe again.<!-- raw HTML omitted --></p>
-<!-- raw HTML omitted -->
-<h3 id="capacity">Capacity</h3>
-<p>We have the capacity to find joy in all things.</p>
-<p>A negative attitude is worse than a tumor.</p>
-<p>The best of life can come from the worst of life.</p>
-<h3 id="cold">Cold</h3>
-<p>Roadways clutter with debris of passing motorists and the cold draws the filth
-out, into a grim reflection of the gray, moistureless clouds above. Cold will
-descend, has descended, descends over the pine forests which stop only when they
-reach the sea, or we cut them back and till, plant and live.</p>
-<p>There is so little old growth forest left. In the cold, it seems impossible to
-have such an impact on so vast and inhospitable an expanse.</p>
-<h3 id="color">Color</h3>
-<p>As an article of faith, collaboration, coordination, we claim red comes before blue. Energy and rates of oscilation bounce around inside our eyes and our brain tells us how to feel. Embracing the abritrary and acknowledging the structure of the world serves to build resilience and ultimately to allow us to consume our mortality and live for others as we live for ourselves.</p>
-<h3 id="consider">Consider</h3>
-<p>A torrent of wind and water and the blue disappears from the sky, leaving slate gray and silver streaks like knives cutting, deboning houses and slipping trees from sodden ground. And then nothing. Silence and the sun slips onto the surface for minutes, feeling like hours. Children, tempted to dance in the spitting rain scurry back behind boards over windows and the tempest slams sideways into the world again.</p>
-<h3 id="death">Death</h3>
-<p>A stiff wind blows and snaps the reed in the canebrake. Gilgamesh is dead. And yet we persist. How do we persist? Why do we persist?</p>
-<p>The stories we tell ourselves are fabircations. The world tells only a single story. The story of all life, bending, arcing towards a darkness that knows nothing, that promises nothing. Only the great recycling of energy and mass. Heat and light and dust.</p>
-<h3 id="fail">Fail</h3>
-<p>By definition, seasons are temporal. There is no beginning but what we claim,
-and no end but what we decree. Earth&rsquo;s oscilations, rotations and orbits provide
-consistency, but only inasmuch as we remember what came before. Life, our Earth,
-and each day is change. When drawn out a thousand, ten thousand years, do we
-have a right, or is it even reasonable, to expect anything to be stable?</p>
-<h3 id="fixable">Fixable</h3>
-<p>Under what circumstance did we expect this would work? Days, numbered, slide
-past and not everything is repaired promptly. Some things are not fixable at all.
-Amazing, what we&rsquo;ll carry with us, into the subway, the neighbor&rsquo;s house, our
-last swim in the ocean. Scars from life. Some physical, some metaphysical, all a
-product of choice and circumstance.</p>
-<h3 id="haze">Haze</h3>
-<p>Before you begin, consider the atmosphere of the day. Take stock when the day is
-humid and hazy and the sun never seems to move beyond the burnt orange hue.</p>
-<p>Or is there not a cloud in sight, with not a drop of moisture in the air and a
-brilliant cerulean sky above you?</p>
-<p>Perhaps the mood is changeable with a brisk wind and clouds that seem to shift
-and move every minute.</p>
-<p>Whatever your day, take stock that how the day presents itself to you can have
-an impact on how you perceive yourself and those around you. Now act accordingly
-and maintain your virtue.</p>
-<h3 id="inverted">Inverted</h3>
-<p>Imagine for a moment a tree. Hold the shape of it in your mind a moment.
-Consider where it draws its strength. The soil, moisture, minerals.</p>
-<p>Now imagine a human. Hold our shape in your mind. Consider where it draws it&rsquo;s
-strength. An inverted tree? Not bound to the soil below, but to the heavens
-above. Inspiration striking like lightining and causing our passions to grow.</p>
-<h3 id="leguin">Le Guin</h3>
-<p>“If you cannot or will not imagine the results of your actions, there’s no way you can act morally or responsibly,  Little kids can’t do it; babies are morally monsters — completely greedy. Their imagination has to be trained into foresight and empathy.”</p>
-<ul>
-<li>Ursula K. Le Guin</li>
-</ul>
-<h3 id="preschool">Preschool</h3>
-<p>Wow. What&rsquo;s now? I&rsquo;m not sure I like &hellip; don&rsquo;t want food, no no. Under the table I think that&rsquo;s where I, hey. Who took the piece. You. Give it back. I&rsquo;m sad because he wont give it back and. Yes! I wonder if they have the minions game here. Can I play it? I don&rsquo;t want to go home yet.</p>
-<h3 id="roughly">Roughly</h3>
-<p>Understanding how everything goes together is, roughly, all that life requires
-of you.</p>
-<h3 id="repeatability">Repeatability</h3>
-<p>Under an apricot sky a world expanded beyond what any one person could hold in their mind. Yet any corner,
-taken in a moment, existed. There was no doubt about this. And what was more, given enough time, it would all
-regenerate.</p>
-<p>Chains of amino acids recombining a million times a second until what stood before you, in the
-blink of a cosmolgical eye, an oak tree.</p>
-<h3 id="seethe">Seethe</h3>
-<p>And in the hour of need, surrounded by all our loved ones, even some we missed or had forgotten about, the sea roils and seethes with the fury that only the planet can command.</p>
-<p>In hubris, life clings to boats, tossed at once, and yet fettered to the spot, frozen, unable to move or suffer destruction. It thought itself invincible. But nothing was ever farther from the truth.</p>
-<p>Memory of this life fades and what&rsquo;s left is another rock, slightly warmer than the rest.</p>
-<h3 id="soft">Soft</h3>
-<p>The taoists had it right. There is no strength without weakness, no wet without
-dry. Puffing up his chest, he stares through you, as though through staring he
-can destroy. But soon, enfilade and then off-guard the underbelly reveals
-insecurity that air cannot protect.</p>
-<p>All is soft in the middle.</p>
-<h3 id="trees">Trees</h3>
-<p>Take a moment to hold a single, specific tree in your vision.</p>
-<p>Now turn away and try to visualize the same tree in your mind.</p>
-<p>Turn back to the tree and consider that the tree is alive.</p>
-<p>The tree is growing right now; pulling water from the ground.</p>
-<p>Return to holding the same tree tomorrow, and the next day.</p>
-<h3 id="justice">Justice</h3>
-<p>Caught in the wire, with neither the agility or intelligence to free itself,
-the sheep suffocates. Justice lays over humans like the shepard to their
-flock, untangling us in moments of dread, and slaughtering us when our duty
-is fulfilled.</p>
-<h3 id="typing">Typing</h3>
-<p>It&rsquo;s hard to understand what&rsquo;s not understandable especially in light of what we never understood to begin with. The sound of the keys made a clicking noise that would have driven an average man crazy, but the lack of preconceptions in this case led to the clack, clack, clack, clack to a tap, tap, tap, tap to a drum beat driven into the heart of the most relevant moments of his life. But he didn&rsquo;t understand what that meant. Reliving moments you thought were gone. Crying again and again for something you thought you were done with. The clacking, the tapping, leading to recall. Perfect, heartbreaking recall.</p>
-<h3 id="angry">Angry</h3>
-<p>Spend much time there myself. Depth charges primed, deployed, sinking, waiting,
-fury unleashed. Proximity and destruction raining shrapnel slowly sinking.  No
-fire down here, just a shudder and ripping, tearing. Nothing to see. All
-contained by pressure. Crushing pressure, surrounding us all.  Can&rsquo;t decide
-which direction so it goes everywhere.</p>
-<h3 id="upcs">UPCs</h3>
-<p>The ability to reason about output, production or worth. If you id, catalog, organize you can gain insight, improvements or reaction. Understanding your universal product codes improves very little. Codes are tools of catagorization ensuring that everything is unique, trackable, known. All our products should be known. That is a universal goal of humanity.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 127
public/post/upcs/index.html

@@ -1,127 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>UPCs - UNBLINK</title>
-    
-    <meta name="description" content="The ability to reason about output, production or worth. If you id, catalog, organize you can gain insight, improvements or reaction. Understanding your universal product codes improves very little. Codes are tools of catagorization ensuring that everything is unique, trackable, known. All our products should be known. That is a universal goal of humanity.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">UPCs</h1>
-    <div class="post-meta">[CP] · November 10, 2017</div>
-  </header>
-  <div class="post-content"><p>The ability to reason about output, production or worth. If you id, catalog, organize you can gain insight, improvements or reaction. Understanding your universal product codes improves very little. Codes are tools of catagorization ensuring that everything is unique, trackable, known. All our products should be known. That is a universal goal of humanity.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 137
public/post/water/index.html

@@ -1,137 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Water - UNBLINK</title>
-    
-    <meta name="description" content="Rain doesn&rsquo;t help us
-Remember the cause, the
-Animating factor.
-Rain only redistributes
-Colossal amounts of
-Caustic chemicals everywhere.">
-    <meta name="author" content="[CP]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Water</h1>
-    <div class="post-meta">[CP] · July 23, 2019</div>
-  </header>
-  <div class="post-content"><p>Rain doesn&rsquo;t help us</p>
-<p>Remember the cause, the</p>
-<p>Animating factor.</p>
-<p>Rain only redistributes</p>
-<p>Colossal amounts of</p>
-<p>Caustic chemicals everywhere.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 133
public/post/wind/index.html

@@ -1,133 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Wind - UNBLINK</title>
-    
-    <meta name="description" content="Traveling ice that builds up on the bows of living organisms I didn&rsquo;t see until just now, and I&rsquo;m wondering now how trees got to be here. Certain species are moving. The North is warmer and they know and are moving. Closer to the warmth they go, but not the one here, covered in ice. It&rsquo;s stuck, stoic, standing its ground. Water drawn up to dizzying heights, to each little branch until a thin paper-like sheet of living cells that turns sunlight into sugar receives exactly as much as it needs to do it&rsquo;s work.">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Wind</h1>
-    <div class="post-meta">[Colin Powell] · February 10, 2020</div>
-  </header>
-  <div class="post-content"><p>Traveling ice that builds up on the bows of living organisms I didn&rsquo;t see until
-just now, and I&rsquo;m wondering now how trees got to be here. Certain species are
-moving. The North is warmer and they know and are moving. Closer to the warmth
-they go, but not the one here, covered in ice. It&rsquo;s stuck, stoic, standing its
-ground. Water drawn up to dizzying heights, to each little branch until a thin
-paper-like sheet of living cells that turns sunlight into sugar receives exactly
-as much as it needs to do it&rsquo;s work. Yes. We are extraordinary machines.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 139
public/post/writing/index.html

@@ -1,139 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title>Writing - UNBLINK</title>
-    
-    <meta name="description" content="Writing is a technology.
-Writing improves information density.
-Writing creates a moral hazard of intention.
-Writing remembers what we forget.
-Writing destroys relationships.
-Writing cannot replace thought.
-Writing is not often true.">
-    <meta name="author" content="[Colin Powell]">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="single">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-<article class="post-single">
-  <header class="post-header">
-    <h1 class="post-title">Writing</h1>
-    <div class="post-meta">[Colin Powell] · December 11, 2019</div>
-  </header>
-  <div class="post-content"><p>Writing is a technology.</p>
-<p>Writing improves information density.</p>
-<p>Writing creates a moral hazard of intention.</p>
-<p>Writing remembers what we forget.</p>
-<p>Writing destroys relationships.</p>
-<p>Writing cannot replace thought.</p>
-<p>Writing is not often true.</p>
-</div>
-  
-  
-  
-  
-  
-</article>
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 1
public/robots.txt

@@ -1 +0,0 @@
-User-agent: *

+ 0 - 249
public/sitemap.xml

@@ -1,249 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
-  xmlns:xhtml="http://www.w3.org/1999/xhtml">
-  <url>
-    <loc>https://unbl.ink/categories/</loc>
-    <lastmod>2023-01-23T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/deploy/</loc>
-    <lastmod>2023-01-23T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/categories/misc/</loc>
-    <lastmod>2023-01-23T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/</loc>
-    <lastmod>2023-01-23T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/</loc>
-    <lastmod>2023-01-23T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/condition/</loc>
-    <lastmod>2022-03-06T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/suns/</loc>
-    <lastmod>2020-11-17T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/curt/</loc>
-    <lastmod>2020-10-24T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/pink/</loc>
-    <lastmod>2020-03-27T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/infection/</loc>
-    <lastmod>2020-03-25T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/preservation/</loc>
-    <lastmod>2020-03-10T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/wind/</loc>
-    <lastmod>2020-02-10T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/sunk/</loc>
-    <lastmod>2019-12-19T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/garble/</loc>
-    <lastmod>2019-12-17T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/writing/</loc>
-    <lastmod>2019-12-11T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/relationship/</loc>
-    <lastmod>2019-12-05T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/load/</loc>
-    <lastmod>2019-12-03T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/sky/</loc>
-    <lastmod>2019-12-02T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/parent/</loc>
-    <lastmod>2019-12-01T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/interfaces/</loc>
-    <lastmod>2019-11-26T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/flow/</loc>
-    <lastmod>2019-11-24T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/seat/</loc>
-    <lastmod>2019-10-28T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/flight/</loc>
-    <lastmod>2019-10-22T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/rome/</loc>
-    <lastmod>2019-07-24T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/water/</loc>
-    <lastmod>2019-07-23T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/soft/</loc>
-    <lastmod>2019-05-21T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/angry/</loc>
-    <lastmod>2019-05-02T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/fixable/</loc>
-    <lastmod>2019-04-26T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/roughly/</loc>
-    <lastmod>2019-04-19T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/acadian/</loc>
-    <lastmod>2019-04-17T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/cold/</loc>
-    <lastmod>2018-11-17T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/thunder/</loc>
-    <lastmod>2018-11-10T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/repeatability/</loc>
-    <lastmod>2018-04-14T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/typing/</loc>
-    <lastmod>2018-04-12T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/leguin/</loc>
-    <lastmod>2018-01-28T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/capacity/</loc>
-    <lastmod>2018-01-04T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/death/</loc>
-    <lastmod>2017-12-05T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/upcs/</loc>
-    <lastmod>2017-11-10T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/fail/</loc>
-    <lastmod>2017-09-27T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/color/</loc>
-    <lastmod>2017-09-25T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/preschool/</loc>
-    <lastmod>2017-09-20T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/consider/</loc>
-    <lastmod>2017-09-18T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/haze/</loc>
-    <lastmod>2017-09-16T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/trees/</loc>
-    <lastmod>2017-09-15T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/breathe/</loc>
-    <lastmod>2017-06-25T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/inverted/</loc>
-    <lastmod>2017-06-15T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/assassin/</loc>
-    <lastmod>2017-06-14T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/post/justice/</loc>
-    <lastmod>2017-06-05T00:00:00+00:00</lastmod>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url><url>
-    <loc>https://unbl.ink/tags/</loc>
-    <changefreq>weekly</changefreq>
-    <priority>0.5</priority>
-  </url>
-</urlset>

+ 0 - 516
public/style.css

@@ -1,516 +0,0 @@
-/*
- * Paper
- * A simple, clean, flexible Hugo theme
- * https://github.com/nanxiaobei/hugo-paper
- * Designed by MR.LEE (https://mrlee.me/)
- * Updated in 2019.10.17
- */
-
-/* Theme
--------------------------------------------------- */
-:root {
-  --gap: 24px;
-  --content-gap: 40px;
-  --nav-width: 1024px;
-  --main-width: 640px;
-  --header-height: 60px;
-  --footer-height: 60px;
-  --radius: 8px;
-
-  --theme: #fff;
-  --primary: rgba(0, 0, 0, 0.88);
-  --secondary: rgba(0, 0, 0, 0.56);
-  --tertiary: rgba(0, 0, 0, 0.16);
-
-  --hljs-bg: #1c1d21;
-  --code-bg: #f5f5f5;
-  --border: #eee;
-}
-.dark {
-  --theme: #3c3c3c;
-  --primary: rgba(255, 255, 255, 0.88);
-  --secondary: rgba(255, 255, 255, 0.56);
-  --tertiary: rgba(255, 255, 255, 0.16);
-
-  --hljs-bg: #2a2a2a;
-  --code-bg: #4f4f4f;
-  --border: #5f5f5f;
-}
-.list {
-  background: linear-gradient(135deg, #ddd, #f5f5f5, #d5d5d5);
-}
-.dark.list {
-  background: linear-gradient(135deg, #1c1c1c, #2a2a2a, #000);
-}
-/* Reset
--------------------------------------------------- */
-*,
-*::before,
-*::after {
-  box-sizing: border-box;
-}
-html {
-  -webkit-tap-highlight-color: transparent;
-}
-body {
-  margin: 0;
-  color: var(--primary);
-  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
-    'Open Sans', 'Helvetica Neue', sans-serif;
-  font-size: 18px;
-  line-height: 1.8;
-  word-break: break-word;
-  background: var(--theme);
-}
-article,
-aside,
-figcaption,
-figure,
-footer,
-header,
-hgroup,
-main,
-nav,
-section {
-  display: block;
-}
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
-  margin-top: 0;
-  margin-bottom: 0;
-  line-height: 1.2;
-}
-p {
-  margin-top: 0;
-  margin-bottom: 0;
-}
-strong,
-b {
-  font-weight: 500;
-}
-ul {
-  margin: 0;
-  padding: 0;
-}
-a {
-  color: var(--primary);
-  text-decoration: none;
-}
-figure {
-  margin: 0;
-}
-table {
-  width: 100%;
-  border-collapse: collapse;
-  border-spacing: 0;
-}
-button,
-input,
-textarea {
-  padding: 0;
-  font: inherit;
-  background: transparent;
-  border: 0;
-  -webkit-appearance: none;
-}
-button,
-input[type='button'],
-input[type='submit'] {
-  cursor: pointer;
-}
-input,
-textarea {
-  padding: 0;
-  border: 0;
-  outline: 0;
-}
-input:-webkit-autofill,
-textarea:-webkit-autofill {
-  box-shadow: 0 0 0 50px var(--theme) inset;
-}
-img {
-  display: block;
-  max-width: 100%;
-}
-/* Header
--------------------------------------------------- */
-.nav {
-  display: flex;
-  flex-wrap: wrap;
-  justify-content: space-between;
-  max-width: calc(var(--nav-width) + var(--gap) * 2);
-  margin-left: auto;
-  margin-right: auto;
-}
-.nav a {
-  display: block;
-  line-height: var(--header-height);
-}
-.logo,
-.menu {
-  margin-left: var(--gap);
-  margin-right: var(--gap);
-}
-.logo a {
-  font-size: 24px;
-  font-weight: 700;
-}
-.menu {
-  display: flex;
-  list-style: none;
-  word-break: keep-all;
-  overflow-x: auto;
-}
-.menu li + li {
-  margin-left: var(--gap);
-}
-.menu a {
-  font-size: 16px;
-}
-/* Main
--------------------------------------------------- */
-.main {
-  position: relative;
-  min-height: calc(100vh - var(--header-height) - var(--footer-height));
-  max-width: calc(var(--main-width) + var(--gap) * 2);
-  margin-left: auto;
-  margin-right: auto;
-  padding: var(--gap);
-}
-.page-header {
-  margin-bottom: 24px;
-}
-.page-header h1 {
-  font-size: 40px;
-}
-.pagination {
-  display: flex;
-}
-.pagination a {
-  color: var(--theme);
-  font-size: 13px;
-  line-height: 36px;
-  background: var(--primary);
-  border-radius: calc(36px / 2);
-}
-.pagination .prev {
-  padding-left: 16px;
-  padding-right: 18px;
-}
-.pagination .next {
-  margin-left: auto;
-  padding-left: 18px;
-  padding-right: 16px;
-}
-/* Post entry
--------------------------------------------------- */
-.first-entry {
-  position: relative;
-  display: flex;
-  flex-direction: column;
-  justify-content: center;
-  height: 320px;
-  margin-bottom: var(--header-height);
-}
-.first-entry .entry-header {
-  overflow: hidden;
-  display: -webkit-box;
-  -webkit-box-orient: vertical;
-  -webkit-line-clamp: 3;
-}
-.first-entry .entry-header h2 {
-  font-size: 40px;
-}
-.first-entry .entry-content {
-  margin-top: 14px;
-  margin-bottom: 14px;
-  font-size: 16px;
-  -webkit-line-clamp: 3;
-}
-.first-entry .entry-footer {
-  font-size: 14px;
-}
-.post-entry {
-  position: relative;
-  margin-bottom: var(--gap);
-  padding: var(--gap);
-  background: var(--theme);
-  border-radius: var(--radius);
-  transition: transform 0.1s;
-}
-.post-entry:active {
-  transform: scale(0.96);
-}
-.entry-header h2 {
-  font-size: 24px;
-}
-.entry-content {
-  margin-top: 8px;
-  margin-bottom: 8px;
-  color: var(--secondary);
-  font-size: 14px;
-  line-height: 1.6;
-  overflow: hidden;
-  display: -webkit-box;
-  -webkit-box-orient: vertical;
-  -webkit-line-clamp: 2;
-}
-.entry-footer {
-  color: var(--secondary);
-  font-size: 13px;
-}
-.entry-link {
-  position: absolute;
-  left: 0;
-  right: 0;
-  top: 0;
-  bottom: 0;
-}
-/* Post single
--------------------------------------------------- */
-.post-header {
-  margin-top: 24px;
-  margin-bottom: var(--content-gap);
-}
-.post-title {
-  margin-bottom: 2px;
-  font-size: 40px;
-  transform: translateX(-2px);
-}
-.post-meta {
-  color: var(--secondary);
-  font-size: 14px;
-}
-.post-content h1 {
-  margin-top: 40px;
-  margin-bottom: 32px;
-}
-.post-content h2 {
-  margin-top: 32px;
-  margin-bottom: 24px;
-}
-.post-content h3,
-.post-content h4,
-.post-content h5,
-.post-content h6 {
-  margin-top: 24px;
-  margin-bottom: 16px;
-}
-.post-content h1 {
-  font-size: 40px;
-}
-.post-content h2 {
-  font-size: 32px;
-}
-.post-content h3 {
-  font-size: 24px;
-}
-.post-content h4 {
-  font-size: 16px;
-}
-.post-content h5 {
-  font-size: 14px;
-}
-.post-content h6 {
-  font-size: 12px;
-}
-.post-content a {
-  box-shadow: 0 1px 0 var(--primary);
-}
-.post-content a code {
-  margin-left: 0;
-  margin-right: 0;
-  border-radius: 0;
-  box-shadow: 0 -1px 0 var(--primary) inset;
-}
-.post-content del {
-  text-decoration: none;
-  background: linear-gradient(to right, var(--primary) 100%, transparent 0) 0 50% / 1px 1px repeat-x;
-}
-.post-content p,
-.post-content ul,
-.post-content ol,
-.post-content dl {
-  margin-bottom: var(--content-gap);
-}
-.post-content ul,
-.post-content ol {
-  padding-left: 20px;
-}
-.post-content li {
-  margin-top: 5px;
-}
-.post-content li p {
-  margin-bottom: 0;
-}
-.post-content dl {
-  display: flex;
-  flex-wrap: wrap;
-  margin: 0;
-}
-.post-content dt {
-  width: 25%;
-  font-weight: 700;
-}
-.post-content dd {
-  width: 75%;
-  margin-left: 0;
-  padding-left: 10px;
-}
-.post-content dt ~ dt,
-.post-content dd ~ dd {
-  margin-top: 10px;
-}
-.post-content table {
-  margin-bottom: 32px;
-}
-.post-content table th,
-.post-content table:not(.highlighttable) td {
-  min-width: 80px;
-  padding: 12px 8px;
-  line-height: 1.5;
-  border-bottom: 1px solid var(--border);
-}
-.post-content table th {
-  font-size: 14px;
-  text-align: left;
-}
-.post-content table:not(.highlighttable) td code:only-child {
-  margin-left: 0;
-  margin-right: 0;
-}
-.post-content .highlight,
-.post-content pre {
-  margin-left: calc(var(--gap) * -1);
-  margin-right: calc(var(--gap) * -1);
-  margin-bottom: 32px;
-  background: var(--hljs-bg) !important;
-  border-radius: var(--radius);
-}
-.post-content ul pre {
-  margin-left: calc(var(--gap) * -2);
-}
-.post-content .highlight pre {
-  margin-left: 0;
-  margin-right: 0;
-  margin-bottom: 0;
-}
-/* table */
-.post-content .highlighttable {
-  table-layout: fixed;
-}
-.post-content .highlighttable td:first-child {
-  width: 40px;
-}
-.post-content .highlighttable td .linenodiv {
-  padding-right: 0 !important;
-}
-.post-content .highlighttable td .linenodiv pre,
-.post-content .highlighttable td .highlight {
-  margin-bottom: 0;
-}
-.post-content .highlighttable td .highlight pre code::-webkit-scrollbar {
-  display: none;
-}
-/* inline */
-.post-content .highlight span {
-  background: transparent !important;
-}
-
-.post-content code {
-  margin-left: 4px;
-  margin-right: 4px;
-  padding: 4px 6px;
-  font-family: Menlo, Monaco, 'Courier New', Courier, monospace;
-  font-size: 0.78em;
-  line-height: 1.5;
-  background: var(--code-bg);
-  border-radius: 2px;
-}
-.post-content pre code {
-  display: block;
-  margin-left: 0;
-  margin-right: 0;
-  padding: var(--gap);
-  color: rgba(255, 255, 255, 0.8);
-  background: transparent;
-  border-radius: 0;
-}
-.post-content blockquote {
-  margin: 0 0 0 calc(var(--gap) * -1);
-  padding: 0 0 0 21px;
-  border-left: 3px solid var(--primary);
-}
-.post-content hr {
-  height: 1px;
-  margin-top: 56px;
-  margin-bottom: 56px;
-  background: var(--tertiary);
-  border-top: 0;
-  border-bottom: 0;
-}
-.post-content iframe {
-  max-width: 100%;
-}
-.post-footer {
-  margin-top: 56px;
-}
-.post-tags li {
-  display: inline-block;
-}
-.post-tags li + li {
-  margin-left: 3px;
-}
-.post-tags a {
-  display: block;
-  padding-left: 14px;
-  padding-right: 14px;
-  color: var(--secondary);
-  font-size: 14px;
-  line-height: 34px;
-  background: var(--code-bg);
-  border-radius: 2px;
-}
-.post-tags a:hover {
-  background: var(--border);
-}
-/* Footer
--------------------------------------------------- */
-.footer {
-  max-width: calc(var(--main-width) + var(--gap) * 2);
-  margin-left: auto;
-  margin-right: auto;
-  padding: calc((var(--footer-height) - var(--gap)) / 2) var(--gap);
-  color: var(--secondary);
-  font-size: 12px;
-  text-align: center;
-  line-height: 24px;
-}
-.footer span {
-  margin-left: 1px;
-  margin-right: 1px;
-}
-.footer a {
-  color: inherit;
-}
-.footer a:hover {
-  color: var(--primary);
-  border-bottom: 1px solid var(--primary);
-}
-/* 404
--------------------------------------------------- */
-.not-found {
-  position: absolute;
-  left: 0;
-  right: 0;
-  display: flex;
-  align-items: center;
-  justify-content: center;
-  height: 80%;
-  font-size: 160px;
-  font-weight: 700;
-}

+ 0 - 127
public/tags/index.html

@@ -1,127 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-    
-    <title> - UNBLINK</title>
-    
-    <meta name="description" content="UNBLINK">
-    <meta name="author" content="">
-    
-    <link href="https://unbl.ink/an-old-hope.min.css" rel="stylesheet">
-    <link href="https://unbl.ink/style.css" rel="stylesheet">
-    
-    <link rel="apple-touch-icon" href="https://unbl.ink/apple-touch-icon.png">
-    <link rel="icon" href="https://unbl.ink/favicon.ico">
-    
-    <meta name="generator" content="Hugo 0.109.0">
-    
-    <link rel="alternate" type="application/atom+xml" href="https://unbl.ink/index.xml" title="UNBLINK">
-    
-    
-    
-    <script>
-      function setTheme() {
-        const time = new Date();
-
-        const prev = localStorage.getItem('date');
-        const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
-        const now = time.getTime();
-        let sunrise;
-        let sunset;
-
-        function setBodyClass() {
-          if (now > sunrise && now < sunset) return;
-          document.body.classList.add('dark');
-        }
-
-        if (date !== prev) {
-          fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
-            .then(res => res.json())
-            .then(data => {
-              sunrise = data.sunrise.split(':').map(Number);
-              sunset = data.sunset.split(':').map(Number);
-            })
-            .catch(() => {
-              sunrise = [7, 0];
-              sunset = [19, 0];
-            })
-            .finally(() => {
-              sunrise = time.setHours(sunrise[0], sunrise[1], 0);
-              sunset = time.setHours(sunset[0], sunset[1], 0);
-              setBodyClass();
-              localStorage.setItem('sunrise', sunrise);
-              localStorage.setItem('sunset', sunset);
-            });
-          localStorage.setItem('date', date);
-        } else {
-          sunrise = Number(localStorage.getItem('sunrise'));
-          sunset = Number(localStorage.getItem('sunset'));
-          setBodyClass();
-        }
-      }
-    </script>
-  </head>
-  <body class="list">
-    <script>
-      setTheme();
-    </script>
-    <header class="header">
-      <nav class="nav">
-        
-        <p class="logo"><a href="https://unbl.ink/">UNBLINK</a></p>
-        
-        
-        <ul class="menu">
-          
-          <li>
-            <a href="/">Home</a>
-          </li>
-          
-          <li>
-            <a href="/post/">Archives</a>
-          </li>
-          
-          <li>
-            <a href="/categories/">Categories</a>
-          </li>
-          
-        </ul>
-        
-      </nav>
-    </header>
-    <main class="main">
-
-
-
-
-
-<header class="page-header">
-  <h1></h1>
-</header>
-
-
-
-
-
-
-
-
-</main>
-<footer class="footer">
-  <span>&copy; 2023 <a href="https://unbl.ink/">UNBLINK</a></span>
-  <span>&middot;</span>
-  <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
-  <span>&middot;</span>
-  <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://unbl.ink/highlight.min.js"></script>
-<script>
-  hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-

+ 0 - 10
public/tags/index.xml

@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
-  <channel>
-    <title>Tags on UNBLINK</title>
-    <link>https://unbl.ink/tags/</link>
-    <description>Recent content in Tags on UNBLINK</description>
-    <generator>Hugo -- gohugo.io</generator>
-    <language>en</language><atom:link href="https://unbl.ink/tags/index.xml" rel="self" type="application/rss+xml" />
-  </channel>
-</rss>

+ 0 - 10
public/tags/page/1/index.html

@@ -1,10 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <title>https://unbl.ink/tags/</title>
-    <link rel="canonical" href="https://unbl.ink/tags/">
-    <meta name="robots" content="noindex">
-    <meta charset="utf-8">
-    <meta http-equiv="refresh" content="0; url=https://unbl.ink/tags/">
-  </head>
-</html>

Some files were not shown because too many files changed in this diff