DEV Community

Cover image for How I got my first job as a developer by making simple projects seem big
Julia πŸ‘©πŸ»β€πŸ’» GDE
Julia πŸ‘©πŸ»β€πŸ’» GDE

Posted on • Originally published at yuridevat.hashnode.dev

How I got my first job as a developer by making simple projects seem big

This article was originally published on Hashnode for the 4 Articles in 4 Weeks - Hashnode Writeathon. It was featured on Hashnode and daily.dev. Find the link to the original post below πŸ‘‡.

How I got my 1st job as a developer by making simple projects seem big

Get your first dev job by focusing not only on technical skills but business and soft skills as well. Gain industry knowledge, tools and technologies.

favicon yuridevat.hashnode.dev

I am a strong believer that being perfect at technical interviews and being able to write high-quality code are not the only ways to land your first job as a developer.

Instead of focusing solely on technical skills that I knew I couldn't acquire (and very likely still haven't developed πŸ™Š) in just one year, I focused on business and soft skills to show what value I could bring to the company.

And that has paid off.

Table of contents

  1. What to gain from a single project
  2. How to write about this project in your CV
  3. Talking about the project
  4. My advice to all aspiring developers out there

Hello, my name is Julia and I'm a self-taught front-end developer in my thirties who switched career into tech after studying Japanese and musicology while working part-time at a casino.

In this article, I want to share my experience of how I got my first job as a developer. I'll demonstrate the skills I just mentioned using a project I think we've all developed: A calculator.

1. What to gain from a single project

I often read that a calculator should not end up in your portfolio because it is simple and not unique enough, and maybe they are right. But a project itself can be so much more than just the code.

Applied skills you can show and demonstrate during the interview and convince the interviewer that you know so much more than how to write code - which, as we all know, can be googled at any time, while business and social skills cannot.

To show how important other skills are besides programming, I created a simple calculator using JavaScript.

Hint: If you want to add the calculator to your portfolio, you should definitely add more features, such as

  • decimal numbers
  • that the display of the current number stays on the screen when the user clicks on an operator
  • a restart when you click on a number after the last result without having to use the delete key
  • or all the already clicked numbers and operators in small format above the current value to know what has been calculated so far

Select 0.5x in the middle of the bottom row to display the calculator completely.

Here is the link to the GitHub Repository.

You will gain skills in industry knowledge as well as tools and technologies such as

Industry knowledge

  • Project management
  • Time management
  • Agile methodologies (e.g. Scrum)

Tools and Technologies

  • HTML/CSS/JavaScript
  • Git Version Control
  • GitHub
  • Accessibility
  • Testing
  • Hosting (e.g. GitHub pages)

That's quite a lot, isn't it? Now that you know what you have achieved, you need to sell it in a professional way.

But first, I want to show you how to present your project on your CV.

Then I'll show you how I would use the above terms during an interview to make the project, how I work, and myself seem professional and valuable for the job.

2. How to write about this project in your CV

Project: Functional Calculator (View on GitHub)

  • Built a functional calculator that not only does basic calculations, but ... (anything it can do beyond that if additional functionality is added).
  • Used HTML, SCSS, JavaScript, hosted on GitHub pages to run the app.
  • Used Git for version control, wrote tests with Jest and tested for keyboard and screen reader to be fully accessible
  • Worked with agile methodologies to track progress of the project by using GitHub Projects: created a project, created and labeled issues, worked in sprints, held sprint reviews and retrospectives, wrote documentation (readme)

Skills: HTML Β· SCSS Β· JavaScript Β· Git Β· GitHub Β· Jest Β· a11y Β· Scrum

By presenting my simple projects in this way and talking about them in a professional manner, I was able to not only convince people with my CV to get an interview in the first place, but also land a job quite soon after I started looking for a job.

For more advice on how to create a promising CV check out my article πŸ‘‡

3. Talking about the project

Let's say the interviewer asks you about this particular project during the interview, something like this:

Interviewer: Can you tell me how you created this project, what you started with, and walk me through the development process and your code, sharing your thoughts?.

I would answer something like this, share my screen and show the project and the parts I am currently talking about on GitHub (and I actually did so during my interviews):

I have tried to be as brief as possible, mentioning only the most important points, and writing in a conversational style. I've also highlighted all the words that make you look more professional because you use them.

"

