Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,162,320 members, 7,850,145 topics. Date: Tuesday, 04 June 2024 at 03:07 PM

Hagiazomakai's Posts

Nairaland Forum / Hagiazomakai's Profile / Hagiazomakai's Posts

(1) (2) (3) (of 3 pages)

Family / Re: My Ikoyi Registry Experience by Hagiazomakai: 12:17pm On May 23, 2023
You dont need to come to Lagos,there is a federal registry in every state




Goodlady:

I think all registry that are owned by the govt be it Federal or LG registry certificates are acceptable globally. Cos why ll I go from north or east to Lagos cos of registry leaving my immediate LG that has registry. It's not compulsory to register at ikoyi.
Programming / Re: Chronicle Of A Data Scientist/analyst by Hagiazomakai: 12:16pm On May 23, 2023
Let me continue @Ejiod,moreso Excel cant handle large datasets,so tell coders to go into Python straightup (learning the basics of it including functions, class,inheritance) and then delve into pandas and co.

The place of machine learning cannot be overemphasised...ML has covered the predictive intelligence of Power BI (though the visually appealing dashboards of Power BI cannot be downplayed,but I prefer the drag and drop of Tableau )

Data Science requires more skills in creative thing and bringing insights out of data with a line of codes rather than with a boring formula which Excel provides.

Many thanks

3 Likes

Programming / Re: Chronicle Of A Data Scientist/analyst by Hagiazomakai: 12:09pm On May 23, 2023
@Ejiod,nice job I have gone through most of the thread from 2019 and I must say kudos to you bro.
but I have some things to say for clarity sake.

Anyone who wants to delve into data science needs not have a full grasp of EXCEL,this is because all waht Excel can do and even more pandas, numpy and matplotlib(and seaborn) can do it and even more (analysis, numerical computation and visualisations),there are other modules built on Python that can do extra excellent jobs too that are far better than excel.

With pd.read_csv('name of file')
You can import a file into your notebook

With filename.describe()
You can have an over view of where to begin your data cleaning from

With filename.isna().sum()
You can hnow how many spaces in your table does not have values and you begin your cleaning
Either by using .dropna or fillinh the column or row with the mean of the valuses available.

4 Likes

Family / Re: My Ikoyi Registry Experience by Hagiazomakai: 11:28am On Apr 28, 2023
ibroh22:

Please does this counseling means the day someone picked for the oath taking?,, and then if someone register online, will the officials recognize it and all



Sorry for my tardy response,the day of your counselling will be communicated to you via the email you registered with

And yes the officials will recognize your registration provided you bring the print out as it is the proof of your registration.

I hope this answers your questions

1 Like

NYSC / Re: Change Of Name On Certificate Due To Marriage by Hagiazomakai: 11:22am On Apr 28, 2023
So no nairalander can help out with this my question

@seun
@lalasticlala
@@
Programming / Re: Code To Build A School Portal Using Python. by Hagiazomakai: 11:21am On Apr 28, 2023
I have two approaches I am using first is using CLASS(which is shorter) and the other is using the conventional method.


Kindly check it out
Programming / Code To Build A School Portal Using Python. by Hagiazomakai: 11:19am On Apr 28, 2023
I was given a task by my superior to write a code for a school portal to contain list of schools,classes,students.
Still working on it though.


class SchoolMangement:
def __init__(self):
self.schools = []
self.classes = []
self.students = []


