UnlimitedRumination

joined 1 year ago
[–] [email protected] 9 points 1 year ago

Yeah they really buried some critical information on this one. I get the point of the article about general surveillance but when people feel tricked they get burned out on the issue and trust the media less. They could have made the point they wanted without making it clickbait.

[–] [email protected] 8 points 1 year ago (1 children)

I wanted to get into FPGAs when I was making some custom boards with MCUs but I really had a hard time finding a good idea for a starter project with them. How did you get started? Any recommendations?

[–] [email protected] 2 points 1 year ago

I'm with the other guy, I'm not reading that again, but I remember it was on the verge if that helps.

[–] [email protected] 3 points 1 year ago* (last edited 1 year ago) (1 children)

How did you identify the problem and get ComEd to look into it? My UPS is switching inconsistently, sometimes a couple times a day, and I've seen some signs that makes me think it's not just that UPS/outlet/breaker. I wasn't at the point where I was going to do anything yet but since you're talking about the same provider I have I figured I'd ask. I have a multimeter, oscilloscope and smart plugs that watch voltage/amperage/power.

[–] [email protected] 3 points 1 year ago

Agreed, the data will not be scrubbed, just marked as reclaimable.

[–] [email protected] 9 points 1 year ago* (last edited 1 year ago) (2 children)

sudo

As root

find /srv/lemmy/example.com/volumes/pictrs/files

Find files in /srv/lemmy... that:

-type f

Are plain files (not directories, symlinks, etc; includes images)

-ctime -1

And were created within an amount of time (probably last day, haven't used this flag in a while)

-exec rm {} \\;

For each matching file found execute rm on it (delete it).