Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Try once, the f'em (Score 1) 619

I have had my personal email address for quite some time (5-digit UID and it's the same email address with which I registered my /. account, so 1998?). About a year ago, I got a reply to an Emily Wright. Luckily, the original email had her correct address (same as mine, but with a digit). Apparently, she goofed on setting up the reply-to in her email client.

Anyway, I forwarded her the email explaining the problem and giving pointers on how to fix the problem. Well, Emily replied and accused me of hacking her email account and flat out insisted that she owned my email address and had been using it for the past two years (or about a decade less than I've had the account).

My attitude went from "helpful technology capable guy" to "fuck you, you arrogant bitch". Now, anything addressed to Emily goes straight to the trash can, no matter how important it appears to be.

Comment Re:Perhaps you don't know what a true roguelike is (Score 1) 201

Why? Because simply finding the AoY deep in a dungeon is good enough? Let's not make it more difficult by requiring you to actually ESCAPE the pits of hell with the amulet. /sarcasm

I played plenty of rogue, nethack, moria, angband and even a little bit of larn back in the day. Nethack was far and away the best of them, balancing fear of insta-death, inside jokes, variability of game-play, etc. However, moria and angband were solid games in their own right. I particularly enjoyed how easy it was to fiddle with angband without actually touching code. All items/monsters/etc. were defined in plain-text config files.

Comment Re:What year is it? (Score 1) 288

If SQL*Injection isn't bad enough, think on this. Writing a single query with bind variables can be parsed once. Then it's just a matter of repeated bind/execute/fetch. Character strings mashed together have to be parsed EVERY SINGLE TIME (assuming you're doing something sane like enforcing exact cursor sharing).

select * from foo where bar = 'ABC'
and
select * from foo where bar = 'DEF'

have different hash values.

select * from foo where bar = :1

has its own hash value and can be reused for all values of :1.

Disclaimer: The above post represents the behavior of Oracle DB. I assume most SQL RDBMS engine work in a similar fashion.

Slashdot Top Deals

UNIX is hot. It's more than hot. It's steaming. It's quicksilver lightning with a laserbeam kicker. -- Michael Jay Tucker

Working...