Profile picture

Software Engineering Intern Career Development Videos, Forum, and Q&A

How A Software Engineering Intern Can Grow Their Career

An internship is a period of work experience offered by an organization for a limited period of time. In software, a software engineer intern tends to have stronger importance with more competitive pay and real projects to work on.

When should you take risks in early career?

Software Engineering Intern at Taro Community profile pic
Software Engineering Intern at Taro Community

My brother got an offer from Google and a series A startup. The startup has all the good qualities for a startup:

  1. Founder successfully built a company that IPO’d
  2. High talent density in a small team - 20 employees most with PhDs and undergrads from T5 schools. He’s also friends with the employees.
  3. Backed by a top VC firm (Benchmark, Accel, a16z, Sequoia, etc.)
  4. Brother’s skillset fully aligns with the startup’s needs.
  5. Brother wants to become a founder eventually, so this is great training for him.

At Google, he will likely work on ads - solid team but probably a heavily optimized product already.

My friends and family all encouraged him to do the startup, and he himself is also excited by the startup. However, startups are risky at the end of the day, and he’s worried that if the startup doesn’t do well, he won’t have anything to show for on his resume. Meanwhile, Google, while less interesting, can set him up for better opportunities down the line because of the brand name. Given how tough the job market is, having a good brand can really change things for him.

He performed a best and worst case analysis of the startup and here’s what he came up with:

Startup

Best case:

Startup IPOs and he becomes a millionaire. Can go and start his startup or anything he wants.

Worst case:

Startup fails and he’s out of a job, can’t find a job because he doesn’t have a brand on his resume

Google

Best case:

Gets fast promotion

Worst case:

Gets laid off. At least he has the brand on his resume so job hunting won’t suck

So my brother has been really torn about the decision. The startup job has perfect career alignment with his future aspirations, but its future is uncertain. Meanwhile, Google is the safer option, albeit more siloed. So should he take the risk?

By extension of this, when should early career take risks? YC (although biased) and other sources encourage early career people to take risks. From the best/worst case analysis shown above shouldn’t early career be the time to build career liquidity rather than take risks?

Show more
Posted 13 days ago
57 Views
2 Comments

How to make up for mistakes?

Software Engineering Intern at Taro Community profile pic
Software Engineering Intern at Taro Community

A few days ago, I almost broke production.

Our company doesn’t have any formal CI/CD protocols. When we ‘push to production’ that would mean testing code on our local computers, then going onto our single production machine, clone our changes, test on the production machine, then merge to main. The dev team was incredibly small, but this process started failing when more people worked on the codebase.

My manger strongly prefers merging one large feature all at once as opposed to merging changes bit by bit. Even though I pushed for the ‘one diff, one thesis’ approach, he pushed back on it. He would rather clone my entire feature all at once over making small changes.

A week and a half ago, I finished my main feature. My code successfully worked on the production machine, but my manager kept pushing back on actually landing the code to production. I kept pushing for my manager to push my code but he kept extending the due date. Now that I’m close to my internship, he is asking me to push code.

The issue is that and another dev were trying to push their features to production. The other developer went first since his feature was smaller, then it was my turn. When it came to merging my code, I made errors in resolving merge conflicts, which resulted in errors. I tried ‘undoing’ the commits by reverting changes (when I should’ve done a reset), which caused the commit history to become longer and more complex, making the situation worse. After rolling back commits, somehow even the old code wasn’t working.

My team and I are working to resolve the issue, but I was really upset throughout the whole process.  I’m frustrated at my own incompetence with version control, but I’m also frustrated with my manager for not listening to my suggestions, as I think this would’ve been prevented if I had integrated my code earlier and in smaller chunks.

My team knows that it was a version control issue (as opposed to a code issue), especially since I showed them on two different occasions that my code works.

How should I handle this situation? I definitely feel like I should apologize but how can I make up?

Show more
Posted 8 months ago
50 Views
2 Comments

What questions to ask recent new grads

Software Engineering Intern at Taro Community profile pic
Software Engineering Intern at Taro Community

My company is a mid-sized unicorn and they’ll be hosting an in-person gathering with some recent new grad SWEs (they have only worked at the company for 6 months) to talk with incoming NG SWEs such as myself. I’m wondering what questions I should prepare? I’ve thought of the following:

  • Logistics (living situation, commute, etc.) - it’s boring but I think it’s fair to ask since most new grads will be relocating for the first time
  • What would you have done differently in your first 6 months here?
  • What’s the most important thing you think everyone should know?
  • What does feedback with your manager look like? How is your relationship with your manager?
  • What are some things you think we should do beforehand to best prepare us for the job?
  • I know that the company has a very customer-centric engineering culture. Do you recommend us to spend more time prioritizing talking to customers or spending time doing engineering work?
  • (Company prides itself on fast career growth but also doesn’t have leveling) How has your ownership grown over the time you’ve worked here? Have you had the chance to demonstrate leadership? What metrics do you use to measure career growth?

Is there anything else that I’m missing? The company promotes SWEs directly to tech leads/managers and doesn’t have leveling. Ideally I’d like to ask questions to get a better understanding of how to get to these positions fast. What types of questions would give me an understanding of how to "play the game"?

Show more
Posted a month ago
50 Views
1 Comment

Getting over integration/end-to-end testing ‘fatigue’

Software Engineering Intern at Taro Community profile pic
Software Engineering Intern at Taro Community

Every time I complete a project (regardless of setting), integration (or end-to-end) testing is the task I least look forward to. In my mind, I’ve probably spent weeks building and individually testing each component, sometimes testing 2 or 3 components simultaneously. By the end of the project, I feel tired and just want to work on something new, so I rush to the finish line and call it a day the moment I get all my components working together.

I’ve seen the course on creating a test plan. I tried implementing this, but as mentioned above, by the time I’ve gotten to this stage, I’m so fed up with the project where I just write a couple of basic tests and tell my boss I’m done.

As much as I have an icky feeling shipping something I don’t know is fully working, I also feel so tired and just want to move on to the next thing.

One solution I tried was using automated tests (sort of like TDD to a certain extent) - I’d set up some expected behaviors at the start of the project and run these integration tests at the very end. It’s great if it works - making it automated significantly reduces friction of running the tests, and you get to ‘eat the frog’ by coming up with a more comprehensive set of tests at the start.

The bad part is it only works if you can get automated testing to work. Most times integration testing gets tricky to automate, especially if you can’t mock out stuff like networking code and databases. Automated tests also take time to maintain. As a result I tend to forgo automated testing.

A naive approach is to apply my strategy but instead of doing automated testing, just do it manually. The issue is that it feels painful having to verify correctness manually. And it’s especially discouraging if you manually verify your code to be wrong.

So what are some solutions that can help me get over that last mile? Any suggestions for some low friction ways to set up tests without using automated testing?

Show more
Posted 9 months ago
48 Views
1 Comment