


Though to be fair, I think the study would yield similar results to pretty much every country.
I’m not UlrikHD



Though to be fair, I think the study would yield similar results to pretty much every country.


What big advantages does pathlib provide? os.path works just fine


First paragraphs in the article
Writing a package manager is not one of the most common programming tasks. After all, there are many out-of-the-box ones available. Yet, somehow I’ve found myself in exactly this situation.
How so?
I’m a big fan of SQLite and its extensions. Given the large number of such extensions in the wild, I wanted a structured approach to managing them. Which usually involves, well, a package manager. Except there is none for SQLite. So I decided to build one!
That’s for images though, not text content.
Huh, I missed that when skimming through the post and source code
I am considering implementing my own ActivityPub server to remove the dependency on a Lemmy server to get votes,
I saw that part and misunderstood it as if he didn’t run an instance.
Thanks for pointing it out!
Honestly surprised you’re able to get lemmy votes without an admin account, I thought that data was restricted to instance admins.
I think they limit it to upvotes for normal users


University students get free pro licenses for jetbrains IDEs I think


It’s just a variation of typosquatting as the author themself acknowledge. I always have to double check the package name when installing a new package. This just seems like a natural variation of it.
I think it’s a thing mainly for hobby programmers and young students that don’t have a solid foundation/grasp of programming yet, which also likely makes up a big portion of programming meme communities.
Functional programming would have quite the problem if it wasn’t a thing.


The hen can’t be alone with the fox or the grain, so it’s still the same.


This sort of reminds me of the library where someone implemented classes in elixir. It sounds like a fun project to do, but is there any utility in this?
I like python, but I wouldn’t want anywhere near my elixir code


So you mean debugging then?


I’m not anti bash or fish, I’ve written in both just this week, but if we’re talking about readability/syntax as this post is about, and you want an alternative to bash, I’d say python is a more natural alternative. Fish syntax is still fairly ugly compared to most programming languages in my opinion.
Different strokes for different folks I suppose.


For example, how could it know whether
cat $fooshould becat "$foo", or whether the script actually relies on word splitting? It’s possible that$foointentionally contains multiple paths.
Last time I used ShellCheck (yesterday funnily enough) I had written ports+=($(get_elixir_ports)) to split the input since get_elixir_ports returns a string of space separated ports. It worked exactly as intended, but ShellCheck still recommended to make the splitting explicit rather than implicit.
The ShellCheck docs recommended
IFS=" " read -r -a elixir_ports <<< "(get_elixir_ports)"
ports+=("${elixir_ports[@]}")
I got a bot on lemmy that scrapes espn for sports/football updates using regex to retrieve the JSON that is embedded in the html file, it works perfectly so far 🤷♂️