What’s with this anti-directory structure movement?

Posted by Thomas Sat, 28 Jul 2012 00:08:47 +0000

What’s with this anti-directory structure movement?

His fundamentally flawed premise is that people can remember where they put things. They can’t.

People do fundamentally understand the concept of folders, but they:

  1. don’t know which folder something is in, and
  2. (assuming they can remember which folder it’s in) have a hard time navigating to that folder (how do I get to the “My Photos” directory from whichever directory I’m currently in)

For him, he can easily create, manipulate, and navigate a tailor-made structure of folders. Most users cannot, and I’d argue the average user just puts stuff on their Desktop (which I’d guess isn’t too far off from what Apple is offering).

He brings up a good point, though, which is that just as most people don’t like naming directories, they don’t like naming files either.

But I don’t buy his premise that people can’t be bothered to remember “parts of its content”. If you can’t remember some part of what you’re looking for, how can you ever hope to find it? Do you open every file in the directory until you find the one you’re looking for?

If so, then this is a fundamental problem going forward. If people aren’t inclined to search in general (or can’t remember to) and can’t remember distinguishing features to look for, then I have no idea how they will ever find anything.

What do people remember about what they’re looking for in this case if they can’t remember part of its content? Colors? Fonts? Dates?

Posted in Technology | Comments Off

Ed Sheeran – The A Team

Posted by Thomas Tue, 26 Jun 2012 10:24:40 +0000

#songinmyheadwheniwokeupthismorning

Posted in General | Comments Off

Weekend digest

Posted by Thomas Sun, 20 May 2012 22:48:46 +0000

Someone at work used to (and still might), post a digest of sorts of her weekend. This is mine:

This weekend I was oncall, rode 15 miles on my bike, pulled weeds in my backyard, tested out a Seagate 3TB drive, procured a hoe and rake from Home Depot, vacuumed, swept and swiffered my kitchen floor, went to Church, read more in Atlas Shrugged, and ate some barbecue.

Posted in General | 2 Comments

Netflix queue hacking

Posted by Thomas Sun, 20 May 2012 20:00:58 +0000

If ever you want to filter your queue by some min/max rating, and possibly look only for a specific genre. YMMV. Class names subject to change. Void where prohibited.

function getstbrMaskFgSpan(element) {
  var spans = element.getElementsByTagName("span");
  for (var span, k = 0; span = spans[k]; k++) {
    if (span.className.match(/stbrMaskFg/)) {
      return span;
    }
  }
  return null;
}

var minRating = 3.7;
var maxRating = 5.0;
var tables = document.getElementsByTagName('table');
for (var table, i = 0; table = tables[i]; i++) {
  if (table.className != "qtbl") {
    continue;
  }

  var rows = table.getElementsByTagName('tr');
  for (var row, j = 0; row = rows[j]; j++) {
    // filter out tv shows
    if (row.innerHTML.match(/series_only/)) {
      row.style.display = "none";
      continue;
    }

    // possibly filter for just action movies
    if (!row.innerHTML.match(/Action/)) {
      row.style.display = "none";
      continue;
    }

    var span = getstbrMaskFgSpan(row);
    if (span != undefined) {
      var rating = span.className.replace(/.*sbmf-([0-9]+).*/g, "$1");
      rating = parseFloat(rating) / 10.;
      if (minRating < rating && rating <= maxRating) {
        row.style.display = "";
      } else {
        row.style.display = "none";
      }
    }
  }
}

Posted in Technology | Comments Off

Still got it

Posted by Thomas Sun, 22 Apr 2012 17:19:53 +0000

It’s a good feeling knowing that I can still bend ldap, kerberos, and radius to my will. :P Squid gave me some trouble; since it logs to a strange place, it took me longer than it should to find a configuration problem. By and large the important pieces are working again, and all running shiny new 3.2 kernels (the first time I’ve used a 3+ kernel). I’ll consider this my late contribution to the world backup day, since really I should have moved off of the hard drive in my domU ages ago (since it always seems to return errors whenever I try to backup xen images). I really should go ahead and update my domU to a new fanless box that doesn’t take 10 minutes to boot up. I’ve been eying some mini-itx fanless boxes, which would allow me to migrate the important things over to new hardware before the old hardware fails… But all in all if I only have to spend one weekend every 2+ years doing (non-filer) admin work on the network, I think I have to consider that super win.

