Reminds me of the time when I bind mounted my home dir in a chroot, then rm -rf
ed the chroot when I no longer needed it…
- 15 Posts
- 90 Comments
To anyone saying it’s dumb not to use a forge, have you heard of a little open source project called Linux ? It does not use a forge either
pcouy@lemmy.pierre-couy.frto Selfhosted@lemmy.world•Question about what to put on RAID and what to put on NVMEEnglish2·5 months agoAlternatively, if your databases are on a filesystem that supports snapshots (LVM, btrfs or ZFS for instance), you can make a snapshot of the filesystem, mount the snapshot and backup thame database from it. This will ensure the backup is consistent with itself (the backed up directory was not written to between the beginning and the end of the backup)
pcouy@lemmy.pierre-couy.frto Selfhosted@lemmy.world•The best Cloud backup in 2025?English2·6 months agoEnabling multi DC redundancy is really easy though. The other providers you mentioned may have it by default, but they’re also a lot more expensive.
I love that they let me pick my own redundancy strategy, without forcing me to pay for theirs
pcouy@lemmy.pierre-couy.frOPto Programming@programming.dev•Goodbye SASS, welcome back native CSS2·6 months agoborder-radius: max(0px, min(8px, calc( (100vw - 4px - 100%) * 9999)) );
Oh I missed this. I think it’s only here to showcase doing math between different units, which is really nice in my opinion. I’m thinking about a few instances where I had to resort to dirty JS hacks just because CSS did not support this at the time
pcouy@lemmy.pierre-couy.frOPto Programming@programming.dev•Goodbye SASS, welcome back native CSS5·6 months agoWe still see somewhat old browsers, especially from people using Safari on Apple devices (because IIRC it only updates when you update the whole OS). But it’s a lot better than it used to be thanks to most browser having auto-updates
Works fine for me. Which OS and browser are you using ?
pcouy@lemmy.pierre-couy.frOPto Programming@programming.dev•Goodbye SASS, welcome back native CSS3·6 months agoI’m not sure how this relates to the shared post. I’m just searched the article for “radius” and only found one example where a variable is defined then used later. Were you talking about this ? Or can you clarify what “radius calculation” you hate ?
pcouy@lemmy.pierre-couy.frOPto Programming@programming.dev•Goodbye SASS, welcome back native CSS3·6 months agoIt seems to be working for me, it’s weird. I’ve updated the post with the same URL anyway, and you can try https://scribe.bus-hit.me/@karstenbiedermann/goodbye-sass-welcome-back-native-css-b3beb096d2b4 if that still does not work
pcouy@lemmy.pierre-couy.frtodatahoarder@lemmy.ml•Only 1679 bookmarks? What is this, the 1900s?1·6 months agoDo archivebox allow you to full-text search through archived contents ?
I’ve mostly replaced bookmarking with wallabag, mostly because of the full-text index, but I’ve been eyeing archivebox for a while because it handles more types of stuff
Well it’s in the name, they are code smells, not hard rules.
Regarding the specific example you cited, I think that with practice it becomes gradually more natural to write reusable functions and methods on the first iteration, removing the need for later DRY-related refactorings.
PS : I love how your quote for the Rule of Three is getting syntax highlighted xD (You can use markdown quotes by starting quoted lines with
>
)
Let’s rephrase my opinion, so that we can (hopefully) agree on something : What I’m arguing against is the “ChatGPT-style” (or “tutorial-style”) comments that I’ve seen all over juniors’ code, even before LLMs got widespread
When refactoring, it’s often the “what” that changes, not the “why”
I’m not sure how we disagree. At least, I don’t disagree with you. My whole comment was talking about “what” comments. “Why” comments are a very good thing to have where they’re needed
That’s not what I said. I said that comments can often (but not always) be replaced with good and explicit names.
This can be pushed to some extreme by making functions that only get called at a single place in the code, just for the sake of being able to give a name to the code that’s inside (instead of inlining it and adding a comment that conveys the same informations as the function’s signature)
It’s definetly not for everyone, but for beginners/juniors it gives something objective they can aim for when trying to build good coding habits
Apart from the fact that, as another commenter said, “smells” are not “rules”, I think most of these points come down to developing good habits, and ultimately save a lot of time in the long run by initially spending some time thinking about maintainability and preventing/limiting technical debt accumulation.
It’s often a good idea to make the code itself very explicit through verbose function and variable names, rather than writing comments that could lead to inconsistencies between code and comments (by not updating the comments at the same time as the code) (see “Fallacious Comments” from the catalog)
They are both serialization formats that are supposed to be able to represent the same thing. Converting between these 2 formats is used in the article as a way to highlight yaml’s parsing quirks (since JSON only has a single way to represent the
false
boolean value, it makes it clear that theno
value in yaml is interpreted as a booleanfalse
and not as the"no"
string)Anyway, I disagree with your point about YAML and JSON not being interchangeable
Did you find the article stupid, or are you talking about yaml parsing ?
I live in Lyon, and I’m soooo happy to hear about this ! 🤩