Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,150,619 members, 7,809,273 topics. Date: Friday, 26 April 2024 at 07:08 AM

Andela: IT Training And Job - Jobs/Vacancies (223) - Nairaland

Nairaland Forum / Nairaland / General / Jobs/Vacancies / Andela: IT Training And Job (620290 Views)

Letter To All Fresh Graduates and Job seekers / Andela: IT Training And Job - Jobs/vacancies / Similarities Between Football And Job (2) (3) (4)

(1) (2) (3) ... (220) (221) (222) (223) (224) (225) (226) ... (263) (Reply) (Go Down)

Re: Andela: IT Training And Job by Redlighter(m): 5:58pm On Nov 09, 2018
Hello everyone, please any cycle 40 here?.. I Just got the link for the homestudy test. Is teamwork allowed grin?
Re: Andela: IT Training And Job by damtan(m): 6:05pm On Nov 09, 2018
Redlighter:
Hello everyone, please any cycle 40 here?.. I Just got the link for the homestudy test. Is teamwork allowed grin
I got same too. Teamwork shouldn't be a crime naa. Infact, I'm not prepared at all
Re: Andela: IT Training And Job by Blade21: 7:45pm On Nov 09, 2018
damtan:
I got same too. Teamwork shouldn't be a crime naa. Infact, I'm not prepared at all
me too I have no idea
Re: Andela: IT Training And Job by WhileTrue: 11:22pm On Nov 09, 2018
Redlighter:
Hello everyone, please any cycle 40 here?.. I Just got the link for the homestudy test. Is teamwork allowed grin?
Well team work is not discourage but if you can't solve most of the home study yourself. Then you are not ready for the boot camp not to talk of the fellowship

1 Like

Re: Andela: IT Training And Job by Redlighter(m): 11:34pm On Nov 09, 2018
damtan:
I got same too. Teamwork shouldn't be a crime naa. Infact, I'm not prepared at all
Lol chai my brother
Re: Andela: IT Training And Job by Redlighter(m): 11:48pm On Nov 09, 2018
WhileTrue:

Well team work is not discourage but if you can't solve most of the home study yourself. Then you are not ready for the boot camp not to talk of the fellowship
To be honest I didnt have enough time to complete the modules, i stopped at the OOP module. But after i saw some of the test questions on github.. I felt like i haven't studied at all. Though i learnt the Javascript aspect well but for the remaining ones like git and web services i wasn't able to touch them. As i was practicing with those questions e just be like say nepa take light down there grin

2 Likes

Re: Andela: IT Training And Job by KazukiIto(m): 3:30am On Nov 10, 2018
Redlighter:

To be honest I didnt have enough time to complete the modules, i stopped at the OOP module. But after i saw some of the test questions on github.. I felt like i haven't studied at all. Though i learnt the Javascript aspect well but for the remaining ones like git and web services i wasn't able to touch them. As i was practicing with those questions e just be like say nepa take light down there grin

Take a risk on yourself
Re: Andela: IT Training And Job by Brizzy404: 7:35am On Nov 10, 2018
Redlighter:

To be honest I didnt have enough time to complete the modules, i stopped at the OOP module. But after i saw some of the test questions on github.. I felt like i haven't studied at all. Though i learnt the Javascript aspect well but for the remaining ones like git and web services i wasn't able to touch them. As i was practicing with those questions e just be like say nepa take light down there grin
How did you access the practice questions on github
Re: Andela: IT Training And Job by Redlighter(m): 8:49am On Nov 10, 2018
KazukiIto:


Take a risk on yourself
Sure �
Re: Andela: IT Training And Job by Redlighter(m): 8:51am On Nov 10, 2018
Brizzy404:

How did you access the practice questions on github
Its just a sample https://github.com/andela/assessment-questions
Re: Andela: IT Training And Job by DonPikko: 9:00am On Nov 10, 2018
fact!
WhileTrue:

Well team work is not discourage but if you can't solve most of the home study yourself. Then you are not ready for the boot camp not to talk of the fellowship

1 Like

Re: Andela: IT Training And Job by Redlighter(m): 9:18am On Nov 10, 2018
Has anyone taken the test?
Re: Andela: IT Training And Job by Redlighter(m): 7:34pm On Nov 10, 2018
The test wasn't bad after all grin.. The questions on git were misleading, it was what scared me.The test isn't as tough as those questions on git.
Re: Andela: IT Training And Job by Redlighter(m): 7:39pm On Nov 10, 2018
KazukiIto:


Take a risk on yourself
Thanks for the advice man

1 Like

