Nonkit's Posts
Nairaland Forum › Nonkit's Profile › Nonkit's Posts
1 (of 1 pages)
Radio Nigeria, Enugu (92.8 FM): Aka Eze Aka Flora Ojukwu Olaedo Mbaiwe |
Beer subsidy loading... |
RenaissanceGuy:Overseas, UK for instance, banks do not charge ATM cards. They also do not charge impose inexplicable service charges. Banks make their money from using the depositors' funds for business such as loan issue and FX trading. |
No so!
|
Your story can be changed but know what you really want in life and stay focused on that, even while doing whatever job you have now. Some security guards saw their life changing opportunities while on the job. Yours could be found there too or elsewhere but you have to choose between being focused; doing your job well while it lasts and impressing women or anyone. |
He's just a hypocrite. Watch what he said some months ago about the same Okowa he now campaigns for. They've probably "settled" him and he had to compromise on his stance. Please watch this: https://www.youtube.com/watch?v=DFARCMupggM Also read this: https://www.premiumtimesng.com/entertainment/music/251034-harrysong-attacks-delta-governor-okowa.html |
If you have a Dad, don't ever take him for granted! |
How sure are you that she's not on Nairaland? I don't know why I feel she is here with us, reading everything on this thread. Pls, act fast in whatever decision you have made on this matter. |
EnterPRO:Very correct! |
emmanuelbrown26:That's it man |
rileyy:Onye isi mgbaka |
According to Facebook’s founder, Mark Zuckerberg, WhatsApp messenger has hit the 1billion monthly user mark. Zuckerberg announced this on his Facebook page. Read more and see screenshots here: http://naijatechy.com/?p=54&utm_source=&utm_medium=facebook |
Take her call and confirm that she's really a liar. She may have been raped, you know. |
All I can infer is that you must have been too proud to tell him to his face in the past that you did him a favour by marrying him; that he wasn't your type. He is only trying to punish you for ever disregarding him in the past. I believe that if you show some remorse for all you did to him in the past, he would drop the charges he has got against you and change. |
Please report to the nearest NAFDAC office. |
I would take the new job. Am a risk taker. Nothing is guatanteed in live. The short job might give you connection to a better job and the seemingly stable one may not be there next month. I would take 200K and sit at home to look for better jobs after if i have to. ...he has said it all. |
SpcAgtOko: Fruit! It has seeds inside.What about seedless tomatoes? |
tit: We cannot see anything!Really funny! |
It's 18 yrs, mom. I pay you another tribute today. May God bless your soul. |
It's already 17yrs but the memories are still very fresh. I miss u so much, Mum. |
Hi guys, I have the dragnet Addax Test Tomorrow, Nov. 18th @ Chams City. ...Could anyone please help me with their most recent test samples. I will highly appreciate your urgent response. Just send to nonkit4life@yahoo.com. ...thanks. |
HBD Madam, LLNP. |
Could you pls help me sought this out. I'm working on a javascript projects that handles a complex calculation whose input data comes from html forms. I've been able to debug the code, yet I don't get my output when I click the "CALCULATE" button. How best can I solve this problem. Here is the code: <SCRIPT language="javascript" type="text/javascript"> var areaIds = [ "kitchen", "laundry", "dining", "lounge", "study", "rumpus", "bathroom_1", "bathroom_2", "numExtraBathrooms", "extraBathroomArea", "numExtraRooms", "extraRoomArea", "bedroom_1", "ensuite", "wardrobe", "bedroom_2", "bedroom_3", "bedroom_4", "numExtraBedrooms", "extraBedroomArea", "garage", "decks", "circulation" ]; var defaultAreaValues = [ 8, 4, 12, 20, 9, 20, 6, 4, 0, 0, 0, 0, 16, 4, 4, 12, 12, 0, 0, 0, 36, 9, 0.1 ]; var smallAreaValues = [ 4, 2, 6, 16, 0, 0, 4, 0, 0, 0, 0, 0, 16, 0, 0, 9, 9, 0, 0, 0, 0, 6, 0.1 ]; var largeAreaValues = [ 16, 6, 16, 30, 12, 30, 8, 8, 0, 0, 0, 0, 20, 8, 9, 15, 15, 15, 0, 0, 36, 16, 0.2 ]; var kitchen; var laundry; var dining; var lounge; var study; var rumpus; var bathroom_1; var bathroom_2; var numExtraBathrooms; var extraBathroomArea; var numExtraRooms; var extraRoomArea; var bedroom_1; var ensuite; var wardrobe; var bedroom_2; var bedroom_3; var bedroom_4; var numExtraBedrooms; var extraBedroomArea; var garage; var decks; var circulation; var indoorArea; var outdoorAreas; var garageArea; var totalArea; var indoorCost; var outdoorCost; var garageCost; var totalCost; function initialiseEstimator() { for (var i = 0; i < areaIds.length; i++) { if (areaIds[i] != "circulation" ![]() { document.getElementById(areaIds[i]).value = defaultAreaValues[i]; } } indoorArea = document.getElementById("indoorArea" ;outdoorAreas = document.getElementById("outdoorAreas" ; garageArea = document.getElementById("garageArea" ; totalArea = document.getElementById("totalArea" ;indoorCost = document.getElementById("indoorCost" ; outdoorCost = document.getElementById("outdoorCost" ;garageCost = document.getElementById("garageCost" ;totalCost = document.getElementById("totalCost" ;kitchen = document.getElementById("kitchen" ;laundry = document.getElementById("laundry" ; dining = document.getElementById("dining" ; lounge = document.getElementById("lounge" ;study = document.getElementById("study" ; rumpus = document.getElementById("rumpus" ;bathroom_1 = document.getElementById("bathroom_1" ; bathroom_2 = document.getElementById("bathroom_2" ; numExtraBathrooms = document.getElementById("numExtraBathrooms" ;extraBathroomArea = document.getElementById("extraBathroomArea" ;numExtraRooms = document.getElementById("numExtraRooms" ;extraRoomArea = document.getElementById("extraRoomArea" ;bedroom_2 = document.getElementById("bedroom_2" ;bedroom_3 = document.getElementById("bedroom_3" ;bedroom_4 = document.getElementById("bedroom_4" ;bedroom_1 = document.getElementById("bedroom_1" ;numExtraBedrooms = document.getElementById("numExtraBedrooms" ; extraBedroomArea = document.getElementById("extraBedroomArea" ; ensuite = document.getElementById("ensuite" ;wardrobe = document.getElementById("wardrobe" ; garage = document.getElementById("garage" ; decks = document.getElementById("decks" ;circulation = document.getElementById("circulation" ;clearTotals(); } function clearTotals() { indoorArea.value = ""; outdoorAreas.value = ""; garageArea.value = ""; totalArea.value = ""; indoorCost.value = ""; outdoorCost.value = ""; garageCost.value = ""; totalCost.value = ""; } </SCRIPT> Thanks! |
So far, who do you think is the most gorgeous among all the winners of the MBGN peagentry since the inception of the show? , your comments. |
That's a wonderful one for Nigerians. Keep it up, Innoson. |
Where else has it been said that jonathan did all those things? Is Saharareporters the only news media in Nigeria? This report is completely baseless and unfounded! Nevertheless, I wouldn't mind hearing from other sources.[b][/b][color=#770077][/color] |
1 (of 1 pages)

