Is product quality degrading on the internet over time? It used to be that once a week or longer I would find some amusing bug. But now it's not uncommon for that I encounter dozens of bugs daily on various popular services that are worth $millions or $billions, which is just obnoxious. Not only that, but usually the services have no way of filing a bug report or getting in touch with support. It seems like internet…
You encounter dozens of bugs daily? That doesn’t really pass the smell test.
"@" on Twitter
61–70 of 143 posts
Re: "@" on Twitter
#62Reminds me on the old Commodore 64 Quantum-Link service (former version of AOL), there was a hack called 'Q-Armor' where you could get a username of all spaces, and no sysops or any chat room managers could kick you, or do anything to your account.
people griefing in online games (hacks/aimbots) often run with nicks like ||||||||||II||I|||||||||||||II1111|||||||IIIIIIIIII||||||||||||
Re: "@" on Twitter
#63Slightly related but very interesting: the 2010 Twitter bug where simply tweeting "Accept [username]" would automatically force them to follow you. My understanding is that for the sake of simpler interfaces such as SMS, which they let hold the whole service back for a long long time, they had a "follow [username]" feature - and if the person had to approve follow requests, it would send one to them. To accept the re…
A similarly lulzy but much more sinister-looking bug happened at Facebook, where an index into an array of users was mistakenly treated as a user id, so the message intended for user 4 in the array ended up going to the user with ID 4, aka zuck.
but then, I've had my share of turrible bugs too, so i'm not here to poke fun.
Re: "@" on Twitter
#64Perhaps we should go back to Usenet and IRC?
Re: "@" on Twitter
#65Re: "@" on Twitter
#66That must be Bobby Droptables twitter account :-)
Re: "@" on Twitter
#67Earlier quoted context omitted.
That sounds like a pretty PHP-specific bug. Downvoters: most programming languages don’t silently convert strings (i.e., usernames) to array indices. Even Python doesn’t do this. While this particular bug probably wouldn’t be possible in most other languages, I’m only commenting because it’s rare and amusing to see bugs that are so language specific. I’m not making a generic “lol PHP” joke.
I've been bitten by this bug before, PHP's associative arrays are pretty strange compared to other languages.
Re: "@" on Twitter
#68Reminds me on the old Commodore 64 Quantum-Link service (former version of AOL), there was a hack called 'Q-Armor' where you could get a username of all spaces, and no sysops or any chat room managers could kick you, or do anything to your account.
This only worked if 'obar' or 'oobar' was unregistered, but it was a pretty nifty way to steal single word usernames, and speaks to some strange validation/truncation somewhere in the code.
Re: "@" on Twitter
#69There's another one, https://twitter.com/@home. It redirects back to Twitter's home page.
I discovered this while looking for "@home", which is a homeware store.
Re: "@" on Twitter
#70Earlier quoted context omitted.
That sounds like a pretty PHP-specific bug. Downvoters: most programming languages don’t silently convert strings (i.e., usernames) to array indices. Even Python doesn’t do this. While this particular bug probably wouldn’t be possible in most other languages, I’m only commenting because it’s rare and amusing to see bugs that are so language specific. I’m not making a generic “lol PHP” joke.
Python doesn’t do any implicit coercion (apart from ints and floats etc), right?
>>> True + 1
2