597
you are viewing a single comment's thread
view the rest of the comments
[-] palordrolap@fedia.io 8 points 1 week ago

Thought experiment: Would you expect a programming language variable name to be case insensitive?

That is, if you set foo = 1 and then print FOO, what should happen? Most programming languages throw an error.

Is this even comparable with filenames, which are, after all, basically variable names that hold large quantities of data?

If there is a difference, is it the fact it's a file, or - for a mad idea - should files with only a few bytes of data retain case insensitivity? And if that idea is followed through, where's the cutoff? 256 bytes? 7?

(Anyway, Windows filenames are case sensitive, in a sense. If you save "Letter to Grandma.txt" it will retain those two capital letters and all the lower case letters exactly as they are. It won't suddenly change to "LETTER to Grandma.txt", despite the fact that if you try to open a file by that name, you'll get the same file.)

[-] wizardbeard@lemmy.dbzer0.com 3 points 1 week ago* (last edited 1 week ago)

PowerShell variable names and function names are not case sensitive.

I understand the conventions of using capitalization of those names having specific meanings in regards to things like constants, but the overwhelming majority of us all use IDEs now with autocomplete.

Personally, I prefer to use prefixes anyway to denote that info. Works better with segmenting stuff for autocomplete, and has less overhead of deriving non-explicit meaning from stuff like formatting or capitalization choices.

On top of that, you really shouldn't be using variables with the same name but different capitalization in the same sections of code anyway. "Did I mean to use $AGE, $Age, or $age here?" God forbid someone come through to enforce standards or something and fuck that all up.

[-] palordrolap@fedia.io 1 points 1 week ago

But should $Age return the same value as $age if used in its place by mistake?

[-] Serinus@lemmy.world 0 points 1 week ago* (last edited 1 week ago)

you really shouldn't be using variables with the same name but different capitalization in the same sections of code anyway.

It's a standard convention. Notice step #3 here: https://scottlilly.com/learn-c-by-building-a-simple-rpg-index/lesson-08-1-setting-properties-with-a-class-constructor/

Edit: Step #4 is a different standard convention that also applies here.

load more comments (1 replies)
this post was submitted on 06 Sep 2024
597 points (90.2% liked)

linuxmemes

20707 readers
1710 users here now

I use Arch btw


Sister communities:

Community rules

  1. Follow the site-wide rules and code of conduct
  2. Be civil
  3. Post Linux-related content
  4. No recent reposts

Please report posts and comments that break these rules!

founded 1 year ago
MODERATORS