DEV Community

Suborna
Suborna

Posted on

Tips for code newbies from an experienced programmer

ABOUT ME [The Code Newbie]

As mentioned before in my previous blog posts, I am a codeNewBie who has started learning front-end development for just over a month. I am currently learning HTML, CSS and Javascript on FreeCodeCamp, Udemy, CodeCademy and Youtube.

ABOUT FOYSAL [The Programmer]

Also this has been mentioned before but I am extremely lucky to have my husband, Foysal beside me who also happens to be a programmer with 8 years of experience in web development and the solution to all my programming related issues. Through him, I have received a lot of coding related advices which I feel other code newbies may not be privileged enough to receive or not at least until they start a job or find a mentor.

Hence I have decided to share those advises with you code newbies to fill in the gaps earlier rather than at a later stage of their programming career.

1. SHORTCUTS

Try to stay on the keyboard as much as possible which means learning the shortcuts of the code editor you are using and avoid using the mouse as much as possible to perform an action. This may not feel like a big deal at the moment but when you actually start building a project and you have to add, edit or delete certain block of code on a massive project with hundreds of lines of code, those shortcuts will extremely come in handy. So start practising the shortcuts as early as possible.

If you are not familiar with a lot of shortcuts I have a post here on dev.to that might help you get started.

2. INDENTATIONS

Programming language such as Python relies on indentations meaning the program might break altogether based on your indentations. However, even if that's not the case for other languages such as: JavaScript, it is equally as important to practice getting the indentations right to improve readability and to be able to easily maintain and navigate through the code you have written over time.

3. NAMING CONVENTIONS

This one is my favourite one! Foysal's advice is to name our functions with a 'verb' and name our variables with a 'noun'. The reason behind this logic is that, functions always perform an action which is a 'do'. Anything you do is a verb so name your functions with a verb. On the other hand, noun is just names used to identify people, places or things.

DO

function checkAuthentication () {
    // get authentication info from database/browser storage etc.
    const authenticationInfo = getAuthenticationInfoFromDatabase();

    if (authenticationInfo)
        return true;

    return false;
}
Enter fullscreen mode Exit fullscreen mode

DON'T

function authentication () {
    // get authentication info from database/browser storage etc.
    const auth = authenticationInfo();

    if (auth)
        return true;

    return false;
}
Enter fullscreen mode Exit fullscreen mode

It is more than okay to have very long names for functions and variables as long as it helps you understand the action you are performing very well. So you/I should stop being lazy or reduce the urge to shorten function/variable names (e.g. auth instead of authentication) because apparently our future self will thank us for appropriate naming conventions.

4. COMMENTS

Always practice leaving a comment next to your code which again, will improve the readability and help you maintain the code at a later stage. Comments and naming your functions/variables appropriately work together to jog your memory and it will eventually reduce stress and time consumption as you won't have to spend any extra time figuring out your own code.

5. CONSISTENCY

There are many rules programmer follow to stay consistent within/across their projects. I am just trying to follow Foysal's recommended way of staying consistent but that does not necessarily mean you have to do too. You can build your own rules as long as the rules remain consistent. A few of his recommendations look like the following:

  • Naming Files/Images - kebab-casing
  • Naming Objects - PascalCasing
  • Naming Variables/Functions - camelCasing

If you don't know the casing types used in programming, then read my blog on casing types here

READING CODE

Try looking through experienced programmer's code on Github to see how they write/organise their code and what you can do as a developer to improve your writing. Look through their files to understand more about coding structures, file names, indentations and so on.

ADDITIONAL TIPS

USERNAME

Always try to use the same username everywhere you sign-up to allow others to find you easily. This will not only build your self-identity but also allow others to recognise you easily in different platforms. Examples where you may sign up as a developer includes:

  • Github
  • Twitter
  • Stack Overflow
  • Dev
  • Medium
  • Envato
BROWSER