I should have been taking better notes, but here are some things I took away from the weekend:

  • squid3: Setting “error_directory /usr/share/squid-langpack/en” since it was looking in /usr/share/squid3/errors/templates/ for a reason I still haven’t figure out
  • installing testing debian: requires stupid ethernet firmware. REally?1? I understand the whole free software thing, but this was a little too pure. Reminds me of having to put ethernet drivers/modules on floppy during an install. Made me think, “man, I really shouldn’t have to do this”. Ditto for the netboot initrd not having the hard disk controller drivers I needed forcing me to connect up a cdrom. I gave up on getting serial working, as it’s never worked out as well as I’d liked and always seems to bite me when I need to debug (e.g. no vga console output when I need it most).
  • dist-upgrade: I’d like to think I could have upgraded the domU all the way from like 4.0 or whatever it was to current testing, but I just didn’t have the heart. I figured it’d take me less time to just install from scratch than to fight with xen, udev, libc, grub, grub2, device naming, etc, etc. I used to think that you always could dist-upgrade a box and it would usually work out ok. Now I’m not so sure, since it seems like there have been a huge amount of changes, which make automagic dist-upgrading very painful.
  • backups: I really should do a better job. Maybe one day it’ll bite me hard enough I’ll do better — that or it’ll teach me that the data wasn’t that important in the first place. :)
  • ldap: There still seems like the current version of ldap has ssl/tls issues since it’s compiled against gnutls (http://bugs.debian.org/645810). I’m too lazy to fight with this one at this point, so I just disabled tls on both the client and serve side. I’d like to have tls working, but it’s not the end of the world. I did have to fight with the upgrade process to get it to complete. Though I think the data should be cleaner now, since there was some cruft in there that I was able to remove. It did take quite a bit of finagling, tho…
  • xen: Installing the latest version of xen directly from a fresh install seemed pretty painless (though I don’t recall it being super painful before, either). After a while I figured out the steps required to upgrade the dom0′s, so eventually it went smoothly (but did take some time to upgrade many++ packages to be able to install the correct kernel).
  • kerberos: Since I had to restore my auth xen image from backups, the kerberos database was the only thing that I realized halfway into all of this had data that I really needed from the current copy (current passwords, machine credentials). A chroot + kerberos dump/restore fixed it up nicely. Dodged a bullet on that one.
  • freeradius: I finally got this working this morning. I thought it was fixed last night, but this morning my phone wasn’t connected to wifi. After a while I realized that the config was borked. Since my config was pretty old, it looks like there might be more standard ways to configure ldap, but after some time trying what appeared to be their way, I just reverted back to my old configs which did work with the current version of freeradius. I wish it was a little less hacky (dummy certs and not the “recommended” way to setup ldap), but hey whatever works. :)
  • homogeneity: While flipping back and forth between vms, I realized that several common configs (ldap, apt.conf, sources.list) varied some. I think my plan was to get them all synced via puppet, but since that never got off the ground I really should sync them up now…
  • ipv6: It continues to work out of the box, but I realized that sometimes I was doing apt-get downloads through my ipv6 tunnel, which means that it’s traversing the US — which explains why sometimes the downloads were slower than expected. One of these days I’ll migrate to a closer endpoint. :)
  • linux 3.2: I was a little apprehensive that everything (joe random userland tool) would work with a 3.2 kernel. Haven’t yet found anything broken by it.

My actual notes for upgrading dom0 vms:

# update console to listen on hvc0 instead of tty0 (before
# starting the vm)
mount /path/to/image /mnt/loop0
vim /mnt/loop0/etc/inittab

# start the vm
xm create -c image.cfg

# add hvc0 to the list of allowable local consoles
# (so root can login locally);
# h/t to http://docs.quantact.com/xen-fs-changes
# (even though I didn’t wind up updating fstab or mknod’ing anything)
echo “hvc0″ >> /etc/securetty

# update sources.list to use testing
vim /etc/apt/sources.list

# sync to testing
apt-get update

# these seem broken w/ the new kernel, so upgrade them first so
# they don’t break other apt installs
apt-get install findutils debconf

# ditto my older version of cpio caused trouble during the
# kernel install
apt-get install cpio

# install the kernel so when things depmod it won’t spew a warning
apt-get install linux-image-3.2.0-2-686-pae

Posted in Technology | Comments Off

528 days

Posted by Thomas Sat, 21 Apr 2012 14:46:15 +0000

[root@xen0 ~]# uptime
17:42:35 up 528 days, 14:29, 1 user, load average: 0.08, 0.11, 0.05

I’m probably going to regret this later this afternoon, but I think I’ve sort of painted myself into a corner and will need to upgrade my Xen setup. This wasn’t quite what I was planning on messing with today…

Posted in Technology | Comments Off

Squeeze

Posted by Thomas Sat, 21 Apr 2012 10:23:30 +0000

It’s been quite a while since I spent an evening fighting to get Debian installed on a new machine. But my Realtek RTL2832 DVB-T arrived yesterday. So I wanted to try it out, which required a specific kernel + modules, etc, etc. So I pulled out an old machine and installed it. I didn’t quite get the tuner working by the end of the night, but I did get it recognized properly by the kernel. Since I didn’t really want to play with it too much anyway, I’ll probably call that good enough and pack it away to play with at some later date.

In other news, I did receive the tablet. It doesn’t seem to have bluetooth and wouldn’t allow me to install some things like Maps, Youtube, and Chrome from Market directly. But then I remembered I could side load them, so I was able to install them. It seems a bit sluggish sometimes, like during rendering or touch. Sometimes I have to toggle the screen off and on again for it to recognize touches. So I guess there are some subtle bugs around. But for the price I paid, I guess I can’t complain too much. So all in all, not too bad of a purchase.

Posted in Technology | Comments Off

But it’s a dry heat

Posted by Thomas Fri, 13 Apr 2012 16:57:12 +0000

I guess it slipped my mind that it gets hot in Texas. :)

Posted in Tweets | Comments Off

Software Radio

Posted by Thomas Mon, 09 Apr 2012 10:48:51 +0000

Since it became known that some software radio hardware was on the market pretty cheap, I figured I’d pick one up. It’s on a slow boat from China, so I expect it in a month. :) Not sure if I’ll do anything with it, but it’ll be nice to have around, just in case.

Posted in Technology | Tags , , , , | Comments Off

gap

Posted by Thomas Mon, 02 Apr 2012 21:21:52 +0000

/me just noticed the 15 month gap in posting…

Posted in Tweets | Comments Off