Usability

All posts tagged Usability

spiralofhope logo 768x768-white-background

rss2email >

Followup YouTube+RSS-related stuff is in Atheist YouTube channels, now gone

I was intending to do a decent post every day, but I got really burned out. Why? I’ve been struggling with several different programs over the last couple of weeks. I’ve been sick and tired of the clumsiness that my apathy has allowed.

I think everyone has a sort of apathy towards usability issues. We take them as excusable or as some sort of status quo “that’s just the way it is”. I’m sick and fucking tired of that. Seriously.



Continue Reading

OCZ Agility SSD
OCZ Agility SSD

Hardware > Storage >

An SSD is a spectacular speed improvement.

  • 2013-12 – The drive suddenly locked up and no system will detect it. OCZ is out of business too.
  • 2015-10 – I didn’t mention this, but I believe the problem was due to a half-inserted power cable. The hard drive was sortof dangling around, stuffed into a corner of my case because I was too cheap to buy a bracket for it. My bad. =( Also, it appears that Toshiba has bought OCZ.



Continue Reading

pandora-logo-pandastart.jpg

Computers >

http://openpandora.org/

Tiny Linux QWERTY gaming palmtop

  • aka the OpenPandora
  • By default, runs the Angstrom Linux distribution.
  • (will be) Replaced by the Pyra.
  • 2012-05-09 — received
  • ~2010-01-24 – This was replaced by my Zaurus SL-C1000.

    • 2018-01-09 — I’m not sure what this note is.



Continue Reading

spiralofhope logo 768x768-white-background

I strongly appreciate a single-application single-tasking environment, because it forces you into a totally different mindset from the flurry of activity and noise one always has on an everyday “multitasking” computing environment these days.  But since most of my day is spent completely surrounded by multiple applications all vying for my attention, I’ve come to expect to be able to swap my attention around whenever I want.

But there are situations and applications which explicitly deny multitasking.

Seriously.

See also:



Continue Reading

The simple way to reproduce this is:

\mkdir  source
\cp     source  target

It’s a pretty simple request. I want to copy a directory. I want to copy and not create the directory. I don’t want any of the contents (cp -r), I just want the container itself, without using mkdir. I don’t want to diddle around with the contents of the directory (moving them around) and then do cp -r. I want to copy the container because I want to match the permissions. I don’t want to separately use other commands to sync permissions:

\chmod  --reference=source  target
\chown  --reference=source  target

Why can’t cp do this? Oh right, it’s GNU .. so it sucks.