That’s for images though, not text content.
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
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.
No, they are talking about weights that spits out a body fat percentage alongside the weight.
Yes, I’m sure reopening coal plants and displacing villages to mine coal is a better environmental policy.
And are you suggesting that the West wouldn’t be able to build cheaper and faster nuclear power plants even if we had actually invested in the technology for all these years? Is nuclear technology some unicorn that can’t be improved with experience and research?
Building times are to be measured in decades.
Should probably have invested more into developing their knowledge and experience then. Just have a look at China.
Littering vast spaces of land for wind and sun power generation is hardly a better long term solution.
Considering Russia’s interest in the islands, that might not be all that great of a choice.
The hen can’t be alone with the fox or the grain, so it’s still the same.
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 $foo
should becat "$foo"
, or whether the script actually relies on word splitting? It’s possible that$foo
intentionally 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[@]}")
If you’re going to write scripts that requires installing software, might as well use something like python though? Most Linux distros ship also ship with python installed
I genuinely don’t get the point you’re trying to make? What exactly is the problem with supplying fuel to ships that are docked in Norway?
Writing Lua code that also interacts with C code that uses 0 indexing is an awful experience. Annoys me to this day even though haven’t used it for 2 years
How about 8 hours troubleshooting while trying to find the right documentation.
Plenty of projects have exe files available on the release page though, it’s just hard to find unless you’re familiar with github.
Neither options will solve the problem though