108
top 32 comments
sorted by: hot top controversial new old
[-] aard@kyu.de 99 points 3 months ago

All my software can be configured using dedicated configuration files (.c)

[-] sik0fewl@lemmy.ca 29 points 3 months ago

Run cc to complete configuration.

[-] TootSweet@lemmy.world 55 points 3 months ago
[-] jlh@lemmy.jlh.name 30 points 3 months ago* (last edited 3 months ago)

This is a really important principle of making APIs that people don't really talk about. There's a fine balance between hardcoded literals and full-gui options menu.

Every piece of data in your program has a different level of configurability, and you need to make that trade-off to decide how hard or easy it should be to change. You could hardcode the data as a literal, or you could hoist it to the top of your source file as a const. You could have a separate static const configuration class, or you could have a runtime configuration file. You could even go for an interactive configuration editor/ options menu. It's all a tradeoff based on offering your users choice but not overburdening them with it, as well as balancing development cost.

[-] dustyData@lemmy.world 10 points 3 months ago

I know it's not always that straight forward. But that's why it's so important to pick sane defaults, and be very transparent in the documentation.

[-] lysdexic@programming.dev 5 points 3 months ago

This is a really important principle of making APIs that people don’t really talk about. There’s a fine balance between hardcoded literals and full-gui options menu.

I think this principle might fly under some people's radar because it has been a solved problem for decades.

Even Makefiles don't require changes to the file to be configured. They take environment variables as input parameters, an approach that directly and indirectly permeated into high-level build systems. One example is the pervasive use of the VERBOSE flag.

After all these years I only had to tweak build config files by hand when I wanted them to do something that they were not designed to do. All build tools I know don't require it. The ones linked with IDEs already provide GUIs designed with this in mind.

[-] aodhsishaj@lemmy.world 22 points 3 months ago

Hasn't this been best practices since Grace "Light has a speed limit" Hopper? May she rest in power.

[-] TropicalDingdong@lemmy.world 11 points 3 months ago

Grace “Light has a speed limit” Hopper

I'll have you know that googling this phrase results in a link to this post, which makes the origin of this phrase no more clear.

Can you explain please?

[-] key@lemmy.keychat.org 15 points 3 months ago

Remove the quotation marks and the first result is https://kottke.org/19/05/grace-hopper-explains-a-nanosecond

More accurate is "electricity has a speed limit"

[-] nik9000@programming.dev 6 points 3 months ago
[-] aodhsishaj@lemmy.world 3 points 3 months ago* (last edited 3 months ago)
[-] Kolanaki@yiffit.net 18 points 3 months ago

As a gamer, I couldn't agree more. Put all the video and audio settings in the options menu; especially if they are things easily changed by editing an .ini file in the install directory. I'm also big on having modding tools like the Creation Kit for modifying the game without having to edit code or use command line conversion tools. It's just a massive time-saver.

[-] FalseMyrmidon@kbin.run 15 points 3 months ago

This wouldn't apply to that criticism. An ini is a configuration file, not really source code.

[-] TrickDacy@lemmy.world 5 points 3 months ago

...which is why they're agreeing with op and simply adding an example to illustrate why

[-] Dark_Arc@social.packetloss.gg 10 points 3 months ago

I agree with this, but there are ways to make your "source code" not a file that you will modify.

For instance you can have a file that's imported/included for configuration purposes that you yourself don't author... And I think that's okay.

One of my favorite configuration languages for Python projects is actually just Python. It's remarkably nice. It's like having a YAML file you can script.

[-] maiskanzler@feddit.de 5 points 3 months ago

The line between configuration is very messy anyways. So many projects abuse YAML as a domain specific language. Looking at you, HomeAssistant and ESPHome!

[-] brisk@aussie.zone 1 points 3 months ago

I assume less custom configs are better, but I've seen Ansible yaml files that are just convoluted bash scripts written in yaml, which makes them even more convoluted.

[-] maiskanzler@feddit.de 1 points 3 months ago

