Twitter has to be one of the most dystopian apps ever created. Not just from a UX perspective, but from a cultural perspective as well. Some of the most evil people I’ve ever come across are avid users of Twitter and wield it like a sword to destroy people’s lives. I’m confident it’s been a net negative for society.
Are Twitter, Facebook and Reddit meaningfully different in this regard? I think they have different affinities to different demographics, but the toxic behavior is quite similar among all of them. Is there something about Twitter in particular that makes it particularly toxic, or is it inherent to platforms where people compete for attention in the public square?
Twitter starts to require login to view tweets
631–640 of 643 posts
Re: Twitter starts to require login to view tweets
#632On top of it, it's not just a matter of creating an account because they get blocked within two minutes until you also give them your phone number, despite the registration pretends it's not required (because once you signed up, it's easier to trick people into giving up yet more information than asking for it upfront).
Here is a research how much phone number verification decreases account fraud a.k.a. spam bots http://static.googleusercontent.com/media/research.google.co...
Re: Twitter starts to require login to view tweets
#633Re: Twitter starts to require login to view tweets
#634Earlier quoted context omitted.
With RES I've never seen new reddit, everything always goes to old.reddit.com
Not all browsers support extensions. Even those that do may support only a subset. (Mobile most especially.)
Re: Twitter starts to require login to view tweets
#635Earlier quoted context omitted.
I don't understand the question. IRC is a real-time chat protocol and twitter is a proprietary micro-blogging website. I don't see how the two are related, other than they are both something to do with the Internet.
You do understand the question, you've just decided to respond in a silly way.
If you wouldn't mind reviewing https://news.ycombinator.com/newsguidelines.html and sticking to the rules when posting here, we'd be grateful.
Re: Twitter starts to require login to view tweets
#636Earlier quoted context omitted.
I prefer to just steal keys by reverse engineering mobile apps. So easy to get keys for just about anything and charge someone else for it that way.
But as a developer, I won't put the API key in the client.
Re: Twitter starts to require login to view tweets
#637I posted this yesterday: https://news.ycombinator.com/item?id=28281472 this is an issue (and I fail to see this mentioned here today) in that public sector agencies use Twitter to disseminate emergency information. With a login wall, this information is not getting out to the people who need it the most. I mod /r/Twitter and saw about a week ago a number of threads complaining about a new login-wall. This shit is 100…
Beyond the Login wall, Public Sector Agencies should not be using Twitter as a Primary communication method, it would be Ok to have the messages Copied their from Official Sources, but there should be Official Sources to obtain the same info, at the same time, update in the same frequency.
Re: Twitter starts to require login to view tweets
#638Earlier quoted context omitted.
The real culprits here are these public sector agencies. They shouldn't use inaccessible mediums like Twitter as their primary channel of information.
Yes, and no. They use what's available and what gets them in front of the users. IMO I don't see anything wrong with that. The problem comes if they don't provide any other way to access their information.
https://micronews.debian.org/ https://wiki.debian.org/Teams/Publicity/micronews https://wiki.debian.org/Teams/Publicity/otherSN
Re: Twitter starts to require login to view tweets
#639Earlier quoted context omitted.
Beyond the Login wall, Public Sector Agencies should not be using Twitter as a Primary communication method, it would be Ok to have the messages Copied their from Official Sources, but there should be Official Sources to obtain the same info, at the same time, update in the same frequency.
Seriously, how is Twitter better than an RSS feed for this use?
Re: Twitter starts to require login to view tweets
#640Earlier quoted context omitted.
Interesting. As someone who hasn't done any mobile dev at all, is there a way to prevent something like this from happening? Can't you somehow encrypt such secrets in the app?
You can try, but you won't succeed against a dedicated reverse engineer, simply dropping a hook in on the API calls would be enough to grab the decrypted key in a case like that, if not simply statically reading the encryption keys and decrypting it. That's not to say it's useless - some reversers will simply move on to the next app when there's a list of dozens. You can also send requests via your own server, which…
-a keypair is generated in secure hardware
- you send the public key to a server which encrypts the secret key with it
- the server sends the encrypted key back
- then it goes inside the secure hardware where it gets decrypted
The decrypted secret key is never in the userspace.