Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,140,451 members, 7,770,122 topics. Date: Tuesday, 19 March 2024 at 04:24 AM

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

Nairaland Forum / Nairaland / General / Jobs/Vacancies / Andela: IT Training And Job (615986 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) ... (175) (176) (177) (178) (179) (180) (181) ... (263) (Reply) (Go Down)

Re: Andela: IT Training And Job by eph12(m): 7:46pm On Jul 07, 2018
guente02:

Mongo with Mongoose ODM
cheesy cheesy cheesy

1 Like

Re: Andela: IT Training And Job by tipwill(m): 8:04pm On Jul 07, 2018
Funkypunky:


Hello bro!

Please did you apply for the 36 program? Wondering if you could send me the home study test question as i haven't received mine yet -- got a mail from andela that i will receive mine on 20th July
On ryanucheka@gmail.com or whatsapp 09030467496..Thanks
I didn't apply for 36
Re: Andela: IT Training And Job by guente02(m): 8:17pm On Jul 07, 2018
eph12:

cheesy cheesy cheesy
I need some positive energy from you na not grin grin grin.

1 Like

Re: Andela: IT Training And Job by eph12(m): 8:26pm On Jul 07, 2018
guente02:

I need some positive energy from you na not grin grin grin.
You can't choose your tools and frameworks during boot camp. You use what you're told to use. So you can't say you'll use mongo when they haven't said so.

Meanwhile you're not even doing anything db yet. That's for challenge 3 which you don't know what it will be about yet

1 Like

Re: Andela: IT Training And Job by Nobody: 12:09am On Jul 08, 2018
Bahddo:
Asa would be so impressed cool

Lol. You got ME right there! cheesy
Re: Andela: IT Training And Job by McCoy662(m): 3:09am On Jul 08, 2018
the link is not opening; somebody pls send me the valid one
Re: Andela: IT Training And Job by mickel00(m): 10:59am On Jul 08, 2018
McCoy662:
the link is not opening; somebody pls send me the valid one
Use Google Chrome
Re: Andela: IT Training And Job by Bahddo(m): 12:59pm On Jul 08, 2018
guente02:
@Bahddo
Got an email to build out a fullstack app already within two weeks. I use to think this would happen during the bootcamp.
What then are we to expect when the Bootcamp starts proper?
let's get it straight. Were you told that you should build the full app in two weeks? Or is it a case of "you are going to build a full stack app, but for this week do this first?"

I don't think anyone would ask you to build a full stack app in two weeks.
Re: Andela: IT Training And Job by Bahddo(m): 1:00pm On Jul 08, 2018
shimmer1:

Lol. You got ME right there! cheesy
I'm a huge fan, I'd get you anywhere tongue
Re: Andela: IT Training And Job by DonPikko: 1:03pm On Jul 08, 2018
Bahddo:
I'm a huge fan, I'd get you anywhere tongue
we the fans are just waiting for a new album
Re: Andela: IT Training And Job by guente02(m): 2:12pm On Jul 08, 2018
Bahddo:
let's get it straight. Were you told that you should build the full app in two weeks? Or is it a case of "you are going to build a full stack app, but for this week do this first?"

I don't think anyone would ask you to build a full stack app in two weeks.
I think its the latter.
Any tips on effectively acing the bootcamp from you?

1 Like

Re: Andela: IT Training And Job by Teletexter: 4:09pm On Jul 08, 2018
guente02:

I think its the latter.
Any tips on effectively acing the bootcamp from you?

Ask questions .... Especially when you think you know what you are doing.

1 Like

Re: Andela: IT Training And Job by Nobody: 8:57pm On Jul 08, 2018
DonPikko:
we the fans are just waiting for a new album

Lol. Go and sit down somewhere cheesy she told me not anytime soon.
Re: Andela: IT Training And Job by guente02(m): 8:59pm On Jul 08, 2018
Teletexter:


