There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

kbin.life

CAPSLOCKFTW , to nostupidquestions in How do you deal with endless cookies dialogues?

noScript with blocking all Scripts by default. Most sites rely on javascript to ask you the cookie question. Of course that will disable all other javascript functionality which i have to enable manually if I need it.

danhab99 ,
@danhab99@programming.dev avatar

Most sites rely on JavaScript for everything

CAPSLOCKFTW ,

Yes but I prefer blocking everything unless whitelisted. It is not convenient, i’m used to it though. And since most sites rely on third party sites for consent management I can use the sites java script functions if I want to by whitelisting. Note that I operate that way because of security and privacy concerns and as an act of protest and not to go around consent pop up that’s just a nice side effect.

Jamie ,
@Jamie@jamie.moe avatar

I pair it with AdNauseum and have my browser “click” on every ad it sees. I don’t know if those are being filtered on the other end or not, but I like to think that I’m making the advertisers pay for clicks they aren’t really getting and messing with their metrics.

CaptObvious ,

If there were a way to be sure that this is not tied to my identity, I’d be all over wasting their money as much as possible.

Jamie ,
@Jamie@jamie.moe avatar

You’d be surprised how many sites are still functional enough without JS. Even then, you can often keep a lot of the tracking sites blocked and only whitelist the essentials.

danhab99 ,
@danhab99@programming.dev avatar

Honestly my opinion comes from my professional experience as a web developer. I only use react and every website I’ve ever created requires JavaScript.

Kilamaos ,

This. While react is entirely js, plenty enough have js somewhere for something. Manually whitelisting stuff is a widely unnecessary burden.

Blamemeta ,

Yeah, pretty much ever web framework in the past 2 decades is JS or TS.

netvor OP ,
@netvor@lemmy.world avatar

“I only use React” therefore “Most sites rely on JavaScript”?

So you wrote more than half of the Internet? Impressive…

Geth ,

I’ve tried the no JavaScript experience for a couple of months, but honestly it breaks to much of the internet for it to be a solution for most people. For me personally it was a worse experience than just having it fully enabled.

dragnet , to linux in Why did no one mention this to me?

Yeah, I like having a few isos on Ventoy for live booting from random PCs for troubleshooting. Very convenient being able to have multiple architectures, DEs, versions of distros to boot from on one drive.

sramder , to nostupidquestions in How do you deal with endless cookies dialogues?
@sramder@lemmy.world avatar

Consent-o-matic seems to work about 80% of the time. I run the Firefox plugin at home and the Safari extension on my phone.

scarabic ,

Does it deny-o-matic?

sramder ,
@sramder@lemmy.world avatar

I think the desktop version lets you configure more fine grained preferences, but yes it’s designed to deny by default.

Wowiejr , to nostupidquestions in How do you deal with endless cookies dialogues?

I don’t have a helpful answer, I’m just commenting so I can find out if anyone else does…

Atemu ,
@Atemu@lemmy.ml avatar

That’s not how this works. Save the post if you want to return to it later. You will not be notified of new answers in this thread if you comment.

arviceblot , to linux_gaming in Mod support for linux

Have you tried running cyberpunk and vortex through bottles? I’ve had some success with it where some games just fail with lutris.

Mori , to android in What android client do you use?

wefwef until boost is released

batwingnz ,

Check out Voyager - wefwef is retired I think

shashi154263 ,

It’s the same app. Both works.

batwingnz ,

You’re right, they didn’t retire Wefwef.app, I see it now points to what they’re calling Voyager - but if someone is looking for the current name the developers are using it is Voyager

Lifebandit666 ,

Wefwef (now Voyager) until Sync is released. Honestly Voyager is pretty damn good already.

Blizzard , to asklemmy in Best options for Non-Google cloud storage as of 2022?

I’m using free account on Mega. Had it for years, have my photos automagically back up there, still haven’t used all of the free storage. If that happens, I’ll probably subscribe there since it’s tested, familiar and safe. But there’s also Proton Drive. Will compare both when I need it.

43dc92z0 ,

Try filen

Tangent5280 , to fediverse in The migration of large communities from Reddit to Lemmy is like a world-renowned band performing an acoustic set in a library for 50 people.

Small communities and slow content feeds are fine for me I think. Either way I’m glad I’m here to witness this liminal period.

favrion OP ,
@favrion@lemmy.world avatar

👍

ShortFuse , to android in Discussion: What Android devices are you using?

Pixel 7 because its slim OS and good camera. Would love a stylus though. I’ve made peace with the lack of headphone jack.

Originally had Samsung since Galaxy S, then left at Note 4 because the bloat was bad. Then Sony Xperia X5 Premium, but the camera was bad. Now Pixel since Pixel 2XL.

