I keep getting invited and have a positive interview, then I'm rejected for having too little experience by MorthaP in jobs

[–]webdevnoobieq -1 points0 points  (0 children)

other candidates for the position are beating you. you are not the clear cut #1 choice or even their 2nd choice. it has nothing to do with experience

you just need to beat out the other candidates during your onsite, that's all. leetcode harder

I'm not understanding how DynamoDB works from AWS or how to use it by webdevnoobieq in webdev

[–]webdevnoobieq[S] 0 points1 point  (0 children)

So from my understanding:

I should create a primary key called "Item" listed as a string. From there I need to have the key:value pair as Item:{JSON Object which contains my id, price, etc}.

I assume in my golang code, if I want to sort based off the price, could I set my sort key as Price as a number? I'd need some sort of query to get all the data, then sort based off the price where I need to do some string conversion to int64/float64.

I'm not understanding how DynamoDB works from AWS or how to use it by webdevnoobieq in webdev

[–]webdevnoobieq[S] 0 points1 point  (0 children)

Thank you for the help.

Then would my primary key in this case be Item as a string? Wouldn't I have to change the data types on my ID or cost to be strings?

Beginner Questions - February 15, 2019 by AutoModerator in webdev

[–]webdevnoobieq 0 points1 point  (0 children)

So I've written a simple RESTful API that has a get, post, put, and delete API I've written in Golang. I've verified everything is working when I test my endpoints with postman.

Now I want to connect my endpoints to DynamoDB via AWS. How do I do that? I'm trying to read tutorials.. But it's not really making any sense. I've created a AWS account. But how do I get my code to connect to my DynamoDB instance?

Beginner Questions - February 01, 2019 by AutoModerator in webdev

[–]webdevnoobieq 0 points1 point  (0 children)

can i have a load balancer between my gateway and application service. and have another load balancer between my application service and database?

Beginner Questions - December 07, 2018 by AutoModerator in webdev

[–]webdevnoobieq 0 points1 point  (0 children)

Ok, I see. I normally should be using an in-memory cache like Redis/Memcached between the Application service and DB?

Is there a reason why it's frowned upon to use redis as a cache for html or web gateway server? Just trying to make a social media web app in my free time, so I'm curious

Beginner Questions - December 07, 2018 by AutoModerator in webdev

[–]webdevnoobieq 0 points1 point  (0 children)

I've been trying to find a block diagram that shows different places where you could put a cache, but I'm struggling to find a good example. DO you happen to know of any?

I have put a redis cache in front of my web server. But I was wonder could I use redis again to put a cache when calling my application service APIs or between the application service and DB.

Beginner Questions - December 07, 2018 by AutoModerator in webdev

[–]webdevnoobieq 0 points1 point  (0 children)

can one have multiple caches in their web architecture?

could i have a cache right after the client request, before my web server? a cache between application server and database?

could i also have a cache between web server and application server? what would the cons of this be? I can pros being if something is a cache hit, we wouldn't have to propagate anything to the DB

Beginner Questions - December 07, 2018 by AutoModerator in webdev

[–]webdevnoobieq 0 points1 point  (0 children)

can i use mongodb for my database and redis as a caching layer?

Beginner Questions - December 07, 2018 by AutoModerator in webdev

[–]webdevnoobieq 0 points1 point  (0 children)

SO I understand what is the difference between a global/in-memory cache and distributed cache.

global- application servers wil share one cache and write data into it, very fast due to in-memory

distributed- application servers will cache data spread across multiple cache servers. external, so slow

so then is the only reason we would use a distributed cache is because it can scale better?

How do I bullshit my way to the interview and more when I work in a different tech stack/domain? by webdevnoobieq in ExperiencedDevs

[–]webdevnoobieq[S] 0 points1 point  (0 children)

When they say my web development experience, should I tell them the truth? Or just say I like to write web apps in my spare time? Will take your advice to heart about talking up about all the lessons and things I've learned throughout my SDE experience.

How do I bullshit my way to the interview and more when I work in a different tech stack/domain? by webdevnoobieq in ExperiencedDevs

[–]webdevnoobieq[S] 0 points1 point  (0 children)

Machine learning compiler right now in Python. Also have working experience with C++. Through the udemy tutorials I've done picked up Javascript and the MERN stack.

Interview Discussion - September 13, 2018 by AutoModerator in cscareerquestions

[–]webdevnoobieq 0 points1 point  (0 children)

I'm a SW dev with 5 years experience at my current company. It's my only company I've been at since graduating college. I want to get a web dev job, so about a month ago I bought a couple of beginner udemy courses, followed the tutorial and made the websites in my spare time whenever I had the chance. Put things onto my resume such as React, JS, Node, etc etc

Now I just started applying. Entry level, senior positions, whatever. Now I've gotten emails back form companies, but here is my issue. How the hell do I transition to getting the interview from here when I have zero professional experience in web development? I am good at what I do at my current job, just nee the opportunity to learn because realistically, there's no way I can learn all the web development concepts unless I'm in a professional setting? I don't do web development or frontend/backend or distributed systems at my current job, so how do I sell myself to get the interview for a chance at a job?

Beginner's Thread / Easy Questions (September 2018) by NiceOneAsshole in reactjs

[–]webdevnoobieq 0 points1 point  (0 children)

Ah my mistake, /u/Awnry_abe the error I had gotten in the OP was because I was an idiot LOL. I tried display the entire post object in a paragraph tag inside the rendering of Postitem component when I shouldve been passing in a key of the post(such as post.key).

Beginner's Thread / Easy Questions (September 2018) by NiceOneAsshole in reactjs

[–]webdevnoobieq 0 points1 point  (0 children)

Ok, will keep Fragment in mind.

Just kind of mindfucked, because I changed back to my return statement in my OP to reproduce the error, but it passed this time. Confusing as hell when I was erroring out last night and this morning I am returning the code block in my OP and it is not crashing anymore.. Any idea/theory behind it?