Re: Andela: IT Training And Job by sheygz: 6:39am On Nov 11, 2018
Please how do I get started on setting up Babel & Eslint on NodeJS project?
DonPikko:
fact!
Re: Andela: IT Training And Job by DonPikko: 2:28pm On Nov 11, 2018
sheygz:
Please how do I get started on setting up Babel & Eslint on NodeJS project?
install eslint globally
Re: Andela: IT Training And Job by DonPikko: 2:29pm On Nov 11, 2018
setting up Babel is a little bit complicated
Re: Andela: IT Training And Job by sheygz: 6:53am On Nov 12, 2018
Could you please provide some valuable links on that and how to start using es6 import/export modules. Do I only need babel or webpack or both to start using es6 modules-import/export?
DonPikko:
setting up Babel is a little bit complicated
Re: Andela: IT Training And Job by fxdrizzle(m): 9:55am On Nov 12, 2018
sheygz:
Could you please provide some valuable links on that and how to start using es6 import/export modules. Do I only need babel or webpack or both to start using es6 modules-import/export?
only Babel.
Re: Andela: IT Training And Job by minions(m): 10:43am On Nov 12, 2018
sheygz:
Could you please provide some valuable links on that and how to start using es6 import/export modules. Do I only need babel or webpack or both to start using es6 modules-import/export?

sheygz:
Could you please provide some valuable links on that and how to start using es6 import/export modules. Do I only need babel or webpack or both to start using es6 modules-import/export?

This article should help you. It is not really complicated https://medium dot com/@SunnyB/how-to-convert-es6-into-es5-using-babel-1b533d31a169.
Change the dot com to on the url to what it is supposed to be.

When you are done with the process in the article, you should install babel-watch as a dev dependency. Go to your package.json file under scripts and add "dev-start": "babel-watch app.js (or whatever your server name is)". You need babel watch to avoid running build ie recompiling your code each time you add another ES7 or ES6 code.
If you followed the directions properly, you should have
Babel CLI
Babel-presets-env
Babel-watch.

And start your server by running npm dev-start.
Re: Andela: IT Training And Job by princesweetman2(m): 7:39pm On Nov 12, 2018
guente02:

Lemme tell you something, the project spec would tell you to either use one or not.
Like during cycle 37 bootcamp, challenge 2 said we shouldn't use validation libraries and then challenge 3 gave permission to use it.
So it all boils down to the project specification.

But what is validation libraries sef?
Go and learn regular expressions and thank yourself later.

Wham

experience is a teacher

1 Like

Re: Andela: IT Training And Job by ruboy(m): 9:48pm On Nov 13, 2018
nice one
Re: Andela: IT Training And Job by naijanoni(m): 11:33am On Nov 14, 2018
minions:




This article should help you. It is not really complicated https://medium dot com/@SunnyB/how-to-convert-es6-into-es5-using-babel-1b533d31a169.
Change the dot com to on the url to what it is supposed to be.

When you are done with the process in the article, you should install babel-watch as a dev dependency. Go to your package.json file under scripts and add "dev-start": "babel-watch app.js (or whatever your server name is)". You need babel watch to avoid running build ie recompiling your code each time you add another ES7 or ES6 code.
If you followed the directions properly, you should have
Babel CLI
Babel-presets-env
Babel-watch.

And start your server by running npm dev-start.
Are u at the cycle 38 bootcamp?

1 Like

Re: Andela: IT Training And Job by Brizzy404: 2:28pm On Nov 14, 2018
Done with the online test.. How long before we get feedback
Re: Andela: IT Training And Job by ruboy(m): 2:35pm On Nov 14, 2018
Brizzy404:
Done with the online test.. How long before we get feedback
same here bro... I no think once successful another test would commence
Re: Andela: IT Training And Job by Brizzy404: 2:37pm On Nov 14, 2018
ruboy:
same here bro... I no think once successful another test would commence
How did you see the test?
Re: Andela: IT Training And Job by khattab008: 3:04pm On Nov 14, 2018
I know that this thread is mostly for the bootcamp but does anyone here knows what the role of the Software Development Learning Facilitator entails? Need clarifications please.
Re: Andela: IT Training And Job by minions(m): 4:08pm On Nov 14, 2018
naijanoni:

Are u at the cycle 38 bootcamp?

No.
Re: Andela: IT Training And Job by ruboy(m): 11:36pm On Nov 14, 2018
Brizzy404:

How did you see the test?
it was cool.. But the main one is coming
Re: Andela: IT Training And Job by Femitj: 3:45pm On Nov 16, 2018
guente02:

Lemme tell you something, the project spec would tell you to either use one or not.
Like during cycle 37 bootcamp, challenge 2 said we shouldn't use validation libraries and then challenge 3 gave permission to use it.
So it all boils down to the project specification.

But what is validation libraries sef?
Go and learn regular expressions and thank yourself later.

Sup bro,
I need your help with somethings, can you send me your contact details
Re: Andela: IT Training And Job by ispoa(m): 3:36pm On Nov 18, 2018
guente02 isArray
what separates those dropped in week 2 from those who make it?
UI?
Re: Andela: IT Training And Job by guente02(m): 1:21am On Nov 19, 2018
ispoa:
guente02 isArray
what separates those dropped in week 2 from those who make it?
UI?
It cuts across a lot.
They are looking at your progress in implementing the feedback they gave you, your communication skill (with both your lfa and your fellow boot campers on slack), quality of your blog post and checking to see if you are at least meeting or exceeding expectations as listed on that challenge documentation

(1) (2) (3) ... (220) (221) (222) (223) (224) (225) (226) ... (263) (Reply)

How To Apply For Nigeria Immigration Service (NIS) Recruitment 2017 / Federal Road Safety Commission 2018 Recruitment: How To Apply / FIRS To Recruit 1,250 New Staff

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 40
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.