Internet is like a unicorn and not getting distracted by a unicorn is always almost impossible, which is why while programming whether you are learning or working you should always separate your browsers into two sections: Programming & Personal. For example, use Chrome for programming related purposes and Firefox for Amazon purchases, redditing, 9gagging or anything else that gives you joy. This will allow you to stay focused and not open other websites that may distract you from learning or focusing on your work.

Most of the above recommendations/tips are personal opinions formed through personal experiences and programmers working with different tools under different conditions might form opinions that differ from the above.

If you are an experienced programmer and have other recommendations/tips, please let me know on the comment below. I would love to hear your opinion regarding this. Thank you for reading!

Top comments (12)

Collapse
 
pinkbeeme profile image
LaurieSue

I am a newbie too! I found your post very useful. Thank you. I think it is so cool that you have an "in-house" mentor. I have the help of some great instructors, but they are not "in-house" :)Thanks ,again.

Collapse
 
iraamoni profile image
Suborna

Hey Laurie, I am really really glad that it helped you in some way. hehe yes it is cool that my stack overflow sits right next all day haha! Thank you for your comment. Are you on Twitter? I would love to follow you to see your progress!

Collapse
 
rolandcsibrei profile image
Roland Csibrei • Edited

Thanks for the the article. 😊

It would be better to call the method isAuthenticated or hasAuthenticationInfo. For booleans it is always good to prefix the methods with is or has.

Use braces for if or put the return statement on the same line with if to avoid accidentally inserting a statement between the if and the return statement,thus breaking the code.

Have a nice day!

Collapse
 
iraamoni profile image
Suborna

thank you Roland, I really really appreciate your suggestion :D :D

Collapse
 
chriscapaci profile image
Chris Capaci • Edited

One suggestion would be to not be "learning front-end development". Just learn how to develop software, then you can do anything. So many people fall into this trap. You need to learn the basics and go from there. No one should be using front end frameworks before they know how things work overall. I've interviewed some boot campers that know nothing but how to build a website in the latest framework, knowing nothing about how to actually write software. Don't fall into that.

Collapse
 
iraamoni profile image
Suborna

Thank you Chris, I really really appreciate your comment. I will definitely try to follow through your suggestion. Thank you again :D

Collapse
 
calvinoea profile image
Calvin

Thank you for your insights, Suborna.

Collapse
 
iraamoni profile image
Suborna

No problem 😊😊

Collapse
 
iraamoni profile image
Suborna

Hey Amir, again it depends on the programmer's personal choice, whichever works best right? There are programmers who suggest shorter names because longer names get too long or ugly and some suggests to have longer names to understand it better. It all boils down to personal choice and whichever helps to get things working.

I am not experienced enough to have personal opinions just yet. But I am glad you liked the convention part :D :D

Collapse
 
ghost profile image
Ghost

about 3. use some judgement, those huge variable numbers will get akward fast, just add two of them and you have a 100 chars line, very very hard to read, write expresive names but avoid 20char names also, take that function and pass to it 5 parameters and you got a paragraph of text for no reason, and in that case remove the comment, if the variable name is clear you don't need the comment. As always rules don't make up for lack of judgement is perfectly fina a 1 letter variable if the scope is a few lines and don't write Authentication if Auth is perfectly understandable. If you are new, find something interesting to make and do it, the judgement will come naturally, you'll find the right balance in variable lengths, the right thing to comment, the wrong thing to comment, etc.

Collapse
 
iraamoni profile image
Suborna

He has mentioned exactly the same about writing comment and naming variables/functions, if one is mentioned clearly other isn't necessary. But as a newbie I would possibly do both to make it more readable for me. We both totally agree, auth is ofcourse fine if later you come back and remember it but as a newbie may be I won't. Again this is for complete beginners like us. Once we are experienced and we know what we are doing, we sure can make up our minds about how we want to name things and so on. He had some advice towards me and the things I was struggling with and I just put them together in my own way for others. That's all.

Collapse
 
designeranna1 profile image
Designer Anna

Using Same Username across multiple distinct accounts is a Great Idea I always use to follow to stay productive.