Honestly surprised you’re able to get lemmy votes without an admin account, I thought that data was restricted to instance admins.
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.
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 thatintentionally 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
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.
Can’t say I recommend
Windows/Microsoft’s biggest selling point is the backwards compatibility though. It has been the corner stone of their software development.
The sea should be marked as C considering that’s what you’ll discover when you get deep into it.
but I don’t like the indentation crap
Do you not use indentation in other languages?
It’s not leak when it’s an intended and documented feature…
3, about two lines per contributor
The only two people arguing against the change were both authors/contributors of is-number lol
Heard from someone else (so take it with a grain of salt) that CrowdStrike and/or similar companies threatened Microsoft with an antitrust suit when Microsoft tried to force them to use an API instead of working directly with the kernel.
Huh, I missed that when skimming through the post and source code
I saw that part and misunderstood it as if he didn’t run an instance.
Thanks for pointing it out!