this post was submitted on 27 May 2024
711 points (97.8% liked)

Programmer Humor

18961 readers
1123 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 

geteilt von: https://lemmit.online/post/3018791

This is an automated archive made by the Lemmit Bot.

The original was posted on /r/ProgrammerHumor by /u/polytopelover on 2024-05-26 21:23:20+00:00.

(page 2) 50 comments
sorted by: hot top controversial new old
[–] [email protected] 8 points 2 months ago (1 children)

I know the second one is better, but I also know I'm terribly inconsistent with this stuff.

[–] [email protected] 3 points 2 months ago

Been learning to program and I'm refusing to use an lsp for the time being. I'm bad about using abbreviated names when I have to type over and over again(no auto complete). I'm at least using descriptive names for functions I use less than four times.

[–] [email protected] 6 points 2 months ago

dialog_file_open_dialog I prefer big.LITTLE cpus

[–] [email protected] 5 points 2 months ago (2 children)

I don't know and that's the problem :(

I keep asking myself what to choose, only for changing it a day after cursing myself to choose a stupid name.

Big endiant is great for intellisense to quickly browse possibilities, since it groups it all in the same place. But that's also a detriment when you know what you want. You can start typing without the prefix but you'll have to go through the better suggestions of intellisense first.

Little endiant is the same thing, but in reverse. Great when needed, but bad for browsing.

Although I do have some fix I'm starting to use. But it's not applicable everywhere, and not in every language.

What I do is use module as prefix. Instead of dialogue_file_open, I create a file_open in the dialogue module, allowing either directly calling file_open, or dialogue::file_open. Using intellisense on the module allow for easy browsing too!

Although in OP's post I'd rather have file_open_dialogue as it convey the more significant meaning, being to open a file, first. Then "dialogue" is just the flavour on top

load more comments (2 replies)
[–] [email protected] 5 points 2 months ago (2 children)

Create a file handler class to avoid the issue

[–] [email protected] 3 points 2 months ago

FileDialogFactory

[–] [email protected] 3 points 2 months ago (1 children)
[–] [email protected] 2 points 2 months ago

Meh, a class is just a struct of function pointers.

[–] [email protected] 3 points 2 months ago* (last edited 2 months ago)

in general, adjectives and verbs after nouns because it's more organized/easier to search/filter. as god intended.

[–] [email protected] 3 points 2 months ago* (last edited 2 months ago)

I know I'm late to this but here's my (probably insane?) take. We use Subject-Verb-Object in English right? So, hear me out:

dialog_create_tab(...)
dialog_open_file(...)
dialog_close_file(...)
[–] [email protected] 3 points 2 months ago

Romance language word order noun_descriptor is the right way.

[–] [email protected] 2 points 2 months ago

As a rule of thumb, I always put action verbs at the end of method names

[–] [email protected] 2 points 2 months ago

We just call those Smurf names.

load more comments
view more: ‹ prev next ›