For watches, had LG Watch R, then LG Style, Galaxy Watch 4, but ditched Android Wear for a Amazfit Bip S that lasts for days which allows me to track sleeping.

MadCybertist , to gaming in In which game did you spend the most hours?

10,000 hours in DAoC. The best MMO PvP to date. Objectively.

Resolved3874 , to android in What android client do you use?

Currently using liftoff and its been great and done everything I want it to do but will be jumping ship the second Sync for lemmy comes out. !syncforlemmy

Side not, holy shit when you put an “!” the start typing a sub while on desktop it starts to autopopulate then you can pick what you want and it just puts in the formatting. Idk if that is instance specific or something lemmy itself just does but it’s awesome.

btobolaski , to selfhosted in Lemmy, Traefik, & Docker

This is my ingressroute for lemmy:

<pre style="background-color:#ffffff;">
<span style="color:#323232;">
</span><span style="color:#323232;">apiVersion: traefik.containo.us/v1alpha1
</span><span style="color:#323232;">kind: IngressRoute
</span><span style="color:#323232;">metadata:
</span><span style="color:#323232;">  name: lemmy
</span><span style="color:#323232;">spec:
</span><span style="color:#323232;">  entryPoints:
</span><span style="color:#323232;">    - web
</span><span style="color:#323232;">  routes:
</span><span style="color:#323232;">    - kind: Rule
</span><span style="color:#323232;">      match: Host(`threads.ruin.io`) && PathPrefix(`/api/`)
</span><span style="color:#323232;">      services:
</span><span style="color:#323232;">        - kind: Service
</span><span style="color:#323232;">          name: lemmy
</span><span style="color:#323232;">          passHostHeader: true
</span><span style="color:#323232;">          port: 80
</span><span style="color:#323232;">    - kind: Rule
</span><span style="color:#323232;">      match: Host(`threads.ruin.io`) && PathPrefix(`/pictrs/`)
</span><span style="color:#323232;">      services:
</span><span style="color:#323232;">        - kind: Service
</span><span style="color:#323232;">          name: lemmy
</span><span style="color:#323232;">          passHostHeader: true
</span><span style="color:#323232;">          port: 80
</span><span style="color:#323232;">    - kind: Rule
</span><span style="color:#323232;">      match: Host(`threads.ruin.io`) && PathPrefix(`/feeds/`)
</span><span style="color:#323232;">      services:
</span><span style="color:#323232;">        - kind: Service
</span><span style="color:#323232;">          name: lemmy
</span><span style="color:#323232;">          passHostHeader: true
</span><span style="color:#323232;">          port: 80
</span><span style="color:#323232;">    - kind: Rule
</span><span style="color:#323232;">      match: Host(`threads.ruin.io`) && PathPrefix(`/nodeinfo/`)
</span><span style="color:#323232;">      services:
</span><span style="color:#323232;">        - kind: Service
</span><span style="color:#323232;">          name: lemmy
</span><span style="color:#323232;">          passHostHeader: true
</span><span style="color:#323232;">          port: 80
</span><span style="color:#323232;">    - kind: Rule
</span><span style="color:#323232;">      match: Host(`threads.ruin.io`) && PathPrefix(`/.well-known/`)
</span><span style="color:#323232;">      services:
</span><span style="color:#323232;">        - kind: Service
</span><span style="color:#323232;">          name: lemmy
</span><span style="color:#323232;">          passHostHeader: true
</span><span style="color:#323232;">          port: 80
</span><span style="color:#323232;">    - kind: Rule
</span><span style="color:#323232;">      match: Host(`threads.ruin.io`) && Method(`POST`, `PUT`, `DELETE`, `PATCH`, `CONNECT`)
</span><span style="color:#323232;">      services:
</span><span style="color:#323232;">        - kind: Service
</span><span style="color:#323232;">          name: lemmy
</span><span style="color:#323232;">          passHostHeader: true
</span><span style="color:#323232;">          port: 80
</span><span style="color:#323232;">    - kind: Rule
</span><span style="color:#323232;">      match: Host(`threads.ruin.io`) && HeadersRegexp(`Accept`, `application/(?:activity|ld)+json`)
</span><span style="color:#323232;">      services:
</span><span style="color:#323232;">        - kind: Service
</span><span style="color:#323232;">          name: lemmy
</span><span style="color:#323232;">          passHostHeader: true
</span><span style="color:#323232;">          port: 80
</span><span style="color:#323232;">    - kind: Rule
</span><span style="color:#323232;">      match: Host(`threads.ruin.io`)
</span><span style="color:#323232;">      services:
</span><span style="color:#323232;">        - kind: Service
</span><span style="color:#323232;">          name: lemmy-ui
</span><span style="color:#323232;">          passHostHeader: true
</span><span style="color:#323232;">          port: 80
</span>

