Showing posts with label nature of time. Show all posts
Showing posts with label nature of time. Show all posts

Monday, November 10, 2014

Light(er) posting

I'm moving. There will be even fewer shitty posts than normal around here for a while. I know you're all terribly upset.

I guess I'll be nice awful and make sure you all know about the Cards Against Humanity's Holiday Bullshit for this year (hurry, less than 200,000 left, they'll go quick).

To tide you over until I post again, here is a mesmerizing picture of the McKenzie river I took a couple months ago:

(click to embigginate)

That is all, we now return you to your regularly scheduled blogoscape. See you on the flipside, if I survive.

Wednesday, April 10, 2013

RIP Blinky

A sad, sad day. The much-maligned <blink> tag is being removed from the last browser that supported it, Firefox.

Thankfully, we can easily come up with an even more annoying alternative, our own special programmatic "blink" that has adjustable speed and alternating blinkage.

First, apply a "class" attribute to whatever you want to blink:

<div class='blink'><p>PUT ANNOYING BLINKY STUFF HERE</p></div>

You can use tags other than <div> -- <span> is a good choice too. Note that more than one item can have the same "class" so you can do that multiple times. In fact you should, because that way they'll alternate states and be extra annoying.

Now, add just a tiny bit of code:

<script type="text/javascript">
var delay=100; // change to adjust speed

function annoy() {
  var annoyances = document.getElementsByClassName('blink');
  var positive=1;
  for (var i=annoyances.length - 1; i>=0; i--) {
    var b = annoyances[i];
    if (positive === 1) {
      b.style.visibility = (b.style.visibility === 'visible') ? 'hidden' : 'visible';
      positive = 0;
    } else {
      b.style.visibility = (b.style.visibility === 'hidden') ? 'visible' : 'hidden';
      positive = 1;
    }
   }
   window.setTimeout(annoy, delay);
}

annoy();
</script>

Presto:

Oh yeah, that's the stuff. The blink is dead, long live the blink!

UPDATE: I fixxorated it so it'll work (hopefully) with a new-ish version of Internet Exploder too. Woudln't want bbkf and Mooser to miss out.

Monday, April 8, 2013

Filler

Urgh, Monday. Blargh.

Here, have three-plus hours of Frank Zappa to brighten up your day:

Wednesday, December 5, 2012

Woeful Wednesday

With the holiday season in full swing and the weather exceptionally shitty, my typical seasonal sadness starts to kick in. The ebb and flow of friends/acquaintances moving through a college town can effect that too.  This song is the perfect complement to that feeling, but wasn't on the ute-oob. Since blooger doesn't seem to want to let me upload just audio, I put together a quick video with some sunset photos I took in summer.  Sorry about the "Ken Burns" effect -- I know it's the standard cop-out of quick videos.  You'll live.


Friday, November 2, 2012

Sunrise over the bus stop

Not all that bad of a way to start Friday.

Next week when I'm waiting for the bus at the same "time" it will somehow really be an hour "later" and I'll miss this view. I wish we had DST either all the time, or never. Make up your mind, time! Stop being all wishy-washy and undecided. Sheesh.

UPDATE: Related.