The Ignorance Hazard
Mark linked to this article on Quiet Babylonian, which filled me with dismay. The short version is that this blog post became the #1 search result for “Facebook login”, and as a result hundreds and hundreds of Facebook users showed up and left comments to the effect of, “i hate this new facebook page how do i log in?” The questions repeated over and over. Hundreds of people obviously just type “facebook login” and take whatever result the search engine gives them. The level of ignorance and misunderstanding was so staggering that for a couple of minutes I actually thought the whole thing was some sort of 4chan prank.
But it wasn’t a prank, and it demonstrates just how many people are out there surfing the web who have no idea what they’re doing. They’re not stupid. These are most likely people who manage to buy groceries every week without going broke or starving, and they drive to work every morning without killing anyone on the way. They’re just not interested in technical things, and they’re not compelled to investigate technology for its own sake. Their computer is just another appliance to them.
I think there are a lot of factors contributing to this…
1. Indifferent attitude towards computer knowledge.
Some people simply aren’t interested in learning to use a computer well. They want to learn just enough to get to their Facebook and check their email, and beyond that they just don’t care.
In the 90’s I worked to bring some friends and family into the computing world. At first they were afraid of computers and it required a lot of encouragement to get them to use and experiment with the machine. Don’t be afraid of the computer! It doesn’t bite. You can’t hurt anything. This was mostly true. There were dangers on the net back then, but they were generally in places that new users wouldn’t find. You could get into trouble if you were looking for game cracks or P2P programs, but you had to go into those back alleys of the internet to find trouble. Now trouble is lurking right outside the front door and the danger is pervasive.
Phishing schemes began with emails like, “hi im you’re bank and forgot your password please varify you’re account or it will be locked out.” Now phishing emails can generally pass the laugh test, and spotting a fake takes a little technical knowledge.
“They should learn to use the net. You wouldn’t let someone drive a car without them learning to drive first, would you?”
True, but this mindset needs to be imparted. You need to explain to the hapless surfer why the computer is more like a car (dangerous to use without proper training) and not like a TV. It certainly looks more like a TV, and its purpose (entertainment device) is more like a TV.
2. User is usually unaware of knowledge deficiency.
Many people think of viruses and malware as “something that happens”. To them it’s like getting a cold. As far as they know, it happens from time to time and it can’t be avoided. They don’t know what they don’t know.
3. Lack of demonstration.
Most of us spend over a decade observing people drive before we get behind the wheel ourselves. We see the driver follow road signs, use turn signals, and put gas in the car. When it comes time to learn, we have some sort of framework to hang it on. When you’re driving, you can see other people on the road and evaluate your own performance by comparison. If a time traveler arrived here from 1850 and you taught them to drive, they may well do something that would seem obviously boneheaded to us. If they drive the car until it runs out of gas it’s not because they’re stupid, it’s because they had gaps in their knowledge and didn’t know it.
We don’t have this sort of learning with computers. Most of us don’t watch another person intently when they’re using a computer. It would be boring and would usually be considered rude. If we’re using the computer or the internet poorly, we have no way of knowing we’re doing it wrong.
4. Changing internet landscape.
I learned to drive in 1990. In the last two decades, I haven’t really needed to learn anything new. Once in a while a slight change comes along. I think sometime in the mid-90’s I used cruise control for the first time.
But the net is ever-changing. New technologies, new interface conventions, and new threats. You have to keep learning just to keep from falling behind. You don’t need to learn a lot once you have the basics down, but many people won’t bother to learn at all if they don’t see a need.
5. The newbie influx.
The Endless September is still going on. Grandparents are hopping on the net for the first time. On the other end, parents are dropping their teens in front of the computer and trusting them to figure things out on their own.
The real problem is that their shortcomings are having some really powerful repercussions. Ignorant users having their credit cards or their personal information stolen is one thing. It’s tragic, but at least the damage is localized to the person who made the mistakes. But when their infected boxes start spewing spam and denial of service attacks and gobbling up network traffic, it causes problems for everyone. We talked about this a couple of weeks ago. These compromised machines are acting as nodes on various criminal botnets. It’s all very sci-fi sounding to me.
It is fiendishly difficult to envision a solution that doesn’t require people to stop behaving like human beings in order to work.
Spoiler Warning 10: Welcome to Feros
We’ve given composer Kevin McLeod credit in the video for the groovy credits music, but I don’t think I’ve ever given him a proper link… UNTIL NOW!
I think I’m starting to get beige fatigue. Really. How many brown tunnels can a team of artists make before they all decide to commit ritual mass suicide? We must be nearing that threshold by now. Throw some colored lighting in there. Some greenery. Maybe give the colonists non-brown clothes? Maybe they paint their cargo container houses? The monotony really struck me when I re-watched this episode prior to posting. I guess the pervasive brown makes sense here in a world of ruins. But after Noveria it just feels like too much. Since Noveria was a modern inhabited place, they should have added some color, particularly to the bunker-like hotel and lounge area. It makes the races of the galaxy feel sort of culturally dead.
So, I guess I’m complaining about the brown, even though this is the one place in the game where it actually makes sense. I’m unreasonable like that sometimes.
Stolen Pixels #175: Ubisoft!
Levels of failure:
5) I laugh at you.
4) Everyone laughs at you.
3) I make a joke about you.
2) I make a series of jokes about you.
1) You transcend joke made about your failure and become a joke yourself.
My Version of Tetris
In 1990 I was given my first IBM PC as a graduation gift. The machine came with a copy of Borland Turbo C, which was a programming environment. I didn’t know the C programming language at the time. Before then, I’d been using Basic. I realized that Basic wasn’t going to cut it in the professional world, and it was time for me to learn a grownup programming language.
The machine came with the Borland reference books. You could use these to look up individual functions and remember their syntax. And that’s all. They contained no real instruction on the structure and behavior of the language itself. Learning C with these books was like trying to learn English using only an English dictionary, or learning to drive using only the owner’s manual for your car.
This was also pre-internet (for me) so I couldn’t look up anything online. I didn’t even know any C programmers. I’d graduated and it was summer, so I no longer had any teachers to ask. Looking back, I suppose a trip to the library might have been worth a try, although that didn’t occur to me and I’m not sure if they would have kept any relevant books on hand.
So my only way forward was to sit in my bedroom and try to puzzle out the language based on my own guesses and whatever truths could be gleaned from the three-line code snippets scattered throughout the book.
So I wound up with some gaps in my knowledge. Specifically, I didn’t know you could make your own functions. This is a hilarious thing to not know. A C program might look like this:
void DoAwesomeThing ()
{
be awesome here;
}
void DoNeatThing ()
{
do some stuff;
DoAwesomeThing ();
}
void main ()
{
do some stuff;
DoNeatThing ()
do some more stuff;
DoNeatThing ()
do still more stuff;
DoNeatThing ()
}
But if you don’t use functions – if you can’t (or don’t know how to) make DoAwesomeThing or DoNeatThing – then the program will turn into this:
void main ()
{
do some stuff;
{
do some stuff;
{
be awesome here;
}
}
do some more stuff;
{
do some stuff;
{
be awesome here;
}
}
do still more stuff;
{
do some stuff;
{
be awesome here;
}
}
}
If you find a bug in awesome thing, then you need to fix it in three different places. Copy & paste errors will propagate and the code gradually becomes an unreadable mess. Doing things this way basically defeats the most important features of the language. (I did things this way because I was trying to map my knowledge to C to my knowledge of Basic.)
Most programmers will look at the above code and get all twitchy. It’s just so perfectly wrong.
Never one to settle for small, reasonable goals, I decided that the best project after Hello World was a full-featured graphical version of Tetris.
I wrote Tetris without a single function call. The entirety of the program was contained within main (). Start screen, the game loop, user input, line removal, scoring, increasing levels of difficulty, game over, high score list. Everything. All in main (). I cannot stress how convoluted this was. The code indenting was so deep that if you scrolled halfway down the (terrifyingly long) page, you would see nothing but blank space. The line indents were all the way off the right side of the screen. You had to scroll a full page width horizontally in order to see the code.
I finally got my hands on real C code and learned how things are supposed to work. I wrote and re-wrote Tetris a few times over the next few years. I had a friend who would put the new versions up on a BBS for me. When you exited the game, it printed out my real, actual home address and invited you to send a postcard. (I got three. Furthest away was from Japan. I was so excited. I communicated with someone in Japan! I’m sure I do that every single day now.)
The program and the source vanished ages ago in one of my early computer migrations. Shame. I would pay good money to see the no-function version of the Tetris source again, if only to gape at the horrifying awfulness of the thing.
On a whim, I Googled around to see if it had made the jump from BBS to internet. It did:
![]() |
That’s a 16 color graphics mode. I made it look like it had more colors by using dithering. (I was SO proud of figuring that out. Wrote a whole bunch of code to do smooth dithered fades. Spent ages on it, experimenting and looking for ways to make the blend as natural as possible. But the whole system was obsolete before I wrote the first line of code. 256 color mode was all the rage and 16 bit color mode was on the horizon.)
The program was more future proof than many. It still runs on my computer and is still playable. The only thing that breaks is that there was no CPU throttle on the PC speaker based sound effects, so the sounds are reduced to almost completely inaudible millisecond long blips. (Sounds work right under Dosbox, though.)
You can get it here.
Controls:
Arrow keys. And you use the < and > keys for rotate left and right. For some reason.
And the source is gone. If it doesn’t work for you, then there is nothing to be done. Good luck.
Lord of the Demolitions Online
This is not a photoshop.
![]() |
I have issued a list of demands to the developers at Turbine. They must give my character exclusive access to a new “I fart in your general direction” emote, deliver me 100 bottles of black dye, rename Bree to Lulzytown, and let me use Gandalf as a ride-able mount. If they fail to meet these demands by midnight tonight, I will destroy the shire auction house.
Continue reading 〉〉 “Lord of the Demolitions Online”
OK Go – This Too Shall Pass
As soon as I saw this on Monday, I knew it was going to be the Saturday morning video for this week.
Link (YouTube) |
(For context: These are the same guys who did the treadmills video that was such a huge sensation a couple of years back.)
I’ve mentioned before that I hate DIAS videogames where you have to overcome a series of obstacles and any failure whatsoever means you have to do the entire thing again. And again. I don’t feel excitement when I’m playing. I feel a mounting sense of stress. I don’t feel exhilaration when I win. Just a grudging sense of relief.
I actually get that same panicky feeling when watching this video. Look at how complex and destructive this mess is. And how many places it could go wrong. This would take ages to reset. They made things even harder on themselves by integrating the timing of the song into the sequence, so that the gap in the song needs to line up with the glass-of-water “chimes”. Any alteration in speed before that point would ruin the take, even if the chain reaction wasn’t broken. And then you have the camera work: I still can’t figure out how the camera operator did his job. Look at how often he has to step over rails and tracks and possible debris. In some places – like the transition from the second floor to the ground floor – it’s not at all clear how a human being is doing this unless it’s someone who can fly. Or at least hover. So while this entire contraption is playing out, it’s pitted against whatever convolutions they’re going through to move the camera around smoothly.
They leave so much to chance. At the 3:15 mark, it would be easy for one of those little yellow balls to be in the way of the basketball, which would foil the entire take. And this is just seconds from the end! I would want to make sure the chancy stuff was at the beginning. I wouldn’t want anything doubtful going on in the later bits. Particularly after those destructive later steps.
As the video plays, I can’t help trying to calculate the odds of failure and multiplying that with the odds of failure from all previous steps and trying to deduce how long they spent in this Rube Goldberg purgatory. According to this article, it was 60 takes. The entire project took months.
How many TV’s were smashed? Did they patch the same piano up for every take, or did they have to get a new piano at some point? How long would a reset take if it failed near the end?
Much love to OK Go for bringing us so much entertainment.
Self-Balancing Gameplay
There's a wonderful way to balance difficulty in RPGs, and designers try to prevent it. For some reason.
Project Button Masher
I teach myself music composition by imitating the style of various videogame soundtracks. How did it turn out? Listen for yourself.
The Best of 2013
My picks for what was important, awesome, or worth talking about in 2013.
What is Piracy?
It seems like a simple question, but it turns out everyone has a different idea of right and wrong in the digital world.
Charging More for a Worse Product
No, game prices don't "need" to go up. That's not how supply and demand works. Instead, the publishers need to be smarter about where they spend their money.
The Middle Ages
Would you have survived in the middle ages?
Batman v. Superman Wasn't All Bad
It's not a good movie, but it was made with good intentions and if you look closely you can find a few interesting ideas.
Artless in Alderaan
People were so worried about the boring gameplay of The Old Republic they overlooked just how boring and amateur the art is.
Punishing The Internet for Sharing
Why make millions on your video game when you could be making HUNDREDS on frivolous copyright claims?
Rage 2
The game was a dud, and I'm convinced a big part of that is due to the way the game leaned into its story. Its terrible, cringe-inducing story.
T w e n t y S i d e d

