Categories
Dream Journal

Coruscating Code

I’m working with a text editor, learning complicated commands. Thrilled that now I can make my AI model analyze stuff for me from different perspectives — *Brute Force!* The text is a big, complicated block that I’ve generated over iterations, parts of which contain mathematical characters. Sometimes, it seems to waver or throb with the energy inside it, coruscating. I started from a different file, a small base that was just a single character. I feel like I’ll need to hide this method from others because of some ethical aspects they wouldn’t approve of. What those are is unspecified.

Categories
Dream Journal

New Society of Yet-Learned Secrets

I ride on an open railcar through inhabited forest land. It’s like a terraced Santa Cruz mountains full of houses. Once I arrive, I sense that I’ve “woken up” in an unfamiliar post-scarcity society with very different social rules. I must take my time to learn their ways. There’s artifacts from when I was alive previously (hundreds of years ago perhaps) which I get to explain. One is a jade stone green surface with matching sticker, partially torn off and covered in illegible handwriting. I offer to finally clean it off since I’ve explained that it was quite mundane, and it’s treated as a joke. This is their ancient history, after all.

There’s something hidden though — not quite sinister, but a secret aspect I’ve yet to uncover. My pet rat Porkpie (of all people) finds a ways to get away, escaping on a raft across a dark sea/lake. Little guy is cleverer than I expected.

I’m seated at a communal table with my friend Phoenix and her toddler Moxie. Above the table is an angled bar of color-coded lights which resembles the floating plastic lanes of a swimming pool. The linear code represents people at the table I think; Phoenix is white, Moxie green because she’s a baby, several others. Someone jokes to our waiter that they should put up searchlights.

At that suggestion I partially jolt into different consciousness, my view is a spreading fan pattern of messengers being released from a fortress under siege. Through the hostile rocky desert scramble hundreds of little Chinese figures in traditional costume (with conical hats) looking like a golden age Disney cartoon. One by one they’re shot in various ways as the roaming searchlight of the enemy finds them — all but one figure that, by brute luck, escapes the exposed killzone and delves into bafflingly rocky terrain. They must then follow a circuitous route to stay out of sight to reach a second fortress… the searchlights must never discover it as the destination.

Before the saving rendezvous takes place, I’m startled awake but my wife (gently, I’m told) telling me it might be time to wake up, Orin.

Categories
Dream Journal

Jam Band Like an Accident

Red baby rats lined up to be picked out, males and females unseparated. Some turn in to guinea pigs, oddly. Those not picked will actually grow up to be deer, and future breeding stock. I pick them out in front of a girl with short hair, who reminds me of Allie (a rival of my wife who I recently accidentally matched on OkCupid).

I use the word “Dlv’je’DOY” in some kind of encoding, in French. I consider typing it out phonetically so only native speakers will get it as no automatic translation could hope to parse this double-encoding.

An improvised jam band challenge. Several instrumentalists sitting around playing what would appear to be incidentally placed instruments. Playing an OMFO mix. A double-reed single-spiral conical horn, ancient Arabic-looking instrument — a guy plays the first bar of his solo, quickly whips out a clanging metal belt and uses lubricant on the aluminum. Meanwhile the more traditional single-reed guy next to him covers this interruption. He excalims, inexplicably but with great gusto, “Bulpas!”

Categories
Blog

33 years, 7 months

I wonked around writing my own code for this-here site I call ori.nz — something to display my exact age relative to the date of my birth in years, months, and days. Logicking though the process can be quite satisfactory, but so can just having the answer you want easily presented. So here’s what I came up with:

$birthdatetime = array(1983,12,13,19,30);
$year_diff = get_the_date("Y") - $birthdatetime[0];
$month_diff = get_the_date("n") - $birthdatetime[1];
$day_diff  = get_the_date("d") - $birthdatetime[2];
if( $day_diff < 0 ){
        $month_diff--; $day_diff += date("t", (get_the_date('u') - (get_the_date("n") * 86401)));
    } // CALC FROM month b4
    if( $month_diff < 0 ){
        $year_diff--; $month_diff += 12;
    }
    $age_then =
        $year_diff .' years' .
        ($month_diff == 0 ? '' : ', '. $month_diff .' months') .
        ($day_diff == 0 ? '' : ', '. $day_diff .' days');
    echo '' . $age_then . '';