Ask questions .... Especially when you think you know what you are doing.
Appreciate.
I'm just going through the code base on github of some people who got admitted into the program and i must say its quite large even for the smallest of apps. Pheeewwww.
Re: Andela: IT Training And Job by Engryagulam(m): 1:38pm On Jul 09, 2018
Just applied and received an acknowledgement email that I should take their personality test.
But there's no link to take the test
Re: Andela: IT Training And Job by deedat205(m): 9:08pm On Jul 09, 2018
Hello Board, thanks to everyone that has contributed to this thread. I applied to Andela and a link was recently sent to my mail to take the Andela Home study test. I have read few posts from here and I learnt that there is this "shopping cart" problem that seems Andela usually ask.
I'm not that good with Javascript (been using java for about a year), I picked Javascript because of Andela.

I have solved the problem, but I don't have a way of confirming if it will pass the test.

class ShoppingCart{
constructor(){
this.total = 0;
this.items = {};
}

add_item(item_name,quantity,price){
this.total += quantity * price;
this.items[item_name] = quantity;
}

remove_item(item_name,quantity,price){
this.total -= quantity * price;
this.items[item_name] -= quantity;
if (this.items[item_name] < 0){
delete(this.items[item_name]);
}
}

checkout(cash_paid){
cash_paid -= this.total;
if (cash_paid < 0){
return "Cash paid not enough";
}
return cash_paid;
}
}

class Shop extends ShoppingCart{
constructor(){
super();
this.quantity = 100;
}

remove_item(){
this.quantity -= 1;
}
}

let sh = new Shop();
sh.add_item("Gucci Bag",3,18500);
sh.remove_item("Gucci Bag",1,18500);
let bal = sh.checkout(60000);
alert(bal);


The problem I have with the code is that, method remove_item doesn't work unless it is commented out from class Shop.
If what I did is right, is there any sense in overriding the remove_item method in the Shop class?
Re: Andela: IT Training And Job by deedat205(m): 9:16pm On Jul 09, 2018
Please, is there anyone that can help me out with building mobile apps with React-native? I just have problem with getting started. Most tutorials I see online require downloading so many tools, I have followed most of these tutorials and till now, I haven't still found a way around it.
Please if you reside in Lagos and you can help, I'll seriously appreciate it.
Re: Andela: IT Training And Job by DonPikko: 9:47pm On Jul 09, 2018
deedat205:
Please, is there anyone that can help me out with building mobile apps with React-native? I just have problem with getting started. Most tutorials I see online require downloading so many tools, I have followed most of these tutorials and till now, I haven't still found a way around it.
Please if you reside in Lagos and you can help, I'll seriously appreciate it.
do you have a strong knowledge of js & react?
Re: Andela: IT Training And Job by deedat205(m): 7:31am On Jul 10, 2018
DonPikko:
do you have a strong knowledge of js & react?

I'm not strong with react, but my Javascript knowledge isn't bad. Thanks for your response
Re: Andela: IT Training And Job by WhileTrue: 7:49am On Jul 12, 2018
deedat205:
Please, is there anyone that can help me out with building mobile apps with React-native? I just have problem with getting started. Most tutorials I see online require downloading so many tools, I have followed most of these tutorials and till now, I haven't still found a way around it.
Please if you reside in Lagos and you can help, I'll seriously appreciate it.
What do u need help with? Downloading and setting up react native
Or how to write codes in react native
Re: Andela: IT Training And Job by deedat205(m): 8:29am On Jul 12, 2018
WhileTrue:

What do u need help with? Downloading and setting up react native
Or how to write codes in react native

Setting up react-native has been my headache. Nice profile name though, you must be a strong programmer "WhileTrue"
Re: Andela: IT Training And Job by elvisco44: 2:17pm On Jul 17, 2018
Seems like Andela made changes to cycle 35 schedule.

interview was dated 18-20 july.
pls anyone with invite for cycle 35?
or any relating info.
Re: Andela: IT Training And Job by benfluleck: 4:29pm On Jul 17, 2018
deedat205:


Setting up react-native has been my headache. Nice profile name though, you must be a strong programmer "WhileTrue"

Were you able to set this up ?
Re: Andela: IT Training And Job by Ola2much: 6:43pm On Jul 17, 2018
deedat205:
Hello Board, thanks to everyone that has contributed to this thread. I applied to Andela and a link was recently sent to my mail to take the Andela Home study test. I have read few posts from here and I learnt that there is this "shopping cart" problem that seems Andela usually ask.
I'm not that good with Javascript (been using java for about a year), I picked Javascript because of Andela.

I have solved the problem, but I don't have a way of confirming if it will pass the test.

