

Thats too much effort now that some morons killed the tldr bot


Thats too much effort now that some morons killed the tldr bot


What does the new policy say?


Had a look at the relevent github issue and it seems that it simply back links each individual post to its originating instance so we unfortunatly dont get combined domain ranking for the fediverse as a whole just each post.


Weve put ourselves in a bit of a pickle with seo. Cos either google continues to treat us like spam gaming the system or they dont. If they dont we will effectively be gaming the system. What would be nice is an easy way for engined to identify fedi content and treat it as a single site for ranking purposes. Then again fuck search engines we need something foss.


We arnt much better our censorship is arguably worse since it isnt applied equally.
Huh whats the issue people saying u said something fucked and u couldnt prove otherwise cos it was deleted. Bro who cares what random fuckers on the internet say?
Im sure they are but users cant see it and ive been noticing a lot of deleted content in reddit chains when googling for answers its nice to contribute to the destruction of human knowlege now and then.
Huh i deleted all my content i got some js code to do it somewhere if ya want it.
Bro u gotta go delete all ur old content give them nothing


Nolonger works with current api check out https://www.deadlink.com/dontevenclick#migrate for how to update


Is the fediverse starting to get rolled into the mainstream content farm. Might help our cause and get more people on the bandwagon.
There is a web version i beleive but they have support for basicly all platforms nativly.
If flask is frontwnd then im a full stack developer and definatly not some little code monky server raw html forms written by chatgpt with normatting.
Huge fan of logseq
How do i short this shit


Its black magic that takes docker images so its actually a pretty simple once u got all ya shit dockerified


I reccommend debian headless and docker compose. Set up ssh but i would only open ssh to the internet if your using certificate authenticarion. Chatgpt will be able to help you with most of this except installing docker just copy paste install commands from the docker docs


Most of my things are open to the web but thats kinda nessasary for them to be functional file shairing links, link shortening, mc server etc etc
How are u running it? Bare metal? Docker?
So nginx, traffic, and cloudflare are both reverse proxies that can do SSL termination. Now cloudflare hijacks all SSL connection it proxies (essentially a mitm) and has configuration for if u would like SSL connection from cloudflare to ur own server.
All reverse proxies pass along headers to backend services indicating all sorts of things most importantly the remote client IP, and info about if the service is behind an ssl proxy.
I use client -> cloudflare -> nginx -> my services. The client makes an encrypted pipe between itself and cloudflare, cloudflare then terminates SSL does some scanning on the raw unencrypted packet makes an encrypted connection to nginx and attaches headers about the client. I have a SSL cert on my server where nginx does SSL termination of the cloudflare connection. Nginx then attaches more headers and does routing to passes it back to a backend service ie searxng (the service itself) the docker compose for searxng comes with a packaged traffic reverse proxie its not necessary here and will in fact cause all sorts of problems.
Here is the service in my docker compose for searxng:
Here is the docker compose for my nginx config
I use certbot to issue SSL certs for my domain locally this is the cert that do SSL connection between nginx and cloudflare.
Then nginx can route connection to the searxng instance (ur gonna need a bunch of nginx config and I couldn’t be bothered copy pasting that when an LLM can gen that it can probably gen all this tbh).
Also how u doing auth for searxng? Cos if ur opening it to the internet as a whole u might end up with lots of traffic from randos.