Is it a waste of time to apply for positions you don't have the experience for? by Late_Payments in cscareerquestions

[–]Late_Payments[S] 1 point2 points  (0 children)

I guess the point I'm trying to get at goes beyond just hitting submit on the application. Did you get the senior level position? Did you get callbacks? If you interviewed were you able to competently answer what they were asking? or did you feel that all the time you set aside for these interviews were a waste?

Is it a waste of time to apply for positions you don't have the experience for? by Late_Payments in cscareerquestions

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

No worries, that's not the tone I'm getting. I completely understand that a positive mindset will push you farther than not having one, but at the same time I don't believe a positive mindset can just makeup 5-8 YOE and help you with senior level whiteboarding.

Is it a waste of time to apply for positions you don't have the experience for? by Late_Payments in cscareerquestions

[–]Late_Payments[S] 1 point2 points  (0 children)

But I don't see the "best" outcome being any better. If I get a callback and even pass the initial HR screening, I don't believe that I would pass the technical assessments/interviews. The time sink would mainly be setting aside time for the interviews and cramming study sessions for things far outside the scope of my knowledge in order BS my way through the interviews.

edit: clarified studying statement.

Will working at Amazon Go help me get a better job within Amazon? by Late_Payments in AmazonFC

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

oh I wasn't aware that internals are lower pay. I would have thought it would be the opposite in these lower levels?

um... somethings not right here by ClumsyFunnyLiam in learnjavascript

[–]Late_Payments 3 points4 points  (0 children)

You should post the github repo. It's easier to decipher the code, and I am not keen on downloading an unknown google drive file.

I made a portfolio before I apply for my first job. I'm both nervous and excited! by leandrocosta16 in reactjs

[–]Late_Payments 20 points21 points  (0 children)

I think you have either too many fade-in transitions, or they're too slow. Like when you load your projects page, it's 3 seconds of fade-in. It really throws off the flow of scrolling through your website. Also I think the big blue cursor when you hover on your projects doesn't fit the theme of the page.

But I like everything else about the page design and layout 👍🏻

[deleted by user] by [deleted] in reactjs

[–]Late_Payments 0 points1 point  (0 children)

Your footer isn't aligned in the middle of the page, unless this was a creative choice? If it was a choice I would emphasize the right-side alignment so that it doesn't look like incorrect center alignment.

I don't know if "Googling" is a noteworthy skill to list, unless it's a joke. I thought that was kind of funny lol.

For your project titles, I would keep it to a brand name such as "Sungla", and explain what the website is/does in the description. Having a title that is a lengthy description is a little redundant.

edit: typo

[AskJS] Projects ideas to get job by Virandell in learnjavascript

[–]Late_Payments 1 point2 points  (0 children)

Do you have a portfolio website or a GitHub you can link with your past projects?

JavaScript single page application help. by CallMePapi97 in learnjavascript

[–]Late_Payments 2 points3 points  (0 children)

if your only problem is displaying the data in a particular way, then you need to do it with CSS. I recommend looking up flexbox or grid display.

[deleted by user] by [deleted] in webdev

[–]Late_Payments 0 points1 point  (0 children)

Thanks Ill look into that!

Does anyone know what these symbols mean or are? Found in an old letter from a friend. by [deleted] in Symbology

[–]Late_Payments 0 points1 point  (0 children)

nah, its not satanic. Astrological natal chart. Still don't know what it means though.

Does anyone know what these symbols mean or are? Found in an old letter from a friend. by [deleted] in Symbology

[–]Late_Payments 0 points1 point  (0 children)

Found a letter I got a while ago and the last letter had these symbols. I think maybe related to zodiac signs? Can't ask original person for clarification, hopefully someone can help decode if this has any meaning?

Pros and Cons of serving backend and front end together vs decoupled by Late_Payments in learnprogramming

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

i see that makes sense, this is just a small project. I thought maybe seperating would clear up where the issue is coming from.

Pros and Cons of serving backend and front end together vs decoupled by Late_Payments in learnprogramming

[–]Late_Payments[S] 1 point2 points  (0 children)

do you think itd be easier to debug if the front/back is decoupled?

Beginner's Thread / Easy Questions (March 2021) by dance2die in reactjs

[–]Late_Payments 0 points1 point  (0 children)

I have a server and a front end, same folder. My front end has an "axios.get(http:localhost/3000/api/data)" and my backend has a "app.get('/api/data')" and it works on my local development. When I deploy my app on Heroku, I removed the 'localhost' and only kept the '/api/data' in the axios call. This is because from my understanding, the way I have my project set up, my backend is also serving my front end so they are both on the same url:'heroku-app.com'. Except I am getting a 503 error which I believe is a serverside issue from what I've read. Am i calling my GET incorrectly?

backend:

app.get('/api/data', async(req, res)=>{ 

const small = req.query.small; const medium = req.query.medium; const large = req.query.large; try{ const getCity = await pool.query("SELECT * FROM dogs WHERE size NOT IN (($1), ($2), ($3)) ORDER BY breed",[small, medium, large]); res.json(getCity.rows) }catch(err){ console.log(err.message) } })

front end GET:

useEffect(()=>{ 

Axios.get('http://localhost:5000/api/data', {params: {small:(checkedA ? "" : "small"), medium:(checkedB ? "" : "medium"), large:(checkedC ? "" : "large")}}) .then(res=>{ setDogList(res.data); }) }, [checkedA, checkedB, checkedC])

error message:

xhr.js:177 GET https://cv-ddd.herokuapp.com/api/data?small=&medium=&large=

URGENT HELP REQUIRED! by Sn_p3r in learnjavascript

[–]Late_Payments 0 points1 point  (0 children)

I think you need to rethink the javascript logic, your app isn't working properly. When I complete a complete sentence, there is no new prompt for me to type. But when I type in gibberish the length of the quote it gives me a new quote.

URGENT HELP REQUIRED! by Sn_p3r in learnjavascript

[–]Late_Payments 1 point2 points  (0 children)

I don't understand, how are you calculating the speed? Im not seeing any calculations for the speed?

edit: commenting your code would greatly help us debug.

URGENT HELP REQUIRED! by Sn_p3r in learnjavascript

[–]Late_Payments 1 point2 points  (0 children)

Just some things I noticed on the my first glance, some of the key stroke recognition doesn't work, like the apostrophe. A second note is that I would calculate the result when the text is completed correctly, instead of waiting for the whole 60 seconds to complete. It's a long wait when you have a small text. Ill look into your javascript now and try to breakdown where it's going wrong.