Covering some issues (and solutions) I found when working in the industry related to naming conventions. They might not be much but if you apply them you are safe from creating a naming mess out of you project.
Tell me what you think. Constructive criticism is always welcome!




I love the attention people are giving to clean code. Clean readable code is, in my opinion, even more important than the code actually working. And kudos for you for giving attention to this subject!
After watching you video I'm not sure I understand your point in not using the same conventions across multiple languages. Working on projects with C#, Javascript, HTML, CSS, Powershell scripts and what not. I think it will be an impossible task to adjust your coding styles between all the languages so they don't overlap. Though my Javascript conventions aren't exactly the same as I have them in C#, I don't see any issues in them being the same. Could you explain some more on why you think this is important?
Otherwise great subjects to at least think about. One think I think didn't really belong is the naming conventions. I really agree that being consistent in your naming conventions is key to writing clean code, and if your language forces you a certain convention you have to adjust to that. Other then that, which convention you use, is a personal opinion. Of course there are best practices, like writing constants in all capitals, but on other parts you'll find small nuances on them. Some prefer camel, some pascal, some snake, the most important is that they should make your code more readable and try to be consistent. All the other parts are really a must, use good names for your methods and variables and keep out the spelling mistakes.
If I could give your one tip for your next video, try and do the code in an IDE. I think adding syntax highlighting could make your video's a little easier to understand.