

Sort of my point, actually. Most software now I’d argue is AI assisted.


Sort of my point, actually. Most software now I’d argue is AI assisted.


This is most definitely AI assisted. I won’t say vibe coded, but this has the hallmarks.


I think it might have been related to being on Linux. I’m not using flatpack or snap, but it was just something that wasn’t supported. I wish I remember what it was.


I was unable to use Chromium. I forget why, but I snagged real Chrome after hitting errors and my Google search telling me the issue.
I then immediately removed real Chrome.


Are you reading dungeon crawler carl too?


deleted by creator


I understand why some would do this. It’s definitely a more secure setup, but I highly doubt “most”. I like having passwords on my work laptop. I couldn’t sync there with a VPN, for example. My wife, kids and parents aren’t going to run VPNs on their phones, etc.


Isn’t that there point though? Remote synchronizing?


I have a 2013 MacBook running Ubuntu. No wifi drivers so I bought an Ethernet dongle off of eBay for $10. Runs immich pretty well.


This. This is the way. It solves this problem completely, but utilities somehow refuse it. It’s almost like their argument is not in good faith …


What are you using for a reverse proxy? There’s some nginx websocket settings I had to do before things worked properly. I use cloudflare, but just for the DNS/cdn stuff, not their zero trust things.
server {
server_name my.domain.com;
client_max_body_size 2048M;
location / {
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Host $host;
proxy_pass http://10.10.10.30:13378/; # My Wireguard Tunnel up to the VPS
# proxy_cache_bypass $http_upgrade; # This was added by Certbot
# WebSocket support
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/my.domain.com/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/my.domain.com/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server {
if ($host = my.domain.com) {
return 301 https://$host$request_uri;
} # managed by Certbot
listen 80;
listen [::]:80;
server_name my.domain.com;
return 404; # managed by Certbot
}


I don’t disagree with you, but for a single server hosting multiple projects with differing system dependencies, docker is amazing. I’ve come around to using it for this practical reason.
Using docker over direct installation always feels like an unnecessary interface layer that just complicates things and introduces points of failure.


This feels 1000% like a chatgpt prompt copy and pasted into a webpage.


Why build one when you can build two at twice the price!
/s Contact quote
Seriously though, the cost was largely in the preparation. At some point you want to get more out of all that work. Yes, it was expensive for each actual launch. I wonder what the cost of stopping at the first one would have been. I’m WAGing that half the cost was getting there the first time. The other half was 5 more. That would be an interesting stat to know.


/agree
Even with ST, my youngest goes to school in the dark all winter. Just now, as it’s light when he goes out, they’re about to swap it to DST and he’ll be in the dark again for a couple of weeks.
“Losing” that short window of morning sunlight is nothing to me. Gaining the ability to have normal sleep patterns and not changing the clocks is infinitely better.
I do not care what the time is, as long as it stays consistent. My sleep is fucked up for 2x2 weeks every fucking year for no good reason.


(as noted in the recap, but left out of the title) Florida residents spent that money. Ron just signed the checks.
People really need to wake up and realize they’re making life worse for us with our own money.


Andy is short for Andrea, right? IMPOSTER EVERYONE!
/s


I just deal with snap and don’t use it unless I have to. The pro thing is kind of stupid. I have 6 computers and vms on pro. There is no actual check preventing it from working. They have some bug where it appears like your have double the computers checking in sometimes. So when I had 5, it’d show 10 sometimes. So now it just shows 6 or 12.
Everything works fine. I’m ignoring it for now.
Someday I’ll switch, but until that day, I’m chillin’.
Look into zen.ai which is opencode’s sister company that provides llm access. “At cost”
You can see just how cheap they are. I use Augment Code at work and they have kimi 2.6. It’s really solid. Opus/GPT are still better, but for many tasks, kimi works great and doesn’t make me cringe at the price.
Qwen 3.6 is supposed to be really good too. I haven’t used it that much.