terraborra

joined 2 years ago
[–] terraborra@lemmy.nz 2 points 3 weeks ago* (last edited 3 weeks ago) (3 children)

Yeah. Wtf is with the other comments. Yes Luxon sucks but this is the correct move and is probably informed by policy experts at RBNZ and Treasury.

Trump’s reaction to Canada actually implementing reciprocal tariffs shows how bad of an idea this is. I’m an economist, and this is the textbook definition of the prisoner’s dilemma. Both sides get hit with negative payoffs and it is the worst result overall.

 

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.

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

The scary thought is that it can, and probably will, get worse.

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

Lol. System requirements are 30, 40 & 50 series cards with 12GB of VRAM. Most of the cards do not have this due to Nvidia’s stinginess.

[–] terraborra@lemmy.nz 16 points 1 month ago* (last edited 1 month ago)

JFC. How did they not get jailed for child abuse?

 

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.

 

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?

 

Google pushed their Ai Overview onto my country last night and that finally gave me the push to change search engines.

One thing I did find useful was having product prices displayed in the search result headers but this doesn’t appear to be enabled in any other engine. I used it to quickly scan between retailers as not everything shows up in pricespy or priceme.

I deployed a searxng instance this morning and have heard that you can use json to modify result presentation. Does anyone know if it’s possible to use that to display prices?