Salvationproject's Posts
Nairaland Forum › Salvationproject's Profile › Salvationproject's Posts
1 2 3 4 5 6 7 8 9 10 (of 18 pages)
Thanks everyone for your kind words, well wishes n advice. I feel motivated by the responses and will take the job. Nothing is easy in life |
I am a fresh graduate, left NYSC few months back and recently landed a graduate trainee job at one of our commercial banks here in Nigeria. But I have been afraid recently. This is because I will be under sales/marketing. And I have been hearing of all these 50m, 90m, etc. deposit targets. Training school will be commencing soon and a part of me is telling me not to report. Please, who have experience how these things work? Advise me please. |
The people supporting this motion are illiterates, irrational and political elements looking for the slightest opportunity to belittle this country. They are people who haven't been to the four walls of any good educational institute but won't hesitate to say nonsense about a commission that is chaired by professors, have professors, intellects and other professional consultants advising it. For your information, in Nigeria, votes are casted for political parties not candidates. Candidates are not expected to spend their money for an election but rather the political parties do. Now, if the logo of the party is there, what else do u want? Now, do you know the printing of ballot papers begin months and even years before an election? Now, imagine what u wish is being practiced and then, a court (say the supreme court) invalidates the candidacy of a candidate say a week or day before the election, where does INEC start from? to start printing again to update the new candidate's picture. This will result in wastage of funds and impossible for that election to hold as scheduled. |
NothingDoMe:The difference between me and u is, I was a Presiding officer in this election and am speaking based on the training I received from the electoral umpire itself, INEC. If am wrong, that means the INEC officials that taught me are wrong. On the other hand, u are only being swayed by emotions of ur fav candidate being rigged out |
GENES11S:I dey tell u... Sometimes, I wonder how they developed these kinda systems |
okeysoninv:No cry for my head... No be me do u |
NothingDoMe:Una no give her small slap? Cuz I believe INEC no teach her say she get right to upload and not to upload |
okeysoninv:Oga, I nor be part of INEC o... Only discovered a lot of people are ignorant about the whole tin and then, decided to enlighten people a little. |
NothingDoMe:Toh, na presiding officer forget him PIN |
There is uproar across the country with regards to why INEC results are not uploading and not available for viewing on INEC result viewing portal. Some party faithful are already attributing this to INEC rigging the election for a particular party. Well, from what INEC taught us, it is not a thing of surprise that some results are not uploading. Infact, INEC was actually expecting that and they gave an alternative to their presiding officers which is to upload the result offline. In that case, whenever the BVAS detects good network speed maybe during the course of transit, it will automatically move the result online to INEC servers. And even at that, when a result finally gets uploaded successfully to the server, it will not be visible to the public immediately. The Presiding Officer still needs to get the hardcopy of the result to the collation officer of his reg. area, explain/defend the result while the collation officer also examines the result to ensure no "mago mago" is in it before the stages leading to its approval for public viewing can be initiated. So, the fault is not entirely that of INEC nor the corp members in anyway... It is funny how people believe that corp members, who are actually working to get the small additional INEC allawee, are working with INEC to sabotage the people. I see these people such as BBNaija Tachia as illiterates in the 2023 elections' process who are just swayed by mere emotions. They don't know that the kind of country we find ourselves where network don't help tech. innovations is actually the problem. I am writing this to clear the air on people, who actually believe that results not uploading was orchestrated by INEC to rig the elections. While it is possible that politicians may be taking advantage of the issue to manipulate what they can but then, it is not a deliberate action by INEC. As a P.O, I uploaded my results offline due to bad network but there are other corp members, who were able to upload theirs online. |
POGazette:These two are valid votes na... A vote is invalid only when the choice of the voter isn't clear i.e the thumbprint is 50/50 on two parties space. |
May not be the most efficient way of doing this in JS but it is very much effective. function partitionArray(array, x) { let lArray = [], eArray = [], gArray = []; for (let i = 0; i < array.length; i++) { let v = array[i]; if (v < x) { lArray.push(v); } else if (v == x) { eArray.push(v); } else { gArray.push(v); } } return lArray.concat(eArray).concat(gArray); } alert(partitionArray([9, 12, 3, 5, 14, 10, 10], 10)); |
This one thinks C++ is one difficult language. I can remember i started my programming journey with C++ and it was so easy to learn compare to me learning js or php. When i learnt c++, everything flowed in but for js and php esp. js, i needed to give up most times and then again, come back. Also, for ur information, Mr. "real programmer", c++ is a middle level language not low. |
simple but if the time given is only 5minutes just as am seeing, it might be impossible for me. I need like 20 to 30 and an env that allows testing to do that. Regex can do that stuff |
... |
According to him, it is because Obidients threatened the life of his daughter and Obi refused to say anything. But then, i know it is more than that. The thing is more like on the anger arising from Peter Obi spoiling the chances of his preferred candidate, Atiku becoming President. |
Check image below! |
*** |
Nackzy:Will be 24 by June 11. I don't earn much... like roughly 30k a month but I spend most if not all on girls |
dawnomike:Amen and thank you |
MrBrownJay1:I don't understand sir... Like what I do is normal? or that I will need maturity to overcome it? |
I don't know if womanizing is the right term to use but I discovered I am too obsess with girls. Any girl I see, I just want to have something to do with her not necessarily real love stuffs. I am tired of this lifestyle. I can't stop thinking of women, the last moments and what lies ahead. It has gotten to a stage that I can't control myself when with women, who are not relatives and that, I can have something with. I do things just to give them the right impressions and have my way and this makes me feel weak afterwards. I was not like this before until we moved to this current environment of mine where womanizing and fornicating is a norm. I am tired of this kind of life and I want to leave it. It makes me lose hard earned money, focus and I fear my future may be wreck if I continue in this path. There is also the danger of disease. Please, aside prayers, what are the practical ways to re - orientate my mind from this disorder. I have prayed and nothing seems changing. |
Looks simple but demands some kinda deep thinking... Here is the solution in JavaScript, function sort(arr){ let pre_sorted_arr = {}, sorted_arr = []; for (i = 0; i < arr.length; i++){ if (pre_sorted_arr[arr[i]] === undefined) { pre_sorted_arr[arr[i]] = 1; } else { pre_sorted_arr[arr[i]] += 1; } } while (Object.keys(pre_sorted_arr).length > 0) { for (x in pre_sorted_arr) { let j = 1; for (i in pre_sorted_arr) { if (pre_sorted_arr[x] != pre_sorted_arr[i] && pre_sorted_arr[x] < pre_sorted_arr[i]) { j = 0; } } if (j == 1) { sorted_arr.push(x); delete pre_sorted_arr[x]; } } } return sorted_arr; } alert(sort([1,2,6,2,3,7,7,5,7,6,2,7])); //OUTPUTS: 7,2,6,1,3,5 |
house10s2:Once u buy naira_land.com, that is what u own and not nairaland.com. But if u own both or u want ur own to be redirecting to the other, then u will need a programming language such as JS or PHP to do that so that wen people visit naira_land.com, it goes to nairaland.com. But if I can remember, underscores are not allowed in URLs. |
JoyousFurnitire:No sir |
spartan117:thank u |
logik29:Hahahaha... how I wone take explain now? |
