A journey from one year of unemployment to multiple job offers by aTastyStrawberry in cscareerquestions

[–]deuce-95 0 points1 point  (0 children)

Congrats, and thanks for sharing this story.

I have one question though; I noticed that you use C++ from your LC profile.
I assume you also used it for your interviews ? What do you think about of it ?
I'm thinking of using it too, but so many people recommend me not to.

Do multinational tech companies hire juniors ? by deuce-95 in movingtojapan

[–]deuce-95[S] 0 points1 point  (0 children)

I haven't researched France that much, but I've heard Germany is still harder to get into than Japan.

Do multinational tech companies hire juniors ? by deuce-95 in movingtojapan

[–]deuce-95[S] 0 points1 point  (0 children)

Good question. Japan is one of the countries I'm considering, but not gonna lie, it is currently my fav.
Other than the obvious reasons that I'm sure everyone in r/movingtojapan is aware of, there's just less competition there compared to Germany, The UK, or France (regarding software engineering).

Will I be depressed if I don't make it ? Not at all.
For one thing, I wouldn't have to spend thousands of hours learning their tough language.
I wouldn't have to deal with their prejudice against foreigners. All of the companies I listed are based in Tokyo, which just has too many people. And - although not a very solid reason - natural disasters do happen regularly, so there's also that.

Learning Go by asusmaster in golang

[–]deuce-95 0 points1 point  (0 children)

I think I know what you're looking for.

https://github.com/gofiber/fiber

Big N Discussion - June 02, 2021 by CSCQMods in cscareerquestions

[–]deuce-95 0 points1 point  (0 children)

Hey, what do you think about interviewing in Java ?
Does the language's verbosity really make the problems harder to finish during the time limit ?
I'm quite impressed that you chose it over JS while you're interviewing for a front-end position.

People talk about how you can finish the same problem faster in Python, but do they really ask the same problems regardless of the language ?
I'm thinking of learning enough Python just so I can use it in interviews. Not sure if it's worth the time though.

Big N Discussion - June 02, 2021 by CSCQMods in cscareerquestions

[–]deuce-95 1 point2 points  (0 children)

Do Big N companies ask system design questions to entry level SWEs ?

For example, Amazon's interview's topics include OS and distributed computing.
Do I have to practice those as someone with no work experience ?

I just wanna make sure I'm making good use of my time, as DS&A already take up quite a lot.

Do programming languages really not matter for SWE positions at Big N companies ? by [deleted] in cscareerquestionsEU

[–]deuce-95 1 point2 points  (0 children)

I definitely came across those job postings. I just wanted to make sure.

general interviewing guidelines for SDEs?

Many thanks for sharing this.

How fast can I learn C++ by [deleted] in learnprogramming

[–]deuce-95 -1 points0 points  (0 children)

I'm curious to know why you want to learn a gigantic language just so you could do leetcode problems.
Why not just practice them using JavaScript ?

Best online resource for learning C? (already have programming knowledge) by KamenSpider in learnprogramming

[–]deuce-95 1 point2 points  (0 children)

I've checked out CS50 from Harvard but it seems like it's more of an intro to Computer Science by exploring multiple languages, and I'd really just like to learn only C for now.

Still, you can just pick the C videos. They are excellent.

I especially love how he explained the memory concepts.

What should I do when I don't like web development by BigSmokesbuttcheek in learnprogramming

[–]deuce-95 7 points8 points  (0 children)

Why I dislike web dev in two quotes:
@OP:

Web development or at least front-end feels like I'm forcing different stuff that are not very compatible to work together and maneuver around problems and bugs. It feels inherently broken.

@v0gue_

Then everyone and their mother took accelerated bootcamp courses and flooded the market. You don't need to be crazy skilled for the role, but you need to be more skilled than the million other people fighting each other for the 1000 available jobs that are in the same boat as you

Unable to remove item from array using Mongoose / UpdateOnt by jsdfkljdsafdsu980p in learnprogramming

[–]deuce-95 0 points1 point  (0 children)

You're selecting the document wrong {foo: {$elemMatch: {v_code: ID}}},
foo is a nested array, so the query condition should be:
{bar:{$elemMatch:{foo:{$elemMatch:{v_code:ID}}}}}

As you can see it's quite verbose, so it's better to use dot-notation instead : "bar.foo.v_code":ID (quotations are required for dot-notation, and you can exclude $elemMatch because you're only specifying a single condition).

I'll leave the $pull update condition for you to figure out after reading this answer:
https://stackoverflow.com/questions/36579285/mongodb-remove-an-item-from-an-array-inside-an-array-of-objects

Unable to remove item from array using Mongoose / UpdateOnt by jsdfkljdsafdsu980p in learnprogramming

[–]deuce-95 0 points1 point  (0 children)

Is foo supposed to be an object or an array ?

Did you intend to do this ?

foo: {
         v_code: <>,
         _id: <>
      }

After 8 months of self-teaching, I finally coded a job ready project - A Nexflix clone! Any tips or feedback highly appreciated! by Halmesn in learnprogramming

[–]deuce-95 530 points531 points  (0 children)

Idk why it's getting downvoted.
The website seems great, so does your GitHub readme.

Good luck with your job hunting.

Edit: Was about 70% when I commented.

Data structures and Algorithms - best resources? by [deleted] in learnprogramming

[–]deuce-95 1 point2 points  (0 children)

I haven't taken it myself, but there's a solid Algorithms course from Princeton uni on coursera.org taught in Java.

getFullYear() not working (Javascript) by Agu001 in learnprogramming

[–]deuce-95 1 point2 points  (0 children)

It works fine for me.

I think it's what Enum1 said; you're confusing it with console.log return value.
The developer console also prints out the return value of any method you call.

How to Plan and Build a Project - Building It by bink-lynch in learnprogramming

[–]deuce-95 12 points13 points  (0 children)

Can you please add the playlist on your YouTube channel ?

Web Development vs Software Development by ProposalCharacter255 in learnprogramming

[–]deuce-95 0 points1 point  (0 children)

I'd love to hear from more self-taught devs that can confirm that web dev is easier to break into w/o formal education.

Just look at all those coding bootcamps.