Details
-
AboutI'am still human
-
SkillsAngular, NodeJS
-
LocationBandung
-
Website
-
Github
Joined devRant on 5/10/2020
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
-
For all the people or anything that can take credit from others, specialy to someone that only make just 1 line change from "staging" to "prod" then get promotion and sallary raise, because some important people are watching.
Hope you die soon or wait I'am gonna make you die slowly while read and fixing my code.2 -
I love devRant, show new prespective and many related story around me and my job.
For me devRant is like medicine, help me smile and make my good mood sometime.
But, also like medicine I only open the app on spare time or when I need it.
I just curious why so many people so addicted to this, also I see some user maybe like 90% exist and continously comment on every rant that I open.
Maybe our reference/priority is different, I prefer playing game mostly.
Well that what I think, just random spawning before go to sleep mode.13 -
Before get get source code for freelance job, the person who cantact me say the job is to continue the project for some update and tweak.
The UI from design is beautiful and he gave good explaination for the project and the update, continue to conversarion, negosiation and deal.
but he is not the IT guy and also the project is not his work or something that he do previosly. All the person who work on that project is already leave and not contactable.
And here that I get:
- source code
- domain cred.
And here what's missing:
- documentation
- .env file
- db backup / old db cred.
- server and hosting cred.
And after some hour of learning the code I find out that:
- latest commit was 2 year ago and different from production version.
- most of the branch is RnD.
- the code have many wtf/minute lol
And for now I still re-negotiate with the person who give me the project with 2 suggestion from me.
- continue with this code with condition, he need to search for the missing part at least backup db or documentation.
- recreate the project with more time
And here's one funny part of the code.
randomNumber(){
return 5 // this number was choose by dev team at random
}1 -
Have 1 urgent, 2 very urgent and 1 super very urgent task at the same time, and 3 man arguing in the back of my chair which one should I do first.
Me: waiting and working the some little cosmetic for the next sprint1 -
Do you know that VSCode have hidden feature by pessing "ctrl + a" then "w" then "ctrl + w"
And that feature is working on every programming language.6 -
I working on download function feature and full of 8 hour been debuging in local to find out why the download is notworking (this is not the main issue).
And what I found there. All the problem is clear, and I get it know, I've been using fs to save the log (you know download data is big and it's hurting my eyes even when using console.table). And using nodemon for running the project.
Image is just illustrator lol4 -
When someone in my family start a wedding ceremony and I being invited to help, but I don't have any other skill other than googling javascript. So in that time I just realize I don't like being human because I'am uselless, better be born as mic stand.2
-
Sometime I need to eat and write code at the same time..
And when that happend I bite my spoon with my hand busy at the keyboard.
The question is why I write some text here when I know I can sleep longer..3 -
What I hate the most.
Someone that always touching my screen and leaving their fingerprint.
And someone move my laptop without raise it, make the rubber on the bottom of my leptop fell off.
Anyone have solution for this kind of problem.?7 -
I working hotfix in prod, small fix but fatal it's about environtment and proxy thing, and I forgot to write in the decumentation, 3 month after that I leave the company.
After some week the PM contact me and tell the developer create some error and make the production down, and the whole team is not going home for 3 days working on that issue.
He offer me some money for helping with the issue, I aggred and they give me some account for access the environtment and code.
I can fix it in less than 15 minutes, but because they cannot fix it I working it for 6 hour, and after that I explain the step for solving it, they seems really glad that I can solve the issue and now the prod is working again..
Now In my opinion, I know I was not a good person, and what i've done is maybe not acceptable.
But for me as a developer, as long I have the credential and access I can read(guessed) how the flow goes and know the environtment that my company use without they explain it or some googling definitly will help right.?
So, what you say about it, What will you do if you got into my situation.?10 -
My team still use console.log for debuging instead of breakpoints, I don't really care about it when the code in development, but I really hate it when it goes to production.
I search in the project and found total 231 of console.log with allow console rules above it, I mean why don't you just delete it after the code is working, it's not that hard rather than to delete all console before goes to prod.6 -
I got more on salary last month and I not complaint about it,
But now my salary got reducted, should I complaint.?4 -
They ask me if I have girlfriend(s), I speechless for maybe 5-10 second, then they told me the answer is define my sallary..
Is that normal / common question.?10 -
Would you work overtime when the bos give some mod when project nearly meet the deadline.?
I want to do it, but if I work on it the bos don't pay me and later on he will do that again and again..12 -
I got a job as Back End Developer in IT company, but in two month i only fix styling and layouting website.
I'am on the right company or not.?4 -
My first login function
const login = (email, password) => {
If (email && password) {
return true
} else {
return false
}
}10