Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
LombArd4945y@AngryDev9981 perhaps. Personally I don't like JavaScript that much. Used it loads, just never a fan. I expect to have to do JavaScript, and that's fine. However, as a python developer I expect at least some lines of python, but the project I'm working on contains none at all
-
Angry15705yThis happens a lot, I think. About two years ago, in my previous job, I was hired as a Go developer but ended up doing PHP Spaghetti-plus-Zend-fucking-1 work.
Just have to muscle through it, I guess.
I eventually started building Go apps 6 months in when management finally decided it was time to port our products to some nicer stacks. -
It doesn't matter if they're good or not. What matters is that he was hired as Python Dev (in theory he should only use Python). I'd two friends that were hired as Python Devs to do only JS, they eventually quit the company. That's bad for code quality, that's bad for your career, that's bad for the client.
-
Just started a job a few weeks ago with a back-end Java Developer
who was hired as a software engineer. Never did ANY frontend (worked on an IVR app) They told him he would be doing React, today I helped him debug a simple CSS issue but it frustrated the hell out of him for hours. I on the other hand am struggling big time trying to figure out promises and api calls. -
SamuWool05yDid you ask them what they are playing at? Cannot understand how stupid some people can be (them).
-
@katbreitin Promises, in basic terms, tell a process that they are gathering information, and when they are done, they return the info they gathered. A simple example is:
async function sleep(ms) {
return new Promise(setTimeout(ms, ()=>{}))
}
console.log("0 seconds passed")
await sleep(3000)
console.log("3 seconds passed")
Great, hired as a python developer, only doing JavaScript
rant