At the beginning of the project I was thinking about the whole web development process, architecture and setup and how to track progress to ensure a finished project in a certain time. Of course, that seems a bit of an overkill for this small project, but I wanted to get used to a real development process in a company in a scrum team, the way it actually works (or at least that's how I imagine it), even if I'm a one-man team now.

And I thought the best way to do this is to pretend that this calculator should become a production-ready application that has to go through the whole web development process.

I chose to build the project using HTML, CSS (for now), and JavaScript. To dive a little deeper into SCSS, I later updated the code and created some mixins to familiarize myself with it. Of course, SCSS is pretty much overkill for this particular project, but I did it for practice because I often see in job descriptions that SCSS knowledge is required.

I also thought of using TypeScript because that language also comes up a lot in job descriptions, and I may add it to learn the language since I've never used it before. Even though I'm not familiar with TypeScript yet, I know it's a safer way to program than vanilla JavaScript because of its types, etc. (to the reader: you should talk about everything you know about TS at this point). And it's also a good exercise to get me more comfortable with reading documentation.

Normally I would use CodePen for a small project like this. I think online code editors like CodePen or CodeSandbox are great tools to create a small project quickly and see the output immediately. But as I said at the beginning, I wanted to create the calculator in a real environment. That's why I chose GitHub to do it.

I know there is another great tool called Gitlab that is often used by companies, but I personally prefer GitHub, mainly because of its community, but also because there have been big changes recently.

So I use GitHub to manage git version control, which I know is used to track everything that happens with code. From what I've heard from other developers, it's common for there to be a master branch and for developers to create their own branch from it to work on their problem, and when everything is done, they create a pull request to merge their branch into the master branch.

Since I wanted to practice some common git commands, I did the same on this project. For each issue, I created a separate branch, wrote the code, and when I was happy with it, I created a pull request before merging it into the master branch.

The git commands I used were for example: git checkout -b my-branch, git commit -m "what did I do", git push, git pull, git merge. I know there are many more commands, but I guess I never had to use them due to the size of the project and the team. So since there was always only one branch merged into the master, most likely there were no conflicts. But I am sure I will use more advanced git commands properly.

For the folder structure of the project, I decided to create two folders (or three when tests were written), one for the assets, i.e. the images, and one for the source code. The bigger the project gets, the more folders and the deeper the structure will be, I think. I am very excited to learn how to think about architecture and design system in a real project. I find this way of thinking very interesting.

As far as I know, there are small teams in a company that work together on a project. And as I said earlier that there are topics that are created, and each developer takes a topic that they work on. And the teams work in an agile way, like scrum, which I find very interesting, the whole scrum framework. So I imagine a daily meeting of about 15 Minutes where everybody briefly talks about what they achieved yesterday and what they are going to do today.

I wanted to create that kind of situation for myself as well. I thought the best way to do this is to create a project and issues that GitHub provides. I know there is a tool called Jira often used by companies that allows you to create the whole project and issues and sign developers up for issues.

I think GitHub project is a very good tool for project management, and if I understand the process and function here, I can surely understand Jira quickly.

So I created several tasks, like project setup, writing HTML for the calculator, creating a design using a design tool called Figma (I guess in a bigger team there are designers to do that and I need to convert the design to code, but since I'm a one-man team I did it alone), converting the design to CSS code, adding functions to the calculator, tasks like that.

In my self-study I often see the topic of web accessibility and how important it is. So I wanted to make the app accessible by using only colors with enough contrast. I also made sure that the calculator can also be operated with the keyboard only and that the focus is displayed correctly.

I kept the default value for the outline, but I often see companies use their primary color to display the outline when it is in focus. This makes sense to me, depending on the colors of the app I guess.

There is an extension called Lighthouse that you can run on the project that shows how accessible the site is, or how good the performance and SEO is. I tried to get 100% in each area. But I've heard that even if you achieve 100% in accessibility, it doesn't necessarily mean that the website is really fully accessible. Right now I don't know that much about it, but I hope to do so in the future because I think it's an important topic.

I thought about how long it will take me to complete each task and the project as a whole, added milestones, labeled the items like improvement or new feature and assigned them to me. The GitHub project is a really good thing, providing an overview of all the issues. I guess in a larger project there are a lot more labels, like bugs, defects and more.

I've heard that in a project there is usually a sprint of about two weeks, where the team has to complete a certain number of issues. And that there are meetings like a sprint review or retrospective where the scrum team talks about how things went in the last two weeks, or where they present the completed issues to the stakeholders.

Even when I didn't have stakeholders or such a long development process, I thought about what went well or what I could improve on my next project. I found that I often underestimated the time. I thought this issue would take me about 20 minutes, but it actually took me 1 to 1.5 hours. That was surprising for me. But I will do a better job of estimating the time for an issue in the future after noticing that.

You can also set the project style, for example to Kanban. Like a typical to-do list: Which to-dos are open, what am I doing right now, which to-dos are done. This helped me keep a good overview of the progress of the project.

I also wrote some tests for the project (to the reader: no tests are written so far for the project. But that does not necessarily mean that you cannot talk about testing at this point). I know that there are many tests, such as unit tests, integration tests, end-to-end tests that are used in larger projects. And I've also heard about a lot of automated tools, like preventing someone from committing their code because the message doesn't start with what the company suggested, or preventing merge if no senior has reviewed the PR.

I'm really looking forward to working on a big project where I can see automated testing like this in real life. It's really good for code quality, I think.

I also hosted the project on GitHub so others can see my project and try it out. I also added a readme file where I describe the project in detail, add a screenshot and show how others can use my code too. I added information in the about section of the repository and added tags so others can find the project. And the link to the live preview here and in the readme file.

I think it's important to use a tool to its limits. There is so much you can do on GitHub to make your project stand out in a professional way.

Now let's take a look at the code. In the HTML file, I tried to use different meta tags for SEO reasons, which means that my website can be found more easily, and I set a viewport to ensure good use on mobile devices as well.

I've divided the code into sections for each row in the calculator, which makes it easier to use CSS grids later.

For SCSS, I saved the color, font, gradient, and border values in variables to make them easier to use. This is done so that if you want to change the base color, for example, you only have to do it once and not for every class you use the color in. In CSS you can also store colors in variables.

I've also used mixins that allow you to create a basic style that is then adjusted for certain uses. I put the values in alphabetical order so it's more readable. This prevents repetition of code. But of course, as I said at the beginning, CSS would have been perfectly fine for this size of project. But I learned a lot about SCSS, which is really helpful.

Now let's take a look at the JavaScript code. First, I created a function to differentiate whether the user clicks on an operator or a number to decide which function to call. In the case where the user clicks on an operator (or symbol), a switch statement takes over the function.

I chose the switch statement over the if else statement because I think the combined last switch (whose functionality is handled in a separate function called flushOperation starting at line 64) is more readable that way. At the end, I added the eventListener functionality to the buttons.

And that's it. If you have any more questions about the code or the web development process, please let me know.

"

That was a lot to talk about on this simple calculator, don't you think? And so many things can be added, e.g. talk more about testing, more about GitHub automation, meta, SEO, accessibility, or topics you are more familiar with than I am here.

For more information about development processes check out my article πŸ‘‡

I hope you got a sense now of what all is involved in the development process. It's not just about code, there are so many other things you can talk about, and maybe like me you feel much more comfortable with those topics than talking about code.

Also, don't wait to be asked certain things to show off your skills and knowledge. Because the questions may never be asked, or asked the way you hope to be asked.

4. My advice to all aspiring developers out there

Don't focus on code alone, because most of the time in your job you will be googling for a solution to your problem anyway, or talking about concepts and possibilities with other developers. Focus on how to solve problems, on the mindset of how to develop a product (from the beginning of planning, to the development itself, to finishing the whole process), on business and social skills.

Also, find a niche, something you are good at, and focus on that as much as you can (like I did with accessibility and UX design as a front-end developer). There are so many programming languages, so much to learn. Finding a job in tech means going on a lifelong learning journey anyway.

Be aware of your skills and talk openly and honestly about your strengths and weaknesses, what you know and don't know, and how you would handle a situation if you were unfamiliar with a subject. This will help the interviewer get an idea of who you are and how you would fit into the team. There are a variety of positions on a development team, so there will definitely be a place for you.


Thank you

Thanks for your reading and time. I really appreciate it!

Top comments (25)

Collapse
 
wadecodez profile image
Wade Zimmerman • Edited

I think a calculator app is best for first projects. Once you are comfortable, I think you should move onto other projects to get more experience with unique problems.

What tools you use on your projects really comes down to what problems you are facing. If your personal projects start to grow into something with stakeholders then that is when I would introduce scrum and testing. But to each their own.

This kind of helps save your sanity, and it helps you develop your project's story. That way when you have another interview, rather than saying you used X because everyone else does, you can say you used X to solve Y problem.

Collapse
 
joelbonetr profile image
JoelBonetR πŸ₯‡

While I agree, don't disrespect calculators, they imply intrinsic difficulty as dealing with numbers, specially floats is not something easy in CS. Also you can keep adding features to it till you get a full fledged calculator with different modes (scientific, graphic, standard, programmer...) or to work with money, temperature etc etc

Check the Windows calculator options as example, they add updates to it now and then 😁

It's also funny because I also did one:


Which has issues and it's in no way a production-ready thingy (e.g. uses eval() and has some UX issues and tones of room for improvement).

Also @yuridevat neither your calculator nor the mine one are compatible with the row of numbers below function keys, spread a bit of love to us, TLK keyboard users! πŸ˜‚πŸ˜‚

Collapse
 
yuridevat profile image
Julia πŸ‘©πŸ»β€πŸ’» GDE

Hehe yes totally agree on that.

Collapse
 
plusnaija profile image
PlusNaija

what really should be put on portfolio I am not in the position to judge, I am just a student after all who is still eager to learn more.. for mine i just picked the ones i thought wouldd be best, projects I made just because I got an idea and just felt like doing them. Here is Awesome πŸ‘ website Big Brother Naija

Collapse
 
windyaaa profile image
Windya Madhushani

Nice post.

Collapse
 
yuridevat profile image
Julia πŸ‘©πŸ»β€πŸ’» GDE

Thank you.

Collapse
 
pizofreude profile image
Pizofreude

I was hoping it would be a scientific calculator like casio fx-570CW. Oh well :)

Collapse
 
yuridevat profile image
Julia πŸ‘©πŸ»β€πŸ’» GDE

You've just created a new challenge for yourself. ;)

Collapse
 
zoppatorsk profile image
Zoppatorsk • Edited

I have never done a calculator and probably never will, I just find it boring cuz there is more fun projects to work with... haha.. but that is just my opinion.

I can give some thoughts on it though after just testing it for few seconds..

Can't input things with keyboard, for a calculator I think this really should be possible.

Can't input decimal numbers but calculator can show decimal numbers... this is really a basic function.. it's bad if I can calculate things in my head that the calculator can not even calculate... ;)