Yeah that occurred to me as well. Then I immediately think that maybe we need ☆one more language☆ to fix this. And then I remember that one xkcd comic...

[-] cgtjsiwy@programming.dev 10 points 3 months ago

I wonder when Firefox is going to add a configuration menu for keybinds.

[-] lysdexic@programming.dev 3 points 3 months ago

It might be just me, but I think key bindings should definitely not be easily configurable or even changed across release. They should.be standard, pervasive, and set in stone.

For those who really want configurable key bindings in Firefox I think there are already a couple of extensions that do this for you.

[-] avonarret1@programming.dev 1 points 3 months ago

Why would you want that? It seems a bit arbitrary for me to make sense.

[-] YIj54yALOJxEsY20eU@lemm.ee 1 points 3 months ago

I disagree but you made it clear its your opinion so I am upvoting to cancel out the downvotes.

[-] Dark_Arc@social.packetloss.gg 2 points 3 months ago

I want one even more badly for thunderbird. It feels like such an obvious thing that's just ... missing.

[-] bizdelnick@lemmy.ml 8 points 3 months ago
  1. Options. We've got lots of them. So many in fact, that you need two strong people to carry the documentation around. So many that it will be a cold day in hell before half of them are used. So many that you are probably not going to do your work right anyway. However, the number of options isn't all that important, because we picked some interesting values for the options and called them ...

  2. Defaults. We put a lot of thought into our defaults. We like them. If we didn't, we would have made something else be the default. So keep your cotton-pickin' hands off our defaults. Don't touch. Consider them mandatory. "Mandatory defaults" has a nice ring to it. If you change them and your system crashes, tough. See Figure 1.

[-] FizzyOrange@programming.dev 7 points 3 months ago

Not sure I buy this. If you have a config header file and make backwards incompatible changes to it how is that different to having backwards incompatible changes to any other config system?

I think what the author meant to say is "don't make breaking changes to your config system". Maybe it's common to ignore that when using source code as config; I don't know.

It's a bad idea anyway because compile-time options should generally only be for configuring the presence of optional third party dependencies, which you can do automatically. Anything else should be a runtime option.

[-] firelizzard@programming.dev 3 points 3 months ago

I think the author's primary point is, "Merging changes sucks, don't make your users do that," with a corollary: if your program loads configuration from a directory that is only populated by the user, there's nothing to merge and thus never any merge conflicts. Case in point: /etc/polkit-1/rules.d. I can add whatever rules files I want in there and they're never going to conflict when I update. If PolKit makes breaking changes to the format, it will log errors somewhere and I can look at those errors, look at my rules, and figure out how to fix them. That's a hell of a lot easier than merging conflicting changes to code/configuration.

[-] FizzyOrange@programming.dev 1 points 3 months ago

That's totally orthogonal to whether your config is source code or not though.

[-] firelizzard@programming.dev 1 points 3 months ago

True, but if you read the article the point is clearly not about source code vs non-source configuration. There's an implicit assumption that source code is something the developer will be modifying as time goes on, but the real point is, "Don't make users merge changes."

[-] abhibeckert@lemmy.world 4 points 3 months ago

For edge cases where you need the power of a programming language in your config system, use something like PKL.

[-] Dark_Arc@social.packetloss.gg 2 points 3 months ago

Okay, that's pretty cool not going to lie. Granted, I'm not entirely sold on the idea of having a config format that's aimed at generating other config formats.

That feels like (in most cases) a recipe for things getting out of sync between the latest version of the PKL and e.g. the JSON

[-] mvirts@lemmy.world 2 points 3 months ago

Yes. This is why conda and nix are complicated.

[-] Deebster@programming.dev 1 points 3 months ago

I've often thought that something like git's auto-merge would make like much easier when I get asked if I want to keep my config, use upstream or decide per-line. What I should be able to do is have the system pick whichever changed recently, and give me the results to review and/or fix conflicts.

this post was submitted on 10 Apr 2024
108 points (95.8% liked)

Programming

16207 readers
79 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS