[a / b / c / d / e / f / g / gif / h / hr / k / m / o / p / s / t / u / v / vg / vm / vmg / vr / vrpg / vst / w / wg] [i / ic] [r9k / s4s / vip] [cm / hm / lgbt / y] [3 / aco / adv / an / bant / biz / cgl / ck / co / diy / fa / fit / gd / hc / his / int / jp / lit / mlp / mu / n / news / out / po / pol / pw / qst / sci / soc / sp / tg / toy / trv / tv / vp / vt / wsg / wsr / x / xs] [Settings] [Search] [Mobile] [Home]
Board
Settings Mobile Home
/g/ - Technology


Thread archived.
You cannot reply anymore.


[Advertise on 4chan]


File: HLbAsHjWEAAVoEj.jpg (452 KB, 2160x2700)
452 KB JPG
https://goyimx.com
uBOL redirect rule:
[
{
"condition": {
"urlFilter": "||x.com^",
"resourceTypes": [
"main_frame"
]
},
"action": {
"type": "redirect",
"redirect": {
"transform": {
"host": "goyimx.com"
}
}
},
"id": 1
}
]
>>
>>109672638
Where tf do I paste this
>>
is it true that regular ubo doesn't have this functionality?
>>
>>109672650
enable developer mode (in the extension, not chrome), go to the develop tab, go to custom dNR rules in the dropdown, import and append
>>109672656
uBO and other AdGuard syntax-compatible blockers have no user-exposed way to do host redirection other than inserting custom scriptlets and custom scriptlets are not very useable on Firefox since uBO isn't allowed to load them from local files. Switch to uBOL or install a dedicated redirect extension or userscript.
>>
>Maximum 10 users allowed in multi-user search

damn it
>>
>>109672799
I hate to be a stackoverflow mod but why the hell do you need more than that? If you're just following accounts you'd probably be better served by any of several Twitter RSS proxies.
>>
>>109672638
There are more: https://codeberg.org/mv12star/shitter/wiki/Instances
>>
>>109673241
This user started archiving repositories this morning. Maybe these will last through the weekend by now but not much longer.
>>
>>109673413
nah, since its an open source project, there will be always instances, and the ones who host and doesn’t care about cease and desist crap
>>
>>109672880
>Twitter RSS proxies
such as ?
>>
File: 2026-08-29_01-20-01.png (18 KB, 411x100)
18 KB PNG
Oh no, it works
>>
>>109674517
Showing Musk's cringeworthy tweets is the fastest way to get someone to swear off the platform, all other actually entertaining posters be damned.
>>
is media rss endpoint protected there or am i tripping
regular one works doe
>>
>>109672638
can you change the domain name to not something anti semitic?
>>
File: file.png (212 KB, 638x1099)
212 KB PNG
WHAT THE FUCK IS THIS ATROCIOUS FONT?
>>
>>109675930
That's not what it's supposed to look like, fix your system font rendering settings. Every fucking time someone does this shit it's always Linux.
>>
>>109672638
This technically isn't Nitter, it's teapot, a Rust rewrite of Nitter. Based on the comments containing unicode characters I am taking the liberty of assuming it's vibeslopped. Don't be surprised if it shits the bed more often than real Nitter instances. https://github.com/amaanq/teapot/blob/master/src/api/schema.rs
>>
File: jeetlon_cucks.png (258 KB, 720x722)
258 KB PNG
>>109672638

Doesn't work for me right now, it keeps saying internal error. But I appreciate the effort OP. FUCK JEETLON KEKS, NEVER SUBMIT!
>>
>>109676143
Probably some kind of bug related to it being a SPA app rather than a problem with getting at Twitter API data because F5ing always fixes it but then the next click breaks it and have to F5 again.
>>
File: 1760615877992393.jpg (110 KB, 640x843)
110 KB JPG
>>109672638
>>109672674
Do you have a userscript version? Or can I just paste it into a new script? I use uBO (not L) and I'm too lazy to reconfigure the Redirector yet again after Elon nuked Nitter as well as Twitterwebviewer right after.
>>
nitter.kareem.one works too
>>
>>109676082
Why even share low effort slop?
>>
>>109678107
Fake. His dead always gave him enough money that he could have afforded to live on a diet of little boy cum.
>>
>>109678107
I don't really know how the headers of userscripts work but the actual code would just be location.hostname = "goyimx.com"
>>109678364
I was simply making a point that this is what goyimx runs on not Nitter as OP claimed. He shared it.
>>
>>109680412
I put it through ChatGPT and it spit out the following, it seems to work on a first try, but I haven't browsed in detail:

// ==UserScript==
// @name Redirect X.com
// @namespace https://example.com/
// @version 1.0
// @description Redirect x.com to goyimx.com
// @match *://x.com/*
// @match *://www.x.com/*
// @run-at document-start
// @grant none
// ==/UserScript==

(function () {
'use strict';

const url = new URL(window.location.href);

// Preserve path, query parameters, and hash while changing the host.
url.hostname = 'goyimx.com';

window.location.replace(url.href);
})();
>>
https://nitter.cf and https://xitter.cf
>>
>>109681148
Thanks, added to the list:
https://nitter.kareem.one
https://nt.vern.cc
https://shitter.thepixora.com
https://nitter.miningtcup.me
https://x.n0g.xyz
https://tw.eir-nya.gay
https://goyimx.com
https://nitter.cf
https://xitter.cf
>>
If you're on firefox you can use libredirect and have redirections for multiple sites.
>>109681335
A few of these work with libredirect but who knows how long they'll last. I might look into hosting nitter myself and finding a csv of bot accounts to use.
>>
>>109681398
https://codeberg.org/mv12star/shitter/wiki/Creating-session-tokens
https://codeberg.org/mv12star/shitter/wiki/Evading-DMCA-reports-%E2%80%94-Templates-and-Gluetun
>>
>>109681572
Damn. The fun is only starting.
>>
>>109681572
I wonder if I can automate buying bot accounts when my nitter instance detects the current rotation is blocked or deleted. $.08 per account won't break the bank but I don't want to buy 1000 and have them all banned at once. I also don't want to waste hours a week rotating accounts just to see what some idiot politician said that might start ww3.
>>
>>109680926
>match non-canonical hostname
>copy URL to variable to modify to copy back to URL
lmao gotta love LLMs
>>
>>109681732
Seems fine and idiomatic.
>>
>>109681732
What would be a better way of doing it?
>>
>>109681812
location is writeable. You can literally just match *://x.com* and then do location.hostname = "goyimx.com" There's also no reason to use an IIFE inside a userscript, the userscript manager needs to do that for you to execute it anyway. Also this is a smaller nit but it does not actually matter what the run-at of this script is since location is async w.r.t. the DOM loading but match forces a synchronous read so it can never fail.
>>
>>109681860
Thanks. I did notice it was a bit convoluted, but I'm not a coder so I wasn't sure what to change.
>>
https://catsarch.com/
https://about.opnxng.com/
>>
>>109682386
catsarch doesn't work btw
>>
File: 1738239083224.png (997 KB, 1534x1382)
997 KB PNG
>>109681335
>>109682386
Based
>>
>>109672638
>"urlFilter": "||x.com^",
couldn't this just be a requestDomains instead?



[Advertise on 4chan]

Delete Post: [File Only] Style:
[Disable Mobile View / Use Desktop Site]

[Enable Mobile View / Use Mobile Site]

All trademarks and copyrights on this page are owned by their respective parties. Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.