[-] [email protected] 5 points 1 day ago

Babylon Berlin (DE) is amazing. They really nailed the tail end of the roaring ‘20s, and the subsequent market crash and rise of fascism. Great homage to old school film noir.

Gomorrah (IT) centres around a cocaine smuggling crime family. Lots of interpersonal politics within the family and between other syndicates. I think it was season 3 (could have been season 2) that dragged a little bit but the rest had me hooked.

[-] [email protected] 1 points 4 days ago

Have you tried unscrewing the mobo from the case and reseating it? Doesn’t happen so often nowadays, but if it’s too tight (or you’ve forgotten to use standoffs) there can be short that stops it from booting.

[-] [email protected] 47 points 6 days ago

Cabinet heads are hiring back employees who were dismissed during the mass purge

Hopefully they get to keep any redundancy payouts AND come back on higher wages. After all, if they’re being hired back then it shows their role was critical.

18
submitted 2 weeks ago by [email protected] to c/[email protected]
[-] [email protected] 80 points 3 weeks ago

Just need to misidentify a suspected bomber and we’re on the home stretch to mainstream popularity.

89
Raccoon caught with crack pipe (www.telegraph.co.uk)
submitted 1 month ago by [email protected] to c/[email protected]
[-] [email protected] 222 points 1 month ago

Seems like it would have been cheaper, easier, and better pr to just simplify settings or have them in more logical categories, but what would I know.

[-] [email protected] 74 points 1 month ago

Playing Beat Saber to Korn tracks is the best damn cardio exercise on the planet.

10
submitted 1 month ago by [email protected] to c/[email protected]
8
submitted 2 months ago by [email protected] to c/[email protected]

Very simply, how long before bed do vape or smoke up?

I’d been successfully treating my insomnia with flower for 2 years but recently when I’ve used it I either haven’t been able to get to sleep or stay asleep for more than a few hours. Normally I’d vape an hour or 45 mins before bed and that would knock me out. Now I find that my mind starts racing around the hour mark.

Mainly wondering how many people use it and then hop straight into bed.

I’ve tried swapping strains, tolerance breaks of a few weeks, and even zopiclone isn’t all that effective right now on the nights I don’t vape.

[-] [email protected] 99 points 2 months ago

My wife had to explain to me that pickles were pickled cucumbers and there wasn’t a pickle tree.

I was 30 something years old.

3
submitted 2 months ago* (last edited 2 months ago) by [email protected] to c/[email protected]

I'm running Fedora 41 KDE and had what appeared to be an issue with the system not loading to desktop from the GUI login screen. I am getting a black screen with just the cursor and nothing else. I can get a terminal window going on TTY3-6 to reboot and doing so would load into the desktop pretty much instantly.

Turns out that there's actually a process causing total boot time from power on to exceed 6 minutes. Boot log is viewable here https://paste.centos.org/view/raw/8846c1ec

Using systemd-analyze blame I can see that smartd.service is causing 3 minutes of that boot time. From a quick search it seems like it might be doing a full SMART test of my 3 SSDs on the first boot of the day.

Does anyone know how to disable this at boot? There doesn't appear to be a conf file in /etc/ and smartmontools isn't installed.

edit with solution

Thanks @[email protected] and @[email protected] for correctly pointing out that fedora was struggling to mount a drive.

I checked fstab and there was no entry for the drive. mtab showed that it was mounted even though the drive wasn’t listed. I tried to find a way to have the drive ignored at boot but the only results that came up involved setting udev rules and those results were more than a decade old.

In the end I found the drive listed in /dev/. Using

rm nvmeXnXpX

I deleted the two partition entries and it now boots perfectly AND the drive is now listed correctly in the desktop and accessible.

9
submitted 2 months ago by [email protected] to c/[email protected]

But it also created public sector boards (or “joint ventures”) where chief executives from various agencies meet and discuss issues and provide advice to a single Government minister.

If it sounds a bit wishy-washy that’s because it clearly is. Its stated goal was to tackle major underlying problems facing the country. How’s that working out for us?

I get that this is a right wing columnist and he’s paid to be anti, but come on. Companies always decry silos and that’s exactly what this was set up to overcome when dealing with “wicked” problems, of which NZ has many.

