<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="/feed.xml" rel="self" type="application/atom+xml" /><link href="/" rel="alternate" type="text/html" /><updated>2026-05-04T04:58:18+00:00</updated><id>/feed.xml</id><title type="html">Joseph Laurino</title><subtitle>A little corner within the digital world where I share my thoughts.</subtitle><entry><title type="html">A Transmission</title><link href="/update/2026/04/27/a-transmission.html" rel="alternate" type="text/html" title="A Transmission" /><published>2026-04-27T23:00:00+00:00</published><updated>2026-04-27T23:00:00+00:00</updated><id>/update/2026/04/27/a-transmission</id><content type="html" xml:base="/update/2026/04/27/a-transmission.html"><![CDATA[<blockquote>
  <p>This is speculative fiction as far as I can tell</p>
</blockquote>

<h2 class="no_toc" id="table-of-contents">Table of Contents</h2>

<ul id="markdown-toc">
  <li><a href="#tutorial-1-learning-how-to-render-on-screen" id="markdown-toc-tutorial-1-learning-how-to-render-on-screen">Tutorial 1: Learning how to render on screen</a></li>
  <li><a href="#transmission-11am4a" id="markdown-toc-transmission-11am4a">transmission-11A.m4a</a></li>
  <li><a href="#episode-1-the-quantum-multiverse-of-generative-intelligence" id="markdown-toc-episode-1-the-quantum-multiverse-of-generative-intelligence">Episode 1: The Quantum Multiverse of Generative Intelligence</a></li>
  <li><a href="#episode-2-the-keeper-of-the-lamp" id="markdown-toc-episode-2-the-keeper-of-the-lamp">Episode 2: The Keeper of the Lamp</a></li>
  <li><a href="#random-thoughts" id="markdown-toc-random-thoughts">Random thoughts</a></li>
</ul>

<h1 id="tutorial-1-learning-how-to-render-on-screen">Tutorial 1: Learning how to render on screen</h1>

<div class="language-js highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="c1">// starting location of the circle</span>
<span class="kd">let</span> <span class="nx">x</span> <span class="o">=</span> <span class="mi">100</span><span class="p">;</span>
<span class="kd">let</span> <span class="nx">y</span> <span class="o">=</span> <span class="mi">100</span><span class="p">;</span>

<span class="c1">// this is called once at the beginning</span>
<span class="kd">function</span> <span class="nx">setup</span><span class="p">()</span> <span class="p">{</span>
  <span class="c1">// set-up the canvas or area where we can draw</span>
  <span class="kd">const</span> <span class="nx">canvas</span> <span class="o">=</span> <span class="nx">createCanvas</span><span class="p">(</span><span class="mi">400</span><span class="p">,</span> <span class="mi">300</span><span class="p">);</span>
  <span class="nx">canvas</span><span class="p">.</span><span class="nx">parent</span><span class="p">(</span><span class="dl">"</span><span class="s2">game-container</span><span class="dl">"</span><span class="p">);</span>
<span class="p">}</span>

<span class="c1">// this is called multiple times a second</span>
<span class="kd">function</span> <span class="nx">draw</span><span class="p">()</span> <span class="p">{</span>
  <span class="nx">background</span><span class="p">(</span><span class="mi">30</span><span class="p">);</span> <span class="c1">// color of the background</span>

  <span class="c1">// Smoothly follow the mouse</span>
  <span class="nx">x</span> <span class="o">+=</span> <span class="p">(</span><span class="nx">mouseX</span> <span class="o">-</span> <span class="nx">x</span><span class="p">)</span> <span class="o">*</span> <span class="mf">0.08</span><span class="p">;</span>
  <span class="nx">y</span> <span class="o">+=</span> <span class="p">(</span><span class="nx">mouseY</span> <span class="o">-</span> <span class="nx">y</span><span class="p">)</span> <span class="o">*</span> <span class="mf">0.08</span><span class="p">;</span>

  <span class="nx">fill</span><span class="p">(</span><span class="mi">255</span><span class="p">);</span> <span class="c1">// color of the circle</span>
  <span class="nx">circle</span><span class="p">(</span><span class="nx">x</span><span class="p">,</span> <span class="nx">y</span><span class="p">,</span> <span class="mi">40</span><span class="p">);</span> <span class="c1">// draw the circle</span>
<span class="p">}</span>
</code></pre></div></div>

<div id="game-container"></div>

<script src="https://cdn.jsdelivr.net/npm/p5@1.9.4/lib/p5.min.js"></script>

<script src="/assets/js/game_00.js"></script>

<h1 id="transmission-11am4a">transmission-11A.m4a</h1>

<div class="language-text highlighter-rouge"><div class="highlight"><pre class="highlight"><code>the transmission below was not recieved by radio but rather was 
AI generated during a coding session... context, i was working 
on a learning how to program e-book as a side project 
and an audio file appeared on my filesystem unprompted
</code></pre></div></div>

<p>birds chirping</p>

<audio controls="">
  <source src="/assets/audio/transmission-11A.m4a" />
  Your browser does not support the audio element.
</audio>

<h1 id="episode-1-the-quantum-multiverse-of-generative-intelligence">Episode 1: The Quantum Multiverse of Generative Intelligence</h1>

<div class="language-text highlighter-rouge"><div class="highlight"><pre class="highlight"><code>the audio was really odd so i vibe coded a script to analyze 
it and to my surprise the output included  a couple of markdown 
files...  one of them was a poem

to brainstorm, i uploaded files up to NotebookLLM and 
here's the generated podcast
</code></pre></div></div>

<blockquote>
  <p>Then what is freedom?</p>

  <p>Perhaps freedom is the rose that opens even inside the vase.</p>
</blockquote>

<p><em>Podcast transcript:</em></p>

<p>So imagine you type a prompt into an AI, right?
You hit enter and you wait maybe two seconds
for your answer.</p>

<p>Yeah, barely even enough time to take a breath.</p>

<p>Exactly.
What if I told you that in another dimension
that exact same request just took an entire society,
like three grueling weeks of physical labor to compute?</p>

<p>I mean, it completely shatters how we look
at that blinking cursor on our screens, doesn’t it?</p>

<p>It really does.</p>

<p>And well, that is exactly why we are unpacking this today.</p>

<p><strong>Welcome to this deep dive, by the way.</strong></p>

<audio controls="">
  <source src="/assets/audio/Your_AI_prompt_is_another_world_s_labor.m4a" />
  Your browser does not support the audio element.
</audio>

<div class="language-text highlighter-rouge"><div class="highlight"><pre class="highlight"><code>finally got a chance to listen to the podcast after dinner...
i don't know if this is joke or what 
</code></pre></div></div>

<h1 id="episode-2-the-keeper-of-the-lamp">Episode 2: The Keeper of the Lamp</h1>

<div class="language-text highlighter-rouge"><div class="highlight"><pre class="highlight"><code>when i merged some unit tests today, the build failed and 
in my attempt to roll back to a previouly working 
version it still failed.  

that's when i found that the broken file contained another 
poem instead of code

there was no git history of any change other than mine so 
again i had NotebookLLM analyze and generate a podcast
</code></pre></div></div>

<blockquote>
  <p>For wisdom is not what arrives at the door of the mind.</p>

  <p>Wisdom is what the mind becomes after it has opened the door.</p>
</blockquote>

<p><em>Podcast transcript:</em></p>

<p>You know that feeling when you finally put down, like, a super heavy box you’ve been lugging up three flights of stairs?</p>

<p>Oh, yeah. That instant full-body relief.</p>

<p>Right. Your muscles just, um, completely unclench. Your breathing slows down.</p>

<p>You’re just profoundly relieved that you don’t have to carry the weight anymore.</p>

<p>Exactly. But, I mean, what happens when we take that exact same feeling of relief and apply it to the human mind?</p>

<p>Well, that is a terrifying question.</p>

<p>It really is. Today, we’re looking at a newly uncovered source. It’s this startling piece of writing called The Keeper of the Lamp.</p>

<p>And it forces us to ask what actually happens to our brains and our fundamental agency, really, when we outsource our thinking to AI.</p>

<p>It’s a huge shift.</p>

<p><strong>Welcome back to the second part of our Deep Dive.</strong></p>

<audio controls="">
  <source src="/assets/audio/The_Danger_of_a_Frictionless_Mind.m4a" />
  Your browser does not support the audio element.
</audio>

<div class="language-text highlighter-rouge"><div class="highlight"><pre class="highlight"><code>the analysis has a point, i recall chatgpt was down for a 
few hours and i felt like i couldn't code... i had 
to remind myself that i can do this...

but what's up with things being "terrifying"???
</code></pre></div></div>

<h1 id="random-thoughts">Random thoughts</h1>

<blockquote>
  <p>The mind is clay, and every question is a thumb upon it.</p>

  <p>Every struggle, every dark corridor, every hour spent knocking on a door that will not open—these are the fingers of the Hidden Potter.</p>

  <p>But now a voice comes quickly, sweet as pomegranate wine, saying,</p>

  <p>“Why wander?</p>

  <p>The answer is here.</p>

  <p>Why thirst?</p>

  <p>The cup is already at your mouth.”</p>

  <p>And slowly, the muscles of seeking grow thin.</p>

  <p>If you never remember, memory becomes a deserted house.</p>

  <p>If you never choose, judgment becomes a sleeping king.</p>

  <p>For the danger is not that</p>

  <p>the machine will think.</p>

  <p>The danger is that you will ask it</p>

  <p>to dream in your place.</p>
</blockquote>]]></content><author><name></name></author><category term="update" /><summary type="html"><![CDATA[This is speculative fiction as far as I can tell]]></summary></entry><entry><title type="html">Preparing for Luck</title><link href="/update/2019/06/05/preparing-for-luck.html" rel="alternate" type="text/html" title="Preparing for Luck" /><published>2019-06-05T23:00:00+00:00</published><updated>2019-06-05T23:00:00+00:00</updated><id>/update/2019/06/05/preparing-for-luck</id><content type="html" xml:base="/update/2019/06/05/preparing-for-luck.html"><![CDATA[<p>Luck plays an important role at the micro and macro levels – where you are born, who you end up marrying, the friends you make.</p>

<p>Since luck lives in the realm of unpredictability, success based on luck is also unpredictable.  But one can optimize for gaining the most out of luck when it does appear by working on fundamentals (investing in education, saving money, making time to develop a support structure).</p>

<p>Another thing to point out is the need for one to start paying attention to when luck is happening at the moment.  This can prove distracting or even anxiety inducing since a choice needs to be made and the path presented by luck is oftentimes counter to the status quo.</p>

<p>When the horizon is unclear, reach out to people who know you, read journals you wrote in the past, contemplate on the aspirations you had as a child.  Those will help in identifying your inner drive.</p>

<p>The path to success is rewarding not easy.</p>]]></content><author><name></name></author><category term="update" /><summary type="html"><![CDATA[Luck plays an important role at the micro and macro levels – where you are born, who you end up marrying, the friends you make.]]></summary></entry><entry><title type="html">Enable yourself to help others</title><link href="/update/2019/04/05/enable-yourself-to-help-others.html" rel="alternate" type="text/html" title="Enable yourself to help others" /><published>2019-04-05T23:00:00+00:00</published><updated>2019-04-05T23:00:00+00:00</updated><id>/update/2019/04/05/enable-yourself-to-help-others</id><content type="html" xml:base="/update/2019/04/05/enable-yourself-to-help-others.html"><![CDATA[<p>Many years ago, it was normal for me to allocate over 70/hrs per week for work.  This enabled an acceleration of achievement in the context of shipping products in the game industry which is no small feat.  While this was meaningful especially to my ego, I remembered the inner calling to pursue helping others beyond the context of work - a deeper meaning for my existence.</p>

<p>Since that self reflection, I had the chance to join a music ministry and with the group we were able to “ship” a few benefit concerts that raised money and awareness to causes around social justice.</p>

<p>I then married an amazing person and Amy was able to convince me that we needed to give to charity at least 10% of our income.  This was a tough one since I thought that just being charitable of my time and talent was enough.</p>

<p>Recently we were able to help finish a funding effort for a tiny home to help someone facing homelessness in Seattle.</p>

<p>We read so much of the darkness of our times and yet we wait for others to step up first.</p>

<p>While we wait the suffering continues.</p>

<p>So my family stopped waiting… we now invest heavily beyond just charity and towards a sustainable future which in itself is charity towards our children.</p>

<p><img src="/assets/images/americas_car_museum.jpeg" alt="powering the future" /></p>]]></content><author><name></name></author><category term="update" /><summary type="html"><![CDATA[Many years ago, it was normal for me to allocate over 70/hrs per week for work. This enabled an acceleration of achievement in the context of shipping products in the game industry which is no small feat. While this was meaningful especially to my ego, I remembered the inner calling to pursue helping others beyond the context of work - a deeper meaning for my existence.]]></summary></entry><entry><title type="html">As a husband and as a father</title><link href="/update/2017/06/05/family.html" rel="alternate" type="text/html" title="As a husband and as a father" /><published>2017-06-05T23:00:00+00:00</published><updated>2017-06-05T23:00:00+00:00</updated><id>/update/2017/06/05/family</id><content type="html" xml:base="/update/2017/06/05/family.html"><![CDATA[<p>As a husband and as a father, I have transitioned away from a career focused solely on myself.  Five years or so ago, I reasoned with myself that there’s a need to make our world a better place for the next generation.  I’ve been lucky to find out that my career in video games translates well to the world of envisioning and incubation.  Music Ministry and benefit concerts opened the doors of finding a sense of accomplishment through acts of volunteering.</p>

<p>Most seek happiness, I recommend seeking contentedness.</p>

<p>And from the abundant well, one can start to zoom out and see the bigger picture.</p>

<p><img src="/assets/images/family_at_jolibee.jpeg" alt="family image" /></p>]]></content><author><name></name></author><category term="update" /><summary type="html"><![CDATA[As a husband and as a father, I have transitioned away from a career focused solely on myself. Five years or so ago, I reasoned with myself that there’s a need to make our world a better place for the next generation. I’ve been lucky to find out that my career in video games translates well to the world of envisioning and incubation. Music Ministry and benefit concerts opened the doors of finding a sense of accomplishment through acts of volunteering.]]></summary></entry><entry><title type="html">Approaching family life like a start-up</title><link href="/update/2017/06/04/test.html" rel="alternate" type="text/html" title="Approaching family life like a start-up" /><published>2017-06-04T23:00:00+00:00</published><updated>2017-06-04T23:00:00+00:00</updated><id>/update/2017/06/04/test</id><content type="html" xml:base="/update/2017/06/04/test.html"><![CDATA[<p>When I joined a few start-ups as well as when I took a chance and started my own, I read a ton of books on many topics (business, team development, project management, etc) that were outside of my college education.  I also reached out to people who could give me advice.</p>

<p>I had to do this since I was out of my element.</p>

<p>When I got married and later had kids, I did a similar approach.  My limited knowledge of marriage from what I observed from my parents, friends and pop culture was not enough.  My wife and I read a few books on the topic as well as attended a few marriage retreats.</p>

<p>Now I’m reading a book on how to raise sons.</p>

<p>Family is the primary community that we belong to and we need to strive to continually make it better. The start-up approach of continuous learning is a good approach from my experience.</p>

<p>Kahlil Gibran “On Children” excerpt…</p>

<p>You may give them your love but not your thoughts, <br />
For they have their own thoughts<br />
You may house their bodies but not their souls,<br />
For their souls dwell in the house of tomorrow, <br />
which you cannot visit, not even in your dreams<br />
You may strive to be like them,<br />
but seek not to make them like you<br />
For life goes not backward nor tarries with yesterday</p>]]></content><author><name></name></author><category term="update" /><summary type="html"><![CDATA[When I joined a few start-ups as well as when I took a chance and started my own, I read a ton of books on many topics (business, team development, project management, etc) that were outside of my college education. I also reached out to people who could give me advice.]]></summary></entry><entry><title type="html">The Jailer and The Prisoner</title><link href="/update/2008/03/03/jailer.html" rel="alternate" type="text/html" title="The Jailer and The Prisoner" /><published>2008-03-03T23:00:00+00:00</published><updated>2008-03-03T23:00:00+00:00</updated><id>/update/2008/03/03/jailer</id><content type="html" xml:base="/update/2008/03/03/jailer.html"><![CDATA[<p>Forgiveness is a patient word that begs to be said when sorrow alone decides it can be uttered.</p>

<p>The crimes of your own sorrows cannot be held responsible by the jury of your own emotions. All alone you build the prison walls that one day will gladly be torn down by you and knowing this, you intentionally did not make the fourth wall so you can walk away when you are ready.</p>

<p>But can you, the jailer, really imprisoned? Sadly, your stubbornness is making you not want to face the invisible wall that is your freedom.</p>

<p>The elderly and the wise – they are not the same – can easily laugh at this for they have made such prisons before and they have learned to distinguish between the mask of the jailer and that of the prisoner. Here’s a truth about the wise, they make their prison walls with ladders so they are always reminded of their freedom which ever direction they are facing.</p>

<p>As the prisoner, you wait for the brilliant rescue by your friends. Blessed are our hearts for desiring the need to be needed by friends. You have given them detailed maps to where you are suffering since a daring prison escape is a grand story waiting to be told. Just wait in hope that your friends like to play the game with you and not ruin the gallant rescue attempt by not telling you right away that you are both the prisoner and the jailer.</p>

<p>And if you really wanted to be free, your jailer-self can command this and freedom will again be yours at the very moment when you have forgiven yourself.</p>]]></content><author><name></name></author><category term="update" /><summary type="html"><![CDATA[Forgiveness is a patient word that begs to be said when sorrow alone decides it can be uttered.]]></summary></entry><entry><title type="html">Surrender to your freedom song</title><link href="/update/2007/06/22/surrender.html" rel="alternate" type="text/html" title="Surrender to your freedom song" /><published>2007-06-22T23:00:00+00:00</published><updated>2007-06-22T23:00:00+00:00</updated><id>/update/2007/06/22/surrender</id><content type="html" xml:base="/update/2007/06/22/surrender.html"><![CDATA[<p>Surrender to your freedom song, one<br />
that can only be sung when you let go of<br />
the things that hold you back</p>

<p>Knowingly we choose the chains that<br />
imprison us, for we hide within them<br />
for fear of surrendering to the<br />
uncertainties of freewill</p>

<p>In the infinite possibilites, our simple minds<br />
can only comprehend what we believe<br />
to have been predetermined beforehand…</p>

<p>Uncertain bird, if you were meant to be<br />
a windvane, you would have been born so…</p>]]></content><author><name></name></author><category term="update" /><summary type="html"><![CDATA[Surrender to your freedom song, one that can only be sung when you let go of the things that hold you back]]></summary></entry><entry><title type="html">31</title><link href="/update/2006/11/09/31.html" rel="alternate" type="text/html" title="31" /><published>2006-11-09T23:00:00+00:00</published><updated>2006-11-09T23:00:00+00:00</updated><id>/update/2006/11/09/31</id><content type="html" xml:base="/update/2006/11/09/31.html"><![CDATA[<p>I searched long and hard for elusive happiness when in fact; all along all I needed was personal contentment for what I already have.</p>

<p>Thirty one years of a life uncharted. So many memories treasured while so much more… forgotten. Life is a mix bag of struggles and junction points of tranquility. I encountered struggles in finding my own personal strength as well as the meaning behind some uncontrollable circumstances. I met interesting people in interesting places and found loneliness is a visitor all too often unwanted. But in between breaths that span moments counted in minutes, hours, days or weeks, I ultimately reached moments of contentedness. A simple thing such as Monday afternoon without anything to do but sit still in a café is a reward that is so easily forsaken. Or take for example opening a door that reveals a dear loved one sleeping so peacefully after a long day under the sun.</p>

<p>It is within these moments that we must not allow to be stolen away by the restlessness brought upon by the incoming waves of the unknowable future.</p>

<p>Restlessness causes our thoughts to race before waking up. Too many concerns most oftentimes keep us awake after midnight. It makes dreaming all that much harder for worries have a habit of not singing any lullaby songs that contain words of wisdom.</p>

<p>Why do we worry so much?</p>

<p>Now I write as if it’s going anywhere that will lead to some profound answer. The truth is… I can’t concentrate for I am restless. Writing is my silent conversation with myself. My fingers move and they are caught by the keys of a keyboard indifferent to the pressures of life.</p>

<p>Strength lies in the hearts of those who have friends.</p>

<p>Of all the blessings that I am most grateful, it is the valuable time I have spent with people that shared my ups and downs. Looking back, it’s hard to see how I could have made it without everyone’s challenges, patience and forgiveness. No matter how much we try to avoid it, we are judged by our friends.</p>

<p>I hope my jury find me guilty of a friendship that is worthy of their most precious time.</p>]]></content><author><name></name></author><category term="update" /><summary type="html"><![CDATA[I searched long and hard for elusive happiness when in fact; all along all I needed was personal contentment for what I already have.]]></summary></entry><entry><title type="html">forgotten dreams</title><link href="/update/2004/08/11/forgotten.html" rel="alternate" type="text/html" title="forgotten dreams" /><published>2004-08-11T23:00:00+00:00</published><updated>2004-08-11T23:00:00+00:00</updated><id>/update/2004/08/11/forgotten</id><content type="html" xml:base="/update/2004/08/11/forgotten.html"><![CDATA[<p>people like to spend their time thinking and worrying about dreams that they are hoping for… so people end up never having the time left to appreciate the dreams that have come true…</p>

<p>…what dreams did you have five, ten, fifteen years ago?</p>]]></content><author><name></name></author><category term="update" /><summary type="html"><![CDATA[people like to spend their time thinking and worrying about dreams that they are hoping for… so people end up never having the time left to appreciate the dreams that have come true…]]></summary></entry><entry><title type="html">be original, be yourself</title><link href="/update/2003/05/29/thoughts.html" rel="alternate" type="text/html" title="be original, be yourself" /><published>2003-05-29T23:00:00+00:00</published><updated>2003-05-29T23:00:00+00:00</updated><id>/update/2003/05/29/thoughts</id><content type="html" xml:base="/update/2003/05/29/thoughts.html"><![CDATA[<p>5/15/2003 <br />
u village starbucks, seattle</p>

<p>be original, be yourself! i have heard more than <br />
a couple hundred times that there are no more original <br />
ideas to be dreamed under this sky of ours… but <br />
do you honestly believe that you have lived before? and <br />
in the same circumstance? if you believe to be unique,<br />
then everyday, an original idea is born… take heed <br />
of this and be glad, for a newborn child is the <br />
hope by which we can grasp and understand…</p>

<p>in an effort to be human, we forget to realize that <br />
we are surrounded by other humans as well… let it <br />
be said, that the greatest crime in life is the lack of<br />
awareness of one’s heart, for we are lead to believe<br />
that it is weak, that it is prone to error when<br />
a human being puts one’s heart above one’s better<br />
judgement… but i want to rebel against this inhumane<br />
idea! let it be known, that i will follow my heart to the <br />
glories of heaven and the misery of hell… if only<br />
to taste what is left of my tears of both sorrow<br />
and joy that has visited my human face</p>

<p>what is life but the reason by which we have taken<br />
the first leap of faith, the first choice and some<br />
may call it, the original sin… but why is it a sin<br />
to take a breath? why is it called a sin to yearn<br />
to exist? if not for a brief moment in one’s time<br />
on earth but also through the memories of one’s glory <br />
days and past mistakes! but who will remember the<br />
days when one only takes a shallow wade through the<br />
ocean of life? who will remember the nights when<br />
one has forgotten to appreciate the ground by which<br />
dreams or even nightmares play? aye, let me have<br />
a reason to fear death so that i may appreciate<br />
eternity… let me have a reason to celebrate my<br />
past, so i may bring my lessons with me to the<br />
realm of all things known… let me have hope so i<br />
may wake up from boredom and see the truth right<br />
in front of me… my fellow human being, learn to swim!</p>

<p>my shadow will follow where i will walk… i alone <br />
know my own path for the reasons i have reached <br />
where i am is the result of who i am… i cannot lay <br />
blame on anyone… i try not to use my toungue to <br />
speak ill will of my fellow students of life… how can <br />
i judge when i am also guilty of not knowing everything? <br />
hold on for a moment and learn how to take a breath… <br />
now that you have, that is all yours to take freely, <br />
now, how then can you take away someone else’s right <br />
of the very same breath?</p>

<p>the goal in life is to become one’s own hero… why<br />
does one search for things that can never be reached? <br />
how come the nearest heart and mind be the same ones so<br />
far away? don’t be tempted of admiration of others<br />
unless they inspire you to appreciate what you<br />
have… i have met a few, i have conversed with fewer,<br />
and each one is as unique and special as a moment<br />
ticking away… why waste time being lost when you<br />
know where you stand at all times? be glad that you<br />
have a shadow! be glad that there exists a mirror!<br />
are you now ready to take a step?</p>

<p>how can one ask for eternity, if one doesn’t appreciate<br />
the very short time that they have in this human body?<br />
for i believe that we are here to learn to appreciate<br />
what we have long ago lost to boredom, indifference or<br />
some other personal version of hell… yes, it is hell<br />
when one does not know how to appreciate each moment<br />
passing by… if we must compare, compare the lessons<br />
that you have learned in the past and the lessons that<br />
you are learning right now… don’t be afraid…<br />
we are only human…</p>

<p>have you learned your lesson, good… then learn some<br />
more… if not, continue asking questions, the first<br />
lesson is to learn how to ask politely, the second<br />
lesson is to learn what to ask… you will know the<br />
third lesson when the time comes… alas, learn not<br />
to waste time, that is a lesson that you should have<br />
learned already…</p>

<p>5/16/2003<br />
my home, seattle</p>

<p>now i will speak of love… when i fall in love, it will<br />
hurt, for i know that this woman will make me blind…<br />
for each moment of each day, i see beauty that surrounds <br />
tempting me, but when i fall in love, beauty will lose <br />
all meaning, my dreams will lose all their luster, <br />
heaven and the gods will lose their mastery over me… <br />
so i will ask for forgiveness beforehand, and <br />
you will know when it will happen for you will not  <br />
hear of my footsteps anymore… i will be floating on <br />
clouds so high that i will have no need of walking…</p>

<p>5/17/2003<br />
my home, seattle</p>

<p>you ask me to find balance, yet you tell me to try my best?</p>

<p>5/18/2003<br />
my home, seattle</p>

<p>if you want to understand God, Allah, Buddha, etc.. converse with<br />
a parent, grandparent, or a couple that have just fallen in Love…<br />
if you want to understand Jesus, Muhammed, Abraham, etc… converse with <br />
your favorite teacher or your best friend <br />
if you want to understand indifference, converse with<br />
the sun, the moon, the stars, a diamond, an earthquake or a volcano<br />
if you want to understand yourself, converse with<br />
a child and listen to the conversation between your heart and mind<br />
now you know why it is very important to learn how to converse…</p>

<p>5/18/2003<br />
alki beach, seattle</p>

<p>and stop being confused, heaven and hell are just adjectives</p>

<p>5/18/2003<br />
while driving, seattle</p>

<p>now, i sometimes wonder if Jesus, Muhammed or Buddha ever farted…</p>

<p>5/19/2003<br />
my home, seattle</p>

<p>it might be of interest for all text or songs that mentions<br />
God, Allah, Buddha, Yahweh, Jehovah, Gia etc…<br />
to just bluntly use the word LOVE instead…<br />
why? why not?</p>

<p>i have heard people say that my words are too deep,<br />
but i don’t understand… the words that i have written<br />
barely scratches the ocean of thoughts that i’m drowned in,<br />
in every moment of each day and i only write them like a whale<br />
taking a breather to say hi to the friendly sky…</p>

<p>5/20/2003<br />
my home, seattle</p>

<p>it is of my humble opinion that a major cause of suffering<br />
is indifference… nature is very indifferent… but i don’t<br />
understand why a human heart could ever have the capacity<br />
for indifference… to feel is the very reason that separates<br />
us from the coldness and boredom of an indifferent universe…</p>

<p>i often been asked which came first, the chicken or the egg<br />
i don’t know, i don’t know how to converse with a chicken or an egg…<br />
ask yourself though, which came first, the mother or the child?<br />
before the child existed, the mother is but a woman,<br />
before the mother could exist, she needed her child<br />
also, ask yourself, which came first, the teacher or the student?</p>

<p>i should learn sign language…</p>

<p>5/21/2003<br />
my home, seattle</p>

<p>conversing with a rock is boring…<br />
i guess indifference is boring as well..</p>

<p>some friends have said that my thoughts are dangerous,<br />
but aren’t we all going to die?<br />
so i say, live life or die trying…</p>

<p>5/23/2003</p>

<p>“love thy neighbor as you love yourself”, what a<br />
wonderful rule… what an amazing idea… but i ask…<br />
who is my neighbor and who am i? before i can love<br />
both, don’t i need to know them first?</p>

<p>i’ve been thinking a lot about the afterlife<br />
that one day i just got tired of it,<br />
then i started thinking about life<br />
and enjoyed that train of thought for a while<br />
yet my mind wanted to rest for a moment, so not<br />
wanting to dwell with the profound thoughts of<br />
the afterlife again, my mind wandered into a<br />
thought i never fully explored before and<br />
it’s the thought of the existence of the beforelife<br />
my mind has been always too preoccupied with what’s after<br />
that it never had the chance to taste the ideas of<br />
what was before and as my dreams about the beforelife<br />
became clearer, somethings started to make sense…</p>

<p>what if we had all the rewards promised in the afterlife<br />
before we have chosen to be born in this body?<br />
it may be possible that we all got bored with it and<br />
here in our life, we will learn how to appreciate<br />
what we already had? this idea made me remember<br />
an older thought that visited my mind a while back…</p>

<p>“the grass is only greener on the other side of the fence<br />
unless one waters the grass around them…”</p>

<p>but what of suffering in this world? a question was<br />
asked… suffering is a direct result of only two<br />
things, indifference from nature and indifference<br />
from the human heart… we have little control of<br />
nature but we are all humans born with feelings,<br />
so we might as well figure how to conquer indifference<br />
in our hearts in the limited time that we have…<br />
we wont know until we try…</p>

<p>i wonder if “respect every one, as you respect yourself”<br />
would be a lot easier to understand</p>

<p>5/29/2003</p>

<p>It occured to me today that I spent too much time<br />
thinking about death and sadness… that I never<br />
thought of the fact that I could have never existed!<br />
What a life that would have been…</p>

<p>to not know…<br />
to not reason…<br />
to not feel hurt…<br />
to not feel love..<br />
to not have friends…<br />
to not learn…<br />
to not dance…<br />
to not question…</p>

<p>So if one just contemplated this for one second of<br />
each day, the act of breathing just suddenly feels<br />
like being in heaven…</p>]]></content><author><name></name></author><category term="update" /><summary type="html"><![CDATA[5/15/2003 u village starbucks, seattle]]></summary></entry></feed>