Categories
Dream Journal

Reliving a Long-Ago Math Class

Peering out at the top layer of a canopy of skyscrapers. Observing an expensive-looking top floor patio garden so scary I wouldn’t want to be in, the reflections off other skyscrapers. A top floor passageway between two buildings permits bureaucratic workers to travel expediently between the two — something that strikes me as the result of having a good union.

Reliving an experience of trying to redo my fourth grade math class, not just to pass but to get it right this time. Sitting in the middle of a grid of outdoor desks on a lawn/sidewalk, sun shining on them in afternoon light. Can’t tell if I’m the only child, or quiet in a group of children. Maybe it was early as second grade? Trying to place it temporally; I sign my name “Orin” so I deduce it must be after seventh grade.

In the neighborhood nearby, a big old 70s sedan lumbers across the railroad track intersection. It selfishly blocks a train temporarily and causes the train (of all things) to divert.

Digging all the way to the white plaster at the bottom of a dirty firepit. Moving a sculpture of an old book into the heat, burning off it’s discoloration. Uncovering the name of a song and remembering the story of trauma involving the math class. It is finished, closed. I can wake up without problem.

Categories
Dream Journal

Summer Camp School Reunion

School reunion at a place like a summer camp. I run into my friend Robby T. and gloss into an explanation of everything I’ve done since high school. I look down and realize at some point I put on the white-and-blue shirt with my high school logo, split down the middle like a button-up.


I’m myself but shrunk to the size of a mouse. Maybe I am a mouse. I’m on an artificial high cliffside ledge, maybe steep stadium seating.

I wake up and go back to sleep and dream about having written some notes in my dream journal. I open the app in my dream and there’s a short mathematical formula. I know that I wrote it and it’s meaningful, but I defer trying to figure it out.


In a room killing time. Waiting to occasionally sexually service Dara. She’s leaning on a table with a knit shawl or lace draped over her backside, playing on her phone. Every once in a while she gestures over and I go at it from behind.

Categories
Dream Journal

Alien Math Slip, Party Picnic

Cartoon Ian Malcolm (who’s also an alien incarnation) giving mathematics talk and accidentally reveals that 910 goes into 977, thus setting off an academic stampede to discern their number base.


DMT, Arizona — picnic partying with Mickey and conserving a bag of white powder. Somehow this is also Germany. We cross a small river of juice and I thank him for helping me catch my wireless earbud before it falls in the substance. It’s a fun and celebratory mood. Could be a combination of Mickey and Lauren, come to think.


Earlier: Lynae going down on me. I realize at some point it’s a dream and am impressed I feel it, although I know it isn’t very intense.

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 . '';