Live data from Hacker News

"@" on Twitter

twitter.com

131–140 of 143 posts

Re: "@" on Twitter

#131
post #31

Earlier quoted context omitted.

You encounter dozens of bugs daily? That doesn’t really pass the smell test.

Across multiple services 5hat seems right. So much stuff has broken or buggy UI it's not funny.

Consider that the bare minimum for dozens is 24...

Re: "@" on Twitter

#132
post #24

Earlier quoted context omitted.

Mobile Twitter is maybe the single most useless website I’ve ever had to use lol. Clicking on a link to a tweet has 1/20 chance of ever actually loading the tweet. All other occurrences are evenly split between loading nothing except the top bar and calling it a day, and throwing an error message. Reloading the directly or using the reload button they provide will usually result in the rate limiting message. I don’t…

I turned off Javascript and it worked fantastically.

I feel like every week I get another reason to turn JS off.

Really says a lot doesn’t it.

Re: "@" on Twitter

#133
post #41

Earlier quoted context omitted.

And to show you that 280 characters they need to download about 6 kbyte css, 4 kbyte javascript, 17 kbyte Google analytics, 26 kbyte jquery, 1.5 kbyte favicon, and some images... Total about 100 kbytes.

It's almost as if "they literally just have to show you 280 characters" is a bit of an oversimplification.

I think the point they were making was that they do all this extraneous stuff as well: if I’m looking at a single tweet, why on earth does it need to serve that much JS up? Why on earth is it not a simple HTML page with the information on it?

Re: "@" on Twitter

#134
post #106

Earlier quoted context omitted.

Especially since it forces you to basically map out your entire site before letting users register accounts. Or you rename users squatting your routes later on, which seems like a terrible idea.

Or, you take advantage of lists like this[0] and make sure users can’t pick names that would be “problematic”. [0] https://zimbatm.github.io/hostnames-and-usernames-to-reserve...

Ah thanks, I was looking for that earlier and couldn't find it :)

Re: "@" on Twitter

#135
post #24

Earlier quoted context omitted.

I turned off Javascript and it worked fantastically.

I feel like every week I get another reason to turn JS off. Really says a lot doesn’t it.

The downside is the (disquietingly common frequency of) sites which return a jumbled mess of incoherent elements or a blank page(!) when Javascript is disabled.

Re: "@" on Twitter

#136

Earlier quoted context omitted.

“Next time you make a seemingly obvious mistake, don't feel too bad. Even Twitter did it.” There most infamous “mistake”, at least as I see it, was neglecting to backup their database data. That was just unforgivable.

I bet they had a backup, it was just never tested... pretty common mistake

Nope, no backups were even created when Dorsey was in charge: “Oh, and while he was in charge, there was no backup of Twitter’s database.”

From the Fortune article “Let's remember why Jack Dorsey was fired as Twitter's CEO”

http://fortune.com/2015/09/30/jack-dorsey-twitter-ceo-fired/

Re: "@" on Twitter

#137

Earlier quoted context omitted.

http://php.net/manual/en/language.types.array.php First sentence, “An array in PHP is actually an ordered map.”

I just read at least half that page and this idiotic design confirms exactly why I feel PHP should be considered harmful

Funny, that was one of the features I really liked about PHP back in the day.

Re: "@" on Twitter

#138
post #118
post #116

Earlier quoted context omitted.

It was due to the way they exported the data. They used a SQL statement, and if you weren’t in a guild then the SQL would produce NULL. That output was then used to generate PDF badges, and it tried to do some filtering for NULL guilds. The person writing that script clearly did not anticipate there actually being a guild named NULL.

NULL or ‘NULL’? There’s a clear and obvious difference there.

Unless you're using ColdFusion https://stackoverflow.com/questions/4456438/how-to-pass-null...

Re: "@" on Twitter

#139

Earlier quoted context omitted.

Across multiple services 5hat seems right. So much stuff has broken or buggy UI it's not funny.

Consider that the bare minimum for dozens is 24...

There are _a lot_ of ui bugs. I easily hit 24 an hour with some products.

I probably hit at least 24 bugs a day on my phone. Apps crashing. Back not working right. Apps popping up and disappearing. Unexpected latency causing wrong things to be clicked on. They're all just papercuts, but there are so many of them.

Re: "@" on Twitter

#140
post #48

Earlier 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?

In Python 2, bytes can be coerced to unicode:

  >>> b'egg' + u'spam'
  u'eggspam'
Unlike the example with bool+int, this can't be justified by LSP.
Post reply on HN