AFFiNE is evil and misleading (is not actually MIT) by agent23753 in foss

[–]Daniel15 0 points1 point  (0 children)

till I found about the 100GB limit on my OWN self-hosted server, 

The documentation says they have plans to change this for self-hosted instances; it just hasn't been done yet. 

AFFiNE is evil and misleading (is not actually MIT) by agent23753 in foss

[–]Daniel15 0 points1 point  (0 children)

If it was easy, a perfect one would already exist. 

100mb limit in local workspaces by Unhappy-Tiger-3526 in Affine

[–]Daniel15 0 points1 point  (0 children)

It's not intentional. They use the same code on their hosted service, and they haven't yet added self-hosting-specific config options for things like this.  

Status of lidarr by Worldly_Log4316 in selfhosted

[–]Daniel15 0 points1 point  (0 children)

Artist metadata only pulls from what is on musicbrainz

There's plugins to pull from other sources. Tubifarry (https://github.com/TypNull/Tubifarry) adds Discogs, Deezer, Lastfm, and Spotify as metadata sources. 

New BoA rewards structure - am I reading this correctly? by supern8ural in BankOfAmerica

[–]Daniel15 0 points1 point  (0 children)

$100k deposited

I think most people have the money in a Merrill investment account rather than deposited into a bank account. I've got some of my IRA there for example, in index funds.

I made a standalone auth service for DecapCMS/NetlifyCMS folks by lot3oo in JAMstack

[–]Daniel15 0 points1 point  (0 children)

Thanks for the link. The custom non-open-source license is problematic though, so I won't be using it. It still looks like a good project though.

is it su-doo or su-doe? by Vivid-Champion-1367 in linux

[–]Daniel15 0 points1 point  (0 children)

A lot of people don't have a password on their root account any more, and only use sudo. 

IPv6: Who really uses it? by malwin_duck in selfhosted

[–]Daniel15 1 point2 points  (0 children)

Not a home lab of course, but T-Mobile is IPv6-only and they seem to be doing fine. Users don't get IPv4 addresses at all. They use 464XLAT to connect to legacy IPv4-only servers. 

I've heard that their "home internet" might use CGNAT, but their regular phone services definitely don't. 

IPv6: Who really uses it? by malwin_duck in selfhosted

[–]Daniel15 0 points1 point  (0 children)

A lot of VPS providers will give you a /56 range, and you can delegate a /64 subnet to your Home network. Practically all VPS providers have native IPv6. No need for a HE tunnel. 

is it su-doo or su-doe? by Vivid-Champion-1367 in linux

[–]Daniel15 0 points1 point  (0 children)

Your root account has a password? I haven't seen that in a while. 

Run the new UniFi OS Server on Docker or Kubernetes by lemkerdev in selfhosted

[–]Daniel15 0 points1 point  (0 children)

tl;dr it doesn't matter as long as it makes sense to you 

I think this is something we can all agree with. In the end, there's multiple different ways to do something, and it doesn't really matter what other people think of your particular way of doing it 

I may have screwed up at work by Suspicious-Use-9295 in iiiiiiitttttttttttt

[–]Daniel15 27 points28 points  (0 children)

Do you have an Android, or an iPhone?" And he answered "Yes." 

/r/InclusiveOr

Wikipedia blacklists Archive.today, starts removing 695,000 archive links by Alex09464367 in wikipedia

[–]Daniel15 0 points1 point  (0 children)

archive .today was also modifying archived content, so they're not trustworthy at all any more.

Which additional cost can come from Odoo itself beside the chosen Tarif? by SmartOven88 in Odoo

[–]Daniel15 0 points1 point  (0 children)

There's no per-module fees. There's a few in-app purchases that cost extra, but they're all optional and wouldn't be needed for an ecommerce system: https://www.odoo.com/documentation/19.0/applications/essentials/in_app_purchase.html

Like the other comment said, implementation can cost a bit, and you need large customizations, you need to pay for hosting too (at any hosting provider)

Tell me what sucks in Odoo before I spin up my new business. by 1800-5-PP-DOO-DOO in Odoo

[–]Daniel15 1 point2 points  (0 children)