5
DriveThruRPG GM Day sale (www.drivethrurpg.com)
submitted 3 months ago* (last edited 3 months ago) by [email protected] to c/[email protected]

Lots of decent tables, GME tools and rulesets on sale today. Finally picked up Mythic 2nd ed and a few sci-fi oracles.

87
submitted 4 months ago by [email protected] to c/[email protected]

All prices in NZD. Highest priced air cooled card, the Asus ROG Astral, is $6299 and the Asus ROG AIO is $6599.

Even after stripping out the 15% sales tax the lowest priced card is still USD 2655.

45
submitted 4 months ago by [email protected] to c/[email protected]

I was going to wait for a 5080 super anyway, or ideally a 5080 ti, but my 3080 might have to do its duty for another 2 years. This is pretty pathetic.

5
submitted 4 months ago* (last edited 4 months ago) by [email protected] to c/[email protected]

I found an old (more than a year) post where someone had issues with filtered keywords being reset. At the time it didn’t seem reproducible.

On iPhone, running iOS 18.2.1, it consistently clears the filtered list if I quit the app from the app switcher. Community and user blocks are unaffected.

I’m unsure if this is a new issue or not as I haven’t used a keyword filter until now.

19
submitted 5 months ago by [email protected] to c/[email protected]

I'm trying to host a vaultwarden instance through docker and failing miserably. This isn't my first attempt either but I've got much further than before.

I'm using a DuckDNS domain with caddy as reverse proxy, but it appears that the domain is defaulting to port 80 no matter how I set up the config. I can't specify a port number in DuckDNS as far as I can tell. If the simple solution is to just buy a domain name I will consider it. Otherwise could really use some help in sorting out why it's not connecting.

I can't access Vaultwarden on the internal IP as it's not being served as SSL but both Vaultwarden and Caddy are running with no errors in logs. I've left out a bunch of admin env variables for the Vaultwarden service to truncate the code.

docker-compose:

`[___](services:

vaultwarden:

container_name: vaultwarden

image: vaultwarden/server:latest

restart: unless-stopped

ports:

  - 11808:80

  - 11443:443

volumes:

  - ./data/:/data/

environment:

  - ROCKET_PORT=11444

caddy:

image: caddy:2

container_name: caddy2

restart: always

ports:

  - 1808:11808

  - 1443:11443

volumes:

  - ./caddy:/usr/bin/caddy

  - ./Caddyfile:/etc/caddy/Caddyfile:ro

  - ./caddy-config:/config

  - ./caddy-data:/data

environment:

  DOMAIN: "https://example.duckdns.org/"

  EMAIL: "[email protected]"
        
  DUCKDNS_TOKEN: "token"

  LOG_FILE: "/data/access.log")`

Caddyfile:

' {$DOMAIN}:1443 {

log {

level INFO

output file {$LOG_FILE} {

  roll_size 10MB

  roll_keep 10

}

}

tls {

dns duckdns {$DUCKDNS_TOKEN}

}

encode gzip

Notifications redirected to the WebSocket server

reverse_proxy /notifications/hub vaultwarden:3012

Proxy everything else to Rocket

reverse_proxy vaultwarden:11444

}`

Any idea where I'm going wrong?

364
Scream rule (lemmy.nz)
submitted 5 months ago by [email protected] to c/[email protected]
[-] [email protected] 157 points 8 months ago

The grilling exposed Trump’s total cluelessness with regard to his own economic policy, and led Trump to attack Micklethwait as biased.

Yes the notably socialist empire of Bloomberg, used by communist stock traders around the world, is biased against the totally rational and very cool Trump economic “plan”.

Maybe adopting failed economic policies from the 1920s (and older) isn’t a winning formula?

[-] [email protected] 75 points 8 months ago

I used to love your card games before you got all political.

Your mom used to love you before you got so fucking stupid

💀

[-] [email protected] 84 points 9 months ago

Sounds a lot like war crimes.

[-] [email protected] 351 points 1 year ago
[-] [email protected] 95 points 1 year ago

Sounds like you need to change the time you do the workout.

view more: next ›

terraborra

0 post score
0 comment score
joined 2 years ago