Layout breaks if input long number... input something long and the buttons will start moving outside "the calculator", ie outside the wrapper

broken_calculator

Edit: fixed some really broken sentences.. ;)

Collapse
 
yuridevat profile image
Julia πŸ‘©πŸ»β€πŸ’» GDE • Edited

Thanks for your comment.

The calculator is only for demonstration purposes. It's all about the stuff around. I'm sorry if that didn't come across to you in the article.
Of course, I sincerely hope that people take other projects for their portfolio, as I mentioned in the article, and not this calculator here. ;)

Collapse
 
zoppatorsk profile image
Zoppatorsk

Yes, I understand that.
It was just some ideas for improving it.. many times it's ez to forget about what things will happen for example with the layout and deal with it if inputting long stuff.. I know all too well.. happen to me often ;)

When it comes to what shld put on portfolio I am not in the position to judge, I am just a student after all.. for mine i just picked the ones i thought wld be best and yeah, it's projects I made just because I got an idea and just felt like doing them. Here is my portfolio

Collapse
 
guithomas profile image
Guilherme Thomas

Really liked that you talked about accessibility even at a beginner project level. It is definitely something that cannot be ignored and sounds great in an interview.

Collapse
 
yuridevat profile image
Julia πŸ‘©πŸ»β€πŸ’» GDE