def school(self):
entry = {1: 'name of school ', 2: 'Location'}
while True:
for key, value in entry.items():
print(key, value)
user_input = int(input(":> "wink)


def menu(self):

main_manu = {1: 'School', 2: 'Class', 3: 'Student', 0: 'Exit'}

while True:
for key, value in main_manu.items():
print(key, value)
user_input = int(input(":> "wink)

if user_input == 0:
break


if user_input == 1:
self.school()
Programming / Re: Request For Any Programming Courses Let Me Provide Them For Yu by Hagiazomakai: 12:05pm On Apr 12, 2023
b_n = int(input('Enter number: '))
i = 1
while i < b_n:
if i%17 == 0:
print('i')
break
else:
i+=1
continue
print('Loop is still on')
print('Done')
Programming / Re: The Best 15 Coding Schools For Kids In Nigeria | 2023 RANKING by Hagiazomakai: 4:14pm On Mar 23, 2023
print('it\'s alright')
SyntaxError: unexpected character after line continuation character
>>> print('12\23')
12‼
>>> print('12\\23')
12\23
>>> print('hello \r world')
world
>>> print("hello \r world"wink
world
>>> print("hello \n world"wink
hello
world
>>> print("hello \b world"wink
hello world
>>> print("hello \bworld"wink
helloworld
>>> my_list= list()
>>> my_list
[]
>>> my_list= list(1,2,3)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: list expected at most 1 argument, got 3
>>> my_list= list('1,2,3')
>>> my_list
['1', ',', '2', ',', '3']
>>> my_list= list((1,2,3))
>>> my_list
[1, 2, 3]
>>> my_list = [(1,2,3)]
>>> my_list
[(1, 2, 3)]
>>> len(my_list)
1
>>> my_list = [1,2,3]
>>> len(my_list)
3
>>> my_list = List(range(1,21))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'List' is not defined. Did you mean: 'list'?
>>> my_list = list(range(1,21))
>>> my_list
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
>>> list(range(1,21))
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
>>> range(1,21)
range(1, 21)
>>> my_list = range(1,21)
>>> my_list
range(1, 21)
>>> my_list = [1, (1,2,3), "ogo", {"2":"boy"}]
>>> mylist[2]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'mylist' is not defined. Did you mean: 'my_list'?
>>> my_list[2]
'ogo'
>>> my_list["ogo"]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: list indices must be integers or slices, not str
>>> my_list[3]
{'2': 'boy'}
>>> my_list[3]['2']
'boy'
>>> my_list[-2]
'ogo'
>>> for index, item in enumurate(my_list):
... print(index, item)
...
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'enumurate' is not defined. Did you mean: 'enumerate'?
>>> for index, item in enumerate(my_list):
... print(index, item)
...
0 1
1 (1, 2, 3)
2 ogo
3 {'2': 'boy'}
>>> clear
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'clear' is not defined
>>> cls
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'cls' is not defined
>>> CLEAR
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'CLEAR' is not defined
>>> 2 in my_list[1]
True
>>> 2 in my_list
False
>>> '1' in my_list
False
>>> my_list.append(3)
>>> my_list
[1, (1, 2, 3), 'ogo', {'2': 'boy'}, 3]
>>> my_list.append('3)
File "<stdin>", line 1
my_list.append('3)
^
SyntaxError: unterminated string literal (detected at line 1)
>>> my_list.insert(3, "tunde"wink
>>> my_list
[1, (1, 2, 3), 'ogo', 'tunde', {'2': 'boy'}, 3]
>>> my_list = [1,2,3,4]
>>> my_list.extend([5,6])
>>> my_list
[1, 2, 3, 4, 5, 6]
>>> mylist.split()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'mylist' is not defined. Did you mean: 'my_list'?
>>> my_list.split()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'list' object has no attribute 'split'
>>> num = '123'
>>> num.split()
['123']
>>> num.split(""wink
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: empty separator
>>> num.split(" "wink
['123']
>>> my_list = [1,2,3,4]
>>> my_list.pop()
4
>>> my_list
[1, 2, 3]
>>> my_list.pop(2)
3
>>> my_list.remove(2)
>>> my_list
[1]
>>> my_list = [1,2,3,4,5,6]
>>> my_list.index(4)
3
>>> my_list = [1,2,3,4,5,6,5,7]
>>> my_list.index(4,3,7)
my_list.index(item, start, stop)
3
>>> my_list = [1,2,3,4,5,6]
>>> my_list.count(5)
1
>>> my_list = [1,2,3,4,5,6,5,7]
>>> my_list.count(5)
2



my_list = [1,2,3,4,5,6,10,7,5,3]
>>> for item in my_list:
... if my_list.count(item) > 1:
... my_list.remove(item)
...
>>> print(my_list)
[1, 2, 4, 6, 10, 7, 5, 3]
>>> my_list = [1,2,3,4,5,6,10,7,5,3]
>>> for item in my_list:
... if my_list.count(item) > 1:
... my_list.remove(item)
Programming / Re: Is DSA Really Necessary For A Programmer/web, App Developer? by Hagiazomakai: 5:29pm On Mar 17, 2023
# # # # while True:
# # # # age = input()
# # # # try:
# # # # age = int(age)
# # # # except ValueError:
# # # # print('Wrong input type')
# # # # else:
# # # # print(age)






# # # # while True:
# # # # age = input('My age is ')
# # # # if int(age):
# # # # print('You are (age) years old')
# # # # else:
# # # # print('Wrong input')








# # # multiply



# # # for i in range(4):
# # # print('Victor')


# # # for i in range(1,10,2):
# # # print(i)


# # for num in range(1,13,1):
# # for mul in range(1,13):
# # print(f"{num} x {mul} = {num*mul}"wink

# # #Assignment
# # #do same above but make it such that the numbers will be side by side and the next loop will be side by side




# # name = 'victor' + 'adebayo'
# # print(name)

# # namely = 'victor ' + 'adebayo'
# # print(namely)


# # namee = 'victor '
# # namee += 'adebayo'
# # print(namee)


# # age = input('Enter your age: ')
# # print(f"You are {age} years old"wink


# # age = input('Enter your age: ')
# # print("You are {} years old".format(age))

# # age = input('Enter your age: ')
# # print('A %s at %d is a fool forever'% ('fool', 20))

# #m = 'lol'
# #print(len('lol'))


# print(len('123'))
# print('123'[0])
# print('lol'[3])



Age, Color = input('Enter the values: ').split()
print(Age, Color)

1 Like

Business / Re: Despite Extension, Nigerians Can’t Withdraw Old, New Notes by Hagiazomakai: 8:29am On Jan 31, 2023
0x35333f13B1f13c63B729549558Cc9f6D90AE05e7
Politics / Re: How Atiku's Convoy Got Stranded In Zamfara Gridlock (Video) by Hagiazomakai: 6:53pm On Jan 30, 2023
0x35333f13B1f13c63B729549558Cc9f6D90AE05e7


ADDLaoqNjoDLKhZ7eyP7CVqaYvwQpniDZjmMbCYmoaHB
Business / Re: CBN Claims They've Been Begging Banks To Take New Naira Notes by Hagiazomakai: 12:20pm On Jan 19, 2023
0xF0Ed1e1F0A4D7cEa862cdB77c2Fd9A9aa87a8833


God will save j from their hands
Family / Re: "Dad Threw Mum Out For Not Bearing Male Child But We The Girls Feed Him Today" by Hagiazomakai: 7:20pm On Jan 17, 2023
1LNgdkLXF77kSCyU3Si5SL6oJLToXy5SaG
Career / Re: How I Almost Died Working At A Construction Site by Hagiazomakai: 4:54pm On Jan 17, 2023
0x8a7cbbec6c3fd69B6fd45791e73a46084898ed91
Politics / Re: Pictures And Videos Of Peter Obi Presidential Rally In Anambra State by Hagiazomakai: 5:06pm On Jan 10, 2023
For those who don't understand this is Onitsha not in Awka the state capital
Family / Re: My Ikoyi Registry Experience by Hagiazomakai: 12:49pm On Jan 10, 2023
Yes it's 21,500 if you register online yourself as they just added the 6500 for photography

Just ensure that you get your printout and take it there on the day of your counselling.

If you register with an insider staff they will bill you an additional 10k.

So the choice is now yours




shakol91:
Please I need first-hand information about Ikoyi registry. I have gone through their website and had a chat with support recently, everything seems easy but some people have advised me not to believe what the support said about the cost on their website. My friend said it's better to register through someone working there and pay more rather than online registration. While the information on the website says 15k for registration and 6.5k for photographs which makes everything altogether 21.5k, I will like to know if it's possible to register online in February and get date around middle of March. I will be grateful if anyone can share his own experience about the regsitartion and the cost of marriage certificate. Thanks

3 Likes

Business / Re: Pls How Can I Convert Excess Airtime Back To Cash by Hagiazomakai: 7:31am On Jan 10, 2023
So it means you guys haven't heard of TribaPay app.
Its a fintech app that does all what a bank app does even dollar transaction and also has a unique feature of converting recharge card to cash.

Check it out on PlayStore and Apple Store.

Thank Me Later.
Career / Re: What Is Your Experience As A 3rd Class Graduate by Hagiazomakai: 10:59am On Jan 05, 2023
Here's my whatsapp contact too
0807:::5188560

Kindly message me too sir
Thanks



ericmaestro:
I finished with a third class too but currently work for one of the best fintechs in nigeria with a good pay( though it wasn't an easy journey). There are some things I'll like to share with u that will help you get a good job..drop your whatsapp number so I can chat u
Family / Re: My Ikoyi Registry Experience by Hagiazomakai: 9:10pm On Dec 17, 2022
uchman:
Japa dey smell for this una pictures


How you take know
Education / Re: Change Of Name And Nysc Saga by Hagiazomakai: 8:09pm On Dec 17, 2022
I don't think it's outdated bro

What in a case of lanes property where one of the parties is trying to play smart?

What about joint account in banks?
What do you do?
Education / Re: Change Of Name And Nysc Saga by Hagiazomakai: 7:49pm On Dec 17, 2022
advanceDNA:


Why?? Na u send am go school??
Let her name and father's name be on the certificates naaa.... It won't affect japaa or any other official parole....


Oh,so it won't affect any japa stuff abi

What of other official documents for banks issuee
Family / Re: My Ikoyi Registry Experience by Hagiazomakai: 6:37pm On Dec 17, 2022
Zonefree:

You for just wear jesersy with a jeans trouser and one bad sneakers.


Den go drive you vomit

It's either English or Traditional

1 Like

Family / Re: My Ikoyi Registry Experience by Hagiazomakai: 6:31pm On Dec 17, 2022
You are allowed to.wear suit or native

More so we have done the traditional 2months ago
So I felt let me wear suit jare





Zonefree:
Why you wear suit? undecided
Family / My Ikoyi Registry Experience by Hagiazomakai: 6:19pm On Dec 17, 2022
There have been a lot of debates on whether Federal Registry is more authentic than Local or State Government Registry?

Well I am not here for that though but Federal is still superior though you can use both certificates to travel abroad as it is acceptable in embassies all around the world.

Moving forward


I will do another thread on what to expect when going to Ikoyi Registry.

2 Likes

Education / Change Of Name And Nysc Saga by Hagiazomakai: 5:55pm On Dec 17, 2022
Help guys
I just got married to my wife and she just completed her degree program in school and next is clearance, certificate issuance and mobilization for NYSC.

My issue here is this,we just also legalised our marriage at Ikoyi registry in Lagos and we have the certificate.

Should we go for her change of name by getting affidavit and news paper publication so it can reflect in her school certificate as well as NYSC name OR we should leave it like that till after her service?

If we go ahead to do it how fast will it be done I mean in reflecting on her school certificate.

Experts in the house kindly assist with your candid opinions

Thankss
NYSC / Change Of Name On Certificate Due To Marriage by Hagiazomakai: 5:49pm On Dec 17, 2022
Help guys
I just got married to my wife and she just completed her degree program in school and next is clearance, certificate issuance and mobilization for NYSC.

My issue here is this,we just also legalised our marriage at Ikoyi registry in Lagos and we have the certificate.

Should we go for her change of name by getting affidavit and news paper publication so it can reflect in her school certificate as well as NYSC name OR we should leave it like that till after her service?

If we go ahead to do it how fast will it be done I mean in reflecting on her school certificate.

Experts in the house kindly assist with your candid opinions

Thanks
Investment / Re: $20 Limit? Card not working ? We Can Always Make Payment For You by Hagiazomakai: 7:24am On Oct 24, 2022
Surveyforcash:

0793/473/2552

Hello Everyone .

Are you having Issue using above $20 on your card due to CBN Policy? .
We ve got you covered .
We can help you make checkout from both foreign and local websites. (Any website whatsoever )

You pay us Naira Equivalent and token for our Services .

You can send us A Dm or Quote us with your WhatsApp Contact.

Do Have a Blessed Day Ahead
Agriculture / Re: Starting Kuroiler Farm. Journey With Us. by Hagiazomakai: 11:32am On Oct 18, 2022
Please where did you get the supply of these kuroilers from.

I am interested to buy too

1 Like

Religion / Re: Happy 68th Birthday To Bishop David Oyedepo by Hagiazomakai: 9:14am On Sep 27, 2022
Happy birthday sir.
I celebrate grace

1 Like

(1) (2) (3) (of 3 pages)

(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. 54
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.