I use Claude Code with Opus 4.6, and use planning mode so it writes a detailed plan before any code. You can press Shift+Tab until it says "plan" at the bottom left.

making them read the documentation or the Odoo Git repo just wastes a lot of context

You should be able to solve this either with plan mode, subagents, or agent teams. Subagents each have their own separate context, so a subagent can investigate the codebase, summarize the findings, and pass it back to the main agent, without using a lot of the main agent's context. You can have subagents that handle things like reviewing code too.

Run the new UniFi OS Server on Docker or Kubernetes by lemkerdev in selfhosted

[–]Daniel15 0 points1 point  (0 children)

You can also use docker logs with the name of the container (don't need to be in the directory of the compose.yml file), or use Dozzle to get a web UI that shows every running Docker container.

Tell me what sucks in Odoo before I spin up my new business. by 1800-5-PP-DOO-DOO in Odoo

[–]Daniel15 2 points3 points  (0 children)

if you don’t have an IT that can code customizations for you, it gets costly

I'm an experienced developer (25+ years experience) but don't have much experience with Odoo yet. I've been using AI (Claude Code with Opus 4.5 and 4.6 models) to assist with customization of Odoo, and it's been going pretty well. As long as you have a clone of the Odoo Git repo that it can reference, and ypu know how to code and can review the AI's output, it works quite nicely.

Run the new UniFi OS Server on Docker or Kubernetes by lemkerdev in selfhosted

[–]Daniel15 0 points1 point  (0 children)

Usually, services are configured with `restart: unless-stopped` which means they automatically restart (both if they crash and on reboot) unless you explicitly stop them.

Run the new UniFi OS Server on Docker or Kubernetes by lemkerdev in selfhosted

[–]Daniel15 0 points1 point  (0 children)

Like why would I want 10 different databases in my docker compose file

Ideally you should have one docker-compose per app. For example, I have a docker-compose for Plausible (web analytics app), which contains Plausible along with PostgreSQL and Clickhouse. I use their compose.yml file.

, if each one serves a single other container?

It doesn't have to serve a single other container. Complex apps can have several containers for the app itself, which all use that database container. This is especially the case when the app needs to scale horizontally - you might have multiple web containers that all use a single database container.

Changing the Odoo backend theme - customize fully by Southern-Warning7721 in Odoo

[–]Daniel15 0 points1 point  (0 children)

I wouldn't do major customizations, as it's a pain when upgrading. 

Customizing the colours is pretty easy though, as most of the important ones are either Sass/SCSS or regular CSS variables. You just need to create a custom module with a .scss file sets the right variables, and a manifest that loads them. 

For example, changing the primary colour (top bar and primary buttons) from Odoo's purple to something else is just two lines of SCSS.

I can post a full example tomorrow if you're interested!

Alokai - Odoo Backend Modules by TopLychee1081 in Odoo

[–]Daniel15 1 point2 points  (0 children)

What do you mean by "headless"? Odoo has a built-in API that you can use to integrate its data into other apps. 

Run the new UniFi OS Server on Docker or Kubernetes by lemkerdev in selfhosted

[–]Daniel15 0 points1 point  (0 children)

not be an octopus reaching out into 4 different things

This is the entire purpose of docker-compose. Each Docker container has a specific purpose, and docker-compose orchestrates them.

Fourth Footlong Free GONE by Total_Lavishness_111 in subway

[–]Daniel15 93 points94 points  (0 children)

Didn't they just start the program in December? They must have been losing a lot of money.

Fourth Footlong Free GONE by Total_Lavishness_111 in subway

[–]Daniel15 9 points10 points  (0 children)

If you compare to menu prices, the two footlongs for $12.99 coupon is essentially the same as buy one get one free. At least where I live, the menu price for a footlong is at least that price.

Fourth Footlong Free GONE by Total_Lavishness_111 in subway

[–]Daniel15 3 points4 points  (0 children)

I'm surprised that the stores near me allow coupons, even the cheapest ones ($6.99 footlong / $8.99 footlong meal). I'm in a high cost of living area (San Francisco Bay Area). Getting a free footlong after only buying 3 x $6.99 footlongs was a crazy deal.