Skip to main content

My journey from graduate to Python Developer and mistakes I made in the same


Let's Get Started...

                                                                                                                              

     What you should expect from this blog...

    Mistakes that are made by me throughout the course of Computer Engineering.

    • How I should avoid those mistakes with appropriate decisions.
    • Why I chose python as my primary software developer tool.
    • How did I learn my first programming language?
    • Top myths about Python programming language.
    • How I got my first job?

    Note: This blog going to be big, I divided it into different parts, In this blog, I only shared what are the mistakes made by me and how you should avoid them. so in this blog 1st, one of those above bullet points is going to be covered 


    Mistakes that are made by me throughout the course of engineering and the cost I paid for that.



    1. My first and big mistake about my computer engineering that cost  1.5 years of waste of valuable time. When I already know that I'm gonna take my admission in computer engineering, then I should spend some time before/after taking admission on topics related to as follows:
      • What is computer engineering?
      • What are the possible career paths in the same?
      • What should be learned first to achieve those career goals?
      • How to manage time between academics and my career goals? 
              I hope if the current reader of this blog just started his/her journey in computer Engg/science. Then you can ask the above questions to google for more help :)

          2. Not managed to take at least a decent laptop/computer at the end of half sem. :(
                I know some of you have poor financial conditions, but you should aware that you're in a computer engineering course. you should at least see some youtube tutorials of computing so that later you can perform the same in college practicals if you're unable to manage to get a decent laptop/computer.
    It will cost you scary confusing things that you're about to face after some time.

          3. Not practicing if things are hard to grasp...
            "Life has no limitations except the ones you make."
                --Les brown
            If things are hard, try to make them easier for instance say you have a topic that was hard to understand, then don't put a limit to your ability by sitting quiet doing nothing, try to search that in another platform maybe you can find the one that matches your ability, and you can now grasp the thing very easily.

          4. Losing confidence when you see your academic scores.
            Don't compare scores with your friends, maybe you are not so expressive in writing answers in papers but you know things practically very well. so don't lose your confidence try to grasp the concept practically.
            Numbers can't decide your ability, but the knowledge/code does. ;)


          5. Taking coding/Programming lightly...
                Note this Programming is like a gym, if you do it daily then only you see the final result.
                I made the mistake after learning how to code, and not practicing it daily.
                Today  I'm late in achieving my first job, just because of this mistake.
            I repeat again programming is like a gym, you have to practice it daily to achieve results faster.


    I hope this blog will gives a positive impact on your journey and helps many upcoming engineers or developers, if you found this helpful give me a like as your feedback & share with your friends, and stay tuned for upcoming parts of this blog it's gonna be very interesting and helpful with many DO's and DONT's.
        


    Comments

    Here are some posts you should view for more information.

    How to install Django step by step easily

      How to install Django in windows easily! The step-by-step process of how to install Python and Django in your Windows machine. Are you excited? Let’s go... Step 1: Check if python3 is installed already. Inside cmd where python (It should print paths to the python3 where it’s installed) Step 2: Install Python in windows if you don’t have one . Search python on google, or you can click here for the official python website.  Hover your mouse on the Downloads section and click on Windows.  Now you should see the python releases page for windows, click on your desired python3.x version, recommended version 3.7+ Scroll down ⇾ click on Windows installer based on your system architecture (You can check your system architecture here ). Follow the guidelines of installation setup, while installing make sure you’ve checked “ Add python to path ”. For the full process of installing python click here . Step 3: Check python has recognized in your windows command prompt. Inside cmd python --versi

    How to Code Properly | Best Practices

      How to Code Properly?  | Best Practices This blog c overs the best practices that should follow whenever you code.   Ask yourself , do you care about your code readability, when it works fine? I think most of us NOT including me but, I realized later, how important readability of code is.    This article helps you follow best practices in your coding career. So without any delay let’s dive in…   R eadability of Code is the universal aspect in the whole Computer Programming.    Being a Programmer doesn’t mean you just write the code that works fine, but it should be written smartly and looks pleasantly! to eyes, so that your team or people that work with it afterward, can understand it easily.     ➤ Consistent Indentation: In most of the programming languages, spaces and indentations do not affect the function or method, but it compromises with readability, edit, and understanding of code.  So the rule of thumb is to be consistent with your style.   If you are using an IDE, it is re