terraborra

joined 2 years ago
[–] terraborra@lemmy.nz 20 points 5 days ago (1 children)

When you catch up it’s as if no time has passed no matter how long it’s been since you last spoke to them.

[–] terraborra@lemmy.nz 10 points 2 weeks ago

You could put it up on ResearchGate first to get eyes across it and potentially get an endorsement. Then reach out to the endorser to get sponsored for arXiv.

The other option is to submit it for peer review. You’d need to to look up the best pathway based on your field.

[–] terraborra@lemmy.nz 21 points 2 weeks ago (19 children)

“Property is theft” curtesy of Pierre-Joseph Proudhon.

[–] terraborra@lemmy.nz 54 points 3 weeks ago (2 children)

I’m anti-general purpose LLMs, but this is a valid use case for “ai”. There are known constraints, the model is trained on a very specific dataset, and you have have human experts in the loop for assurance.

This also isn’t new. Protein folding models have been successfully used, and validated, for a number of years.

[–] terraborra@lemmy.nz 26 points 3 weeks ago* (last edited 3 weeks ago)

The professor tried to warn us about robosexuals but we didn’t listen.

[–] terraborra@lemmy.nz 3 points 3 weeks ago (1 children)

Connections
Puzzle #758
🟦🟦🟦🟦
🟨🟨🟨🟨
🟩🟪🟪🟩
🟪🟩🟪🟩
🟩🟪🟩🟩
🟩🟩🟩🟩
🟪🟪🟪🟪

Tap for spoilerI do not play sports, and it shows

[–] terraborra@lemmy.nz 6 points 4 weeks ago

I especially love the feeling when you’re so fatigued from lack of sleep that you’re too tired to sleep.

[–] terraborra@lemmy.nz 6 points 1 month ago (2 children)

Guns ‘N Roses - Welcome to the Jungle. I don’t like GNR full stop, but the radio station I used to wake up to on the alarm clock would play that song at exactly the same time everyday.

Couldn’t understand why I used to wake up angry every morning until I changed stations.

[–] terraborra@lemmy.nz 5 points 1 month 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.

[–] terraborra@lemmy.nz 1 points 1 month ago (1 children)

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.

[–] terraborra@lemmy.nz 45 points 1 month 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.

[–] terraborra@lemmy.nz 9 points 1 month ago

So aggressive. I love it!

 

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.

 

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.

 

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.

 

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 6 months ago* (last edited 6 months ago) by terraborra@lemmy.nz to c/voyagerapp@lemmy.world
 

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.

 

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: "example@domain.com"
        
  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?

 

Merry Christmas dnb crew. I got back into mixing and producing this year after a 15 year hiatus and polished off this mix today. It’s a mixture of neuro, darkstep and techstep, mainly the tunes I have on repeat which is why there’s a few older ones in there.

I’m pretty happy with it, but unbiased feedback would be great even if it’s critical.

 
view more: next ›