Click on 'Sign Up.'
Click the 'X' to close.
Read away.
I discovered that last week.
Using a browser in incognito mode usually works too.
Click on 'Sign Up.'
Click the 'X' to close.
Read away.
I discovered that last week.
Using a browser in incognito mode usually works too.
Well, guess I'm going to continue never using twitter.
Hugs you and sniffs your hair
Exactly. Twitter is hostile. No FakeBook, Twitter, Instagram, LinkedIn, ... basically (((big social))).
Silicon valley
Only for some tweets, most are still readable, even those with "sensitive content".
You can read it by using nitter. Change the URL to ...nitter.net [whatever] and the whole site works without being logged in/having an account
Type in a URL for an account you know exists.
Twitter.com/espn
You'll get that accounts page and the search functionality.
For a while I had a twitter account that was just to follow other accounts but I axed it because who wants to read constant leftist NWO shit.
and you need to give phone number to register
Lasts a few seconds sometimes
Yep so no more twatter for me.
Use a private window or Nitter.
I use this TamperMonkey script to redirect to Nitter automatically.
// ==UserScript==
// Twitter to Nitter
// http://tampermonkey.net/
// 0.1
// Redirect Twitter links to Nitter in order to avoid the splash screen while scrolling.
// You
// *://*.twitter.com/*
// *://twitter.com/*
// GM.xmlHttpRequest
// reddit.com
// GM_addStyle
// data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// ==/UserScript==
(function() {
'use strict';
var reg = new RegExp('(.*)://((.*).)?twitter.com/(.*)');
if (reg.test(document.URL))
{
var newURL = 'https://nitter.net'+window.location.pathname;
window.location.href = newURL;
}
})();
(post is archived)