It seems to work correctly. Given that you’re not using kubernetes, you’ll need to do some translation work.

domi ,
@domi@lemmy.secnd.me avatar

Can you federate with kbin instances? The communities get stuck at subscribe pending for me.

That’s the only thing not working and I assume I’m missing a proxy rule.

btobolaski ,

It does appear to work for me.

BlackEco ,
@BlackEco@lemmy.blackeco.com avatar

I had the same issue, upgrading to 0.18.1 and using the revised nginx.conf from lemmy-ansible fixed the issue.

TwystedKynd , to nostupidquestions in If intelligent life is found in the universe will it change religion(s)?

Nah, it’ll just be another, “Gawd werks in mysterious wayz!”

TheInsane42 , (edited ) to linux in What Are Your Favorite SBCs (Single Board Computers), Why, and How Did You Get Into Them?
@TheInsane42@lemmy.ml avatar

I started with an RPi 1b to read out my weatherstation (WH1080 clone) and post it online with weewx. Then a Bananapi R1 entered to replace my intel system as firewall/core router (savings on power usage, a lot). The RP 1 got replaced by a RPi 2, and tne 1 moved to the smartmeeter for readout. The main server (huge AMD tower) got replaced by a RPi 3 (again, power savings), Bpi R2 replaced the R1 when bananian development stopped. RPi 3 died on me (sd slot failed) and I got a replacement. As the 1st RPi3 was dead anyway, I tried to repair it (only use of the solderings at the side proved to be to keep the slot in place) and used it to replace the Bpi R2 as support got problematic.

The main server got upgraded to a RPi 4 8GB, with the RPi3 replacing the RPi2 that was handeling my weatherstation. I got an rflink, so I added domoticz and that now powers my kaku (dutch power switching system) in a mixed old/new setup. The RPi3 that was my main router (internet router via fiber) got replaced hh an RPi4 witn 4 GB mem, as the 2 GB mem version wasn’t available. (Not a bad move, with the on-board non-usb 1GB interface and a tad over 2 GB mem use)

The freed RPi3 is now for the smartmeter, so all RPi are 64 bit. (All running aarm64 Debian) Both Bpi’s and RPi 1 and 2 are collecting dust, as I haven’t found a use for them… yet. Looking for projects to use them. As media server they’re to light. (Although, Bpi R2 could be useful for that)

seperis OP ,
@seperis@lemmy.ml avatar

Oh, this is a nice collection!! If you want to experiment, either RPi will support Open Thread Board Router if you’re into that, or a NAS; I ran one off Pi 4 with OpenMediaVault and it did not even dent its resources.

I am now wondering if I should start looking into my own firewalls.

TheRealBob , to fediverse in Is anyone else seeing swear words censored in comments?
@TheRealBob@lemmy.world avatar

Easiest way to find out: shit fuck bitch asshole

Can you read those or are they censored?

anon_water ,
@anon_water@lemmy.ml avatar

The one after fuck is removed.

trachemys ,

They don’t want you to talk about female dogs.

anon_water ,
@anon_water@lemmy.ml avatar

Huh 🤔

Fantomas ,

A female dog is called a bitch. That’s where the profanity comes from, you say that someone is like a female dog and lemmy.ml get real upset.

anon_water ,
@anon_water@lemmy.ml avatar

Meh 😑

Nuuskis9 ,

Wtf? I’m using Jerboa on Android and can’t see anything removed.

anon_water ,
@anon_water@lemmy.ml avatar

You’re not registered with lemmy.ml on your account. It’s not the client.

Nuuskis9 ,

I understand now so thanks for telling me!

FaceDeer ,
@FaceDeer@kbin.social avatar

What an odd choice for which word to censor.

DaedalistKraken ,

It’s the one in the list that’s derogatory towards a specific group (women, in this case)

dktr ,

I can see them all. On lemmy.world and Thunder on iOS.

ulu_mulu ,
@ulu_mulu@lemmy.world avatar

I see 4, none appear as removed.

trachemys ,

Who told you my password?

TheRealBob ,
@TheRealBob@lemmy.world avatar

No one. I’m the famous hacker 4chan.

thisisbutaname ,

Wdym? All I see is hunter2

nothacking ,

I can from discuss.tchncs.de, lemmy.world, but from lemmy.ml bitch is censored.

lorez ,

Shit, piss, fuck, cunt, cocksucker, motherfucker, and tits.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • lifeLocal
  • goranko
  • All magazines