Your are so right!

Collapse
 
plusnaija profile image
PlusNaija

That is very amazing I did my PlusNaija

Collapse
 
andrewbaisden profile image
Andrew Baisden

Another great article you are really showing your experience and progression with the projects that you work on.

Collapse
 
yuridevat profile image
Julia πŸ‘©πŸ»β€πŸ’» GDE

Thanks for you comment Andrew.

Collapse
 
dailyr profile image
Daily

Very comfortable expression, thx a lot , Julia

Collapse
 
decker67 profile image
decker

Nice post.

Collapse
 
yuridevat profile image
Julia πŸ‘©πŸ»β€πŸ’» GDE

Thanks.

Collapse
 
msiame1 profile image
msiame1

Very informative post. Thank you

Collapse
 
yuridevat profile image
Julia πŸ‘©πŸ»β€πŸ’» GDE

Thanks Steven, really appreciate it ☺️

Collapse
 
yuridevat profile image
Julia πŸ‘©πŸ»β€πŸ’» GDE

Glad you find it useful Nhung ☺️

Collapse
 
isjoesmith profile image
Joe Smith

Great post Julia, thanks for sharing this!

Collapse
 
yuridevat profile image
Julia πŸ‘©πŸ»β€πŸ’» GDE

Thanks Joe.

Collapse
 
murray__bauman profile image
Murray Bauman

I feel really happy to have seen your webpage and look forward to so many more entertaining times reading here. Thanks once more for all the details Cincinnatiwire