class ShoppingCart{
constructor(){
this.total = 0;
this.items = {};
}

add_item(item_name,quantity,price){
this.total += quantity * price;
this.items[item_name] = quantity;
}

remove_item(item_name,quantity,price){
this.total -= quantity * price;
this.items[item_name] -= quantity;
if (this.items[item_name] < 0){
delete(this.items[item_name]);
}
}

checkout(cash_paid){
cash_paid -= this.total;
if (cash_paid < 0){
return "Cash paid not enough";
}
return cash_paid;
}
}

class Shop extends ShoppingCart{
constructor(){
super();
this.quantity = 100;
}

remove_item(){
this.quantity -= 1;
}
}

let sh = new Shop();
sh.add_item("Gucci Bag",3,18500);
sh.remove_item("Gucci Bag",1,18500);
let bal = sh.checkout(60000);
alert(bal);


The problem I have with the code is that, method remove_item doesn't work unless it is commented out from class Shop.
If what I did is right, is there any sense in overriding the remove_item method in the Shop class?

Hi bro I will need to ask you some questions , please give me a medium to contact you. Thanks
Re: Andela: IT Training And Job by tipwill(m): 8:47am On Jul 18, 2018
elvisco44:
Seems like Andela made changes to cycle 35 schedule.

interview was dated 18-20 july.
pls anyone with invite for cycle 35?
or any relating info.
Na true o. I have been waiting for email since saturday.
Re: Andela: IT Training And Job by Funkypunky: 11:45am On Jul 18, 2018
deedat205:
Hello Board, thanks to everyone that has contributed to this thread. I applied to Andela and a link was recently sent to my mail to take the Andela Home study test. I have read few posts from here and I learnt that there is this "shopping cart" problem that seems Andela usually ask.
I'm not that good with Javascript (been using java for about a year), I picked Javascript because of Andela.

I have solved the problem, but I don't have a way of confirming if it will pass the test.

class ShoppingCart{
constructor(){
this.total = 0;
this.items = {};
}

add_item(item_name,quantity,price){
this.total += quantity * price;
this.items[item_name] = quantity;
}

remove_item(item_name,quantity,price){
this.total -= quantity * price;
this.items[item_name] -= quantity;
if (this.items[item_name] < 0){
delete(this.items[item_name]);
}
}

checkout(cash_paid){
cash_paid -= this.total;
if (cash_paid < 0){
return "Cash paid not enough";
}
return cash_paid;
}
}

class Shop extends ShoppingCart{
constructor(){
super();
this.quantity = 100;
}

remove_item(){
this.quantity -= 1;
}
}

let sh = new Shop();
sh.add_item("Gucci Bag",3,18500);
sh.remove_item("Gucci Bag",1,18500);
let bal = sh.checkout(60000);
alert(bal);


The problem I have with the code is that, method remove_item doesn't work unless it is commented out from class Shop.
If what I did is right, is there any sense in overriding the remove_item method in the Shop class?



See clean code!! Guy please chat me on whatsapp on 09030467496 or please drop ur whatsapp contact ..lets code along...
Re: Andela: IT Training And Job by stephenkhalaf(m): 4:38pm On Jul 18, 2018
.

3 Likes

Re: Andela: IT Training And Job by tipwill(m): 6:03pm On Jul 18, 2018
Mails have been sent for cycle 35 interview.
cc. Elvisco44
Re: Andela: IT Training And Job by soj95: 7:15pm On Jul 18, 2018
tipwill:
Mails have been sent for cycle 35 interview.
cc. Elvisco44

when was it sent pls
Re: Andela: IT Training And Job by tipwill(m): 7:19pm On Jul 18, 2018
I received mine around 5.30pm today.
soj95
Re: Andela: IT Training And Job by soj95: 7:26pm On Jul 18, 2018
tipwill:
I received mine around 5.30pm today. soj95
I haven't checked my mail box since 15:00 ... is it like a bulk mail or what
Re: Andela: IT Training And Job by tipwill(m): 8:45pm On Jul 18, 2018
soj95:


I haven't checked my mail box since 15:00 ... is it like a bulk mail or what
Can't say.

(1) (2) (3) ... (175) (176) (177) (178) (179) (180) (181) ... (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. 39
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.