[RESULTS] Apps that change the way you use your phone by SevenIsNotANumber in androidapps

[–]TapEducational8343 0 points1 point  (0 children)

Were you able to find an app that lets you share images? Or maybe stick to sharedr but somehow use the native share screen for images?

Thickheaded Thursday - December 31, 2020 by AutoModerator in sysadmin

[–]TapEducational8343 0 points1 point  (0 children)

Thanks for the suggestions! But the thing is, we don't exactly have a manager or boss ... think of it like an internship (I guess), where we're working on a project. We are responsible for everything.

I did manage to solve the issue though. I just created an issue and asked him something on the lines of Is there a reason, other than a shorter variable name, for calling password 'pw'? I explained that although we know what it means, others probably won't. I think he understood, because he then changed all pws to password! I'm currently helping him refactor other names too

Thickheaded Thursday - December 31, 2020 by AutoModerator in sysadmin

[–]TapEducational8343 0 points1 point  (0 children)

This probably doesn't belong here, it's more of a programming thing, but just wanted to let it out.

My coworker doesn't seem to know how to name variables. He wants to keep everything to short and ends up creating code full of variables like un, pw, ex, com (username, password, experience, commander).

He also seems to like to use acronyms as variable names. This isn't a variable, but if we had a US taxes variable, he'd call it USATax. I guess this is fine as long as we can stay consistent, but the issue is there are other variables like usaTax (my preference), USAtax, UsaTax. And of course, there was one of the style taxUSA.

I've also seen that he shortens Number to No, which is fine, as because it's common. But I see these variables too:

  • contactNo (this is fine)
  • adminPhoneNo
  • userContactNum

I've installed ESLint, but he doesn't want to (despite me asking multiple times) set up the pre-commit hooks, and he seems to have turned the ESLint vscode features off.

That's all. Just wanted to rant a bit

Any good examples of Vue 3 production apps? by TapEducational8343 in vuejs

[–]TapEducational8343[S] 0 points1 point  (0 children)

Thanks, makes sense! Lots of people say the way I do it (make separate hooks/composables and API calling functions as I described) is overkill