₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,331,276 members, 8,449,535 topics. Date: Tuesday, 21 July 2026 at 11:33 PM

Toggle theme

Guente02's Posts

Nairaland ForumGuente02's ProfileGuente02's Posts

1 2 3 4 5 6 7 8 9 10 (of 89 pages)

Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 3:07pm On Oct 17, 2018
sheygz:
what does the second week of boot camp entail? Is it a continuation of the project or something else?
It contains a lot. But we'd be having facilitation sessions, code review by the respective LFAs and some really hot and tasty jollof rice (oh I really wish) for lunch then more code reviews and some small small bonding with team members. If there is anything you'd be leaving the venue with its FEEDBACK.
This is what week one looked like my last out.

Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 3:00pm On Oct 17, 2018
How about we have an NL connect on Monday. Enjoy the launch break Jollof (hopefully) together.
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 10:26am On Oct 15, 2018
datascience:
Big head cheesy
It's really not me. Got nigga there that just won't tell. I guess I'd have to work hard enough to find out myself.
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 2:22am On Oct 15, 2018
datascience:
How much does Andela pay when accepted?
No one is telling. grin
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 10:44pm On Oct 14, 2018
isArray:
how do i fix this travis eerror please
(function (exports, require, module, __filename, __dirname) { import express from 'express';
^^^^^^
SyntaxError: Unexpected token import
Your stack trace is importanta that this little snippet.

Is everything working fine in your pc?
Have you installed and using babel?
Because node does not understand this yet => import express from 'express'. Na only const express = require('express') e sabi.
But if your use babel to run the code then all would be fine.
But on a second thought the solution to this your problem is sleeping on stackoverflow. Goan wake him.
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 10:35pm On Oct 14, 2018
isArray:
i know, Joi handles input validation
Exactly.
To keep things clean, flat and also follow the SRP principle....throw that validation logic with joi into a middleware function and call it in the declaration. That way there is the division of labor and everyone is happy.
PS: This is not mandatory but thinking about it holistically you'd see how it fits into the big picture.
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m):
isArray:
Fxdrizzle
For the GET you test for a 200 status, also you can test that it should return an object
For the GET /id you test for a valid Id, test for status
For the POST you test for valid input, test that it should return an object, also test for the property
There should be an input validation middleware in your routes because you want to ensure that the data that hits your route handler is purely verified and is of the accepted type and format (You don't want to pass an underscore as an id) and only then can the logic in your route handler be fired.

example of a route with a middleware
app or router.get(/products/:id, inputValidationMiddleware, (req,res)=>{})

now the app requirements expect your id parameter to be an integer that is 1 (products don't have id of 0 na) and above. if the user enters anything less than 1, the program flow is going to end in the inputValidationMiddlewareand then send a response with a status of 422 (https://httpstatuses.com/422) and a body with error property saying one clean error message - res.status(422).send({error: 'Id should be an integer that is greater than 0'}).
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 1:34pm On Oct 13, 2018
isArray:
okay thanks, it's going well, is yours going?
Pretty smooth. Covering all edge cases and checking no stone is left whilst pushing for a test coverage of 100%. One really needs to have their LFA leave very few feedback so that they can tackle challenge 3 asap (when it presents itself).
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 11:45am On Oct 13, 2018
naijanoni:
Guys abeg help me scrutinize before I submit.
https://codepen.io/OZONKWO/full/NOvejo/
Looking solid.
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 11:34am On Oct 13, 2018
isArray:
are we writing test before the code, or the code, then the test. cc benfuleck guente02
Practice TDD. Test first.
How is it coming along?
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 1:05am On Oct 09, 2018
isArray:
the back end task looks quite easier than the front end
You are certainly not wrong.
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 3:45pm On Oct 08, 2018
I guess we are at the discretion to decide what type of products the store manages.
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 5:15am On Oct 05, 2018
assurancefemi:
Posrgresql or Mongodb?
Postgresql.
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 9:36am On Oct 02, 2018
isArray:
TL;DR
from my disucssion with two friends that got in
you have to possess the abiliity to collaborate with feloow team memebers
constantly demnstrate EPIC values(very important, andela does not joke with it)
ask questions
constantly seek feeedback from your LFA
boot campers are scored on a daily basis, make sure you meet deadline for daily outputs
seek work review from your LFA
never ever argue with your LFA
Got it. �
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 8:56am On Oct 02, 2018
isArray:
Lol, are you kidding me? please go back to check the tweet chat with Phillip to know what andela looks out for, its beyond technical skills
Soft skills is major....I hope i posses that.
If you can chime in on this please. How does one demonstrate EPIC values during the bootcamp.
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 8:45am On Oct 02, 2018
stephenkhalaf:
gunte02, please is this your github account... fear dey catch me o...if it's your own, then it means you are a real BAD guy...
Baba easy with the whining. When u see bad guy....U go choke on your own breath. All man dey learn outhere.
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 9:45pm On Oct 01, 2018
isArray:
but before building you need to understand concepts very well too, else you will waste time debugging easy stuff when building, and you might also end up making silly errors
You're not far from the truth.
Building before, during or after is a matter of one's preference. The takeaway here is that one should make sure they build something with their newly acquired knowledge.
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 5:31pm On Oct 01, 2018
Tutorial purgatory is real fellas. If you're learning and not building trust me you're not learning optimally.
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 11:23pm On Sep 30, 2018
Seems like the new tests are tight. Nice grin
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 3:45pm On Sep 30, 2018
jembalord:
Nice work. Where Why is there no readme badge for codeclimate's test coverage?
But there is one for coveralls na and it's 100%.
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 11:49pm On Sep 29, 2018
Nairaland UI/UX is Trash in 4k lipsrsealed
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 11:44pm On Sep 29, 2018
@maigemuu

I see people with different solutions. Is it something you get on google or the shelf.
Some people didn't use google - my opinion tho - to get past the second test but Google is an essential skill in one's journey in this field.
I see you lamenting alot on the thread and I get it, programming is frustrating at the start for some people but if you are deliberate and persist in your learnings, sooner than later things would start converging without much mental effort. Just keep at it if its worth it for you.

I don return to library.
Keep learning Bro. One step, one code, one concept at a time.

If you have a way one can pass this hurdle, please share.
At the end of the day chairman, its the journey not the destination.
Beauty in the struggle ugliness in the success. But until one gets there how would one knowhuh
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 8:42pm On Sep 29, 2018
isArray:
nice one, the logout button is not working, but remember andela also value soft skills
Fixed CSS specificity issue.
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 8:40pm On Sep 29, 2018
fxdrizzle:
nice one. GitHub link please if you don't mind. I would like to try and reverse engineer it.
https://github.com/jesseinit/my-diary
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 3:11am On Sep 28, 2018
I couldn't get in to andela the last time out but atleast I finished the project.
https://diaryly.herokuapp.com/
Gearing up for whatever cycle 37 would bring to the table.
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 8:41pm On Sep 25, 2018
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 7:09pm On Sep 23, 2018
With Plenty Mental Gymnastics...

Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 5:39pm On Sep 22, 2018
Afolabi6046:
Hello guys, before i can learn Node.js what aspects of JavaScript do i need to know?
Basic JavaScript fundamentals.
There are only layers upon layers of abstraction to what we see as complex but las las it's the basic understanding of the underlying concepts that would help you in wrapping your head all things complex.

Just prepare for the rabbit hole.
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 5:34pm On Sep 22, 2018
Afolabi6046:
async/await yeah?
Callbacks then Promises.
Asyn await only makes one write promises in a convenient way. But once you get your head around it, you'd never basic promises with then() and catch() chaining.
For whatever reason i haven't been able to totally understand callbacks.
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 9:01pm On Sep 21, 2018
isArray:
i have the course
How can i get it from you?
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 10:54am On Sep 21, 2018
How do I get that mosh homadani node course people?
Jobs/VacanciesRe: Andela: IT Training And Job by guente02(m): 5:58pm On Sep 14, 2018
fxdrizzle:
For those who have been interviewed before, please how do I get to Andela epic tower from Ikeja along?
N100 to Oshodi Under Bridge.
N50 with Keke via Town Planning Way to Anthony Bus stop then trek a little - bad energy gotta stay far away - to the EPIC tower.

PS: If you don't know how to already use it? Learn how to USE Google Maps.

1 2 3 4 5 6 7 8 9 10 (of 89 pages)