₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,329,125 members, 8,438,935 topics. Date: Saturday, 04 July 2026 at 09:44 AM

Toggle theme

Nnamdiosu's Posts

Nairaland ForumNnamdiosu's ProfileNnamdiosu's Posts

1 2 3 4 5 6 7 8 ... 80 81 82 83 84 85 86 87 88 (of 93 pages)

EducationRe: What's The Funniest Thing You've Experienced Inside An Examination Hall? by nnamdiosu(m): 10:12am On Apr 24, 2015
Omotayor123:
Lol!
I remembered a guy who was caught copying from his friend. his answer script was collected nd asked to get out of d hall. Like a drama he knelt down and start "crying profously" (Fake cry though). There was laughter in d hall cos d way he 'cried' was so funny. Suddenly, he stood up and face everybody saying
" why are u laughing?" if dem born una well make u laugh again"
Dramatically he knelt down and continue with his cry.
This tym even d lecturer nd invigilators joined in d laughter.
His script was later returned to him nd was allowed to continue his exam in a special seat"


It was so funny. Remembering it brings laughter.
yeeeeee I don laugh tire for office. kia. Omo who be that guy set. Omo my generations must hear this story . hahaa.
FamilyRe: What This Mom Did To Her Baby In A Fast Food Bathroom Is Despicable by nnamdiosu(m): 8:05am On Apr 23, 2015
KanwuliaJara:
Never have a baby that will remind you of a man you HATE! kiss
MEN! Look before you PHOCK!
Lunatics have the "sweetest" poohsies! grin
are you talking from experience? (ur last sentence)
WebmastersRe: XSS Attack On Nairaland by nnamdiosu(m): 8:39am On Apr 15, 2015
Grime:
It's a small thing.

All the culprit is doing is just including malicious javascript code in his posts, and of course there is no way you would notice without looking through the source code of post pages since the script won't be visible in his posts.

What the admin has been doing is deleting the offending post, banning the poster, and then censoring the offending url (usually from free hosts).
But I wonder if this is sustainable since the culprit can always create a new account, make new posts, and find another free host.

So, in summary, there is no intrusion to the server whatsoever, it's all happening at the front end. This type of XSS attack is like the "I am being a nuisance" type.
The culprit will get tired sooner or later.

...But while we wait for the attacker to get tired, we must consider that this website has big advertisers. If they lose their account to some kid in Yaba, trust for NL will take a hit.
There is only one way to solve this problem once and for all, and I am surprised it hasn't been implemented yet.
wonderful . bro u seem a pro in ethical hacking. can u pls mentor me?
PoliticsRe: Statement From PDP Governorship Candidate Who Allegedly Removed Transformer by nnamdiosu(m): 4:22am On Apr 15, 2015
*in heavy Yoruba accent* beni ......shey they wefused to vote for me and they still want to enjoy my lighthuh ironi......lie lie. they cannot eat their cake and have light back. emmm......( on the phone) kolade.......have u started removing the unfortunate transformer from its unfortunate location? good. vary good. ose ore mi. ma pe e later.
FamilyRe: 21 Rare Historical Photos That Everyone Should See by nnamdiosu(m): 12:45am On Apr 14, 2015
angelTI:
I dunno why but these pictures/stories gives me a sober feeling I can't explain
me too bro. and I think I know y. those were the good old days in history. no bombings. no hard feelings between countries or religions as they are now.... I can't really explain it sha. but its like......something good died in that era. no plane crash or senseless killings like that. God help this generation *sad*
CareerRe: Pls Wat Should I Do? I've Been Compelled Into A Serious Oath by nnamdiosu(m): 12:21am On Apr 14, 2015
Holatunde007:
Is really affect those workers that's my d base of my scare, since the enchantment affected his workers, I don't want to look down on the oath
op they are just using fear to put u in serious bondage. for you info you just told us in naira land abt the oath.....and ur still alive. God used you to catch ur evil boss and expose him. but instead ur........
place urself in the shoes of ur friend and ask urself how will u feel if someone withholds such Indo from you. then the answer to ur question abt telling him is solved
ProgrammingRe: Pls Help On This Android Programming Issue by nnamdiosu(op): 12:49am On Apr 12, 2015
proxy23:
Try this https://developers.google.com/google-apps/contacts/v3/ Or this code.tutsplus.com/tutorials/build-a-contacts-application-with-jquery-mobile-the-android-sdk-part-1--mobile-5727 copy the 2nd url put it in your url tab u will see the codes
thanks bro. wat they had was similar but not exactly wat I need. thanks for d efforts
ProgrammingRe: Pls Help On This Android Programming Issue by nnamdiosu(op): 12:31am On Apr 12, 2015
thewebcraft:
Java??
yes
ProgrammingRe: Pls Help On This Android Programming Issue by nnamdiosu(op): 9:59pm On Apr 11, 2015
thewebcraft:
What language?
andriod
ProgrammingRe: Android Quiz Application With Json Parser, Php And Mysql Database by nnamdiosu(m): 2:57pm On Apr 11, 2015
nollyj:
In this tutorial we are going to learn how to create an android quiz application with Json parser, Php and Mysql database. This is going to be a long tutorial so relax as we take the journey together.

Most of the concepts you will see here has been covered in some of my previous tutorials and I will suggest you read these two tutorials before you continue - How to Parse JSON in Android (http://inducesmile.com/android-tutorials-for-nigerian-developer/how-to-parse-json-in-android-example/) and Android Login and Registration with Php and Mysql (http://inducesmile.com/android-snippets/android-login-and-registration-with-php-and-mysql/)

We are going to store our quiz questions and answers in Mysql database which can be local or remote. One advantage of using this concept in android quiz application is that it will afford you the opportunity to add and edit quiz questions and solutions with the need to update your application.

Android quiz application can also be achieved by storing the quiz questions and solutions using android SQLITE database. In this case, the application will not require internet connection to access the database.

If you do not know much about Php and Mysql, kindly read it up w3school.com.

Before we start with the detailed instruction, it is important to know that we will first of all download and install a web server in our system. I am going to use WAMP server but feel free to use whatever web server you are familiar with.

The detail instruction on how to install WAMP can be found on their website.

With the web server installed, start your web server and go to PhpMyAdmin. We will create a new database called quiz. In our created database, we will create a single table called quiz_questions. The below script is used to create our users table.

CREATE TABLE IF NOT EXISTS 'quiz_questions' (
'id' bigint(20) NOT NULL AUTO_INCREMENT,
'question' varchar(300) NOT NULL,
'possible_answers' varchar(300) NOT NULL,
'correct_answer' int(5) NOT NULL,
PRIMARY KEY ('id'),
UNIQUE KEY 'question' ('question')
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

The next step is to create our Php project structure. I will make use of Aptana IDE for Php and Mysql development but feel free to use whatever IDE you like the best.

Create a folder called Android_Quiz inside the www folder of your web server. Inside this folder, create another folder called include. The include folder will house our configuration file for database connection.

Create a file called index.php in your project root directory. All the request that comes to the web server will go through this index file.
In our include folder, create three files called config.php, db.php and quiz.php.

When a client sends a request, the index.php file will analyze the request and talk to the database. It will retrieve all the quiz questions present in the quiz_questions table. The data will first be converted to an array and rather will be output as a Json object.
wow. thanks . I'm so following this. more grease to ur elbow
Tech JobsRe: ***very Urgent *** Software For Government Establishment by nnamdiosu(m): 2:50pm On Apr 11, 2015
exodusex:
Hi everyone.. Any one who has or knows a software for government establishment, or offices should pls contact me.. Be it account, tax or anything else.. I have a deal, and it's urgent..

Whatsapp or SMS 08141533618 (pls no calls)
I do. holla on 08164220091
ProgrammingRe: Android Application Developing Tools by nnamdiosu(m): 2:48pm On Apr 11, 2015
gimakon:
Are u developing on java or c#?

If it's java? Get jdk, android ADT, NDK (android) then choose between Eclipse IDE and Net beans

If it's C#, all requirements of java and then Xamarin, and visual studio.

If it's c/c++, Momentix IDE for BlackBerry 10, (accepts android apk)

Maybe you should start using youtube, so you won't be asking some questions and not getting replies from people
hi . I perceive ur good in android programming. pls do u have any idea that I can use to bring up the contact list and select as many as I like from an edit text? I'm trying to develop a msg app. or do u have something similar?
ProgrammingPls Help On This Android Programming Issue by nnamdiosu(op): 2:45pm On Apr 11, 2015
hi guys pls I need help on this. I'm developing an app abd I'm trying to implement a code that brings up the phone contact with the ability for the user to select one or more contacts. all the contacts should now be placed in an edit text. pls has any one any tip or advice in this or something similar that I can modify? thanks guys
WebmastersRe: POST -your- Website/blog- For- REVIEW by nnamdiosu(m): 12:08am On Apr 10, 2015
Alfred200825:
am on blogger, but am using a premium template which i can give you for a fee. Holla me if you got interest.
hollaaaaaaaaaaaaaaa smiley.pls I really do need it. Nnamdiosu@gmail.com thanks a billion bro.
WebmastersRe: POST -your- Website/blog- For- REVIEW by nnamdiosu(m): 11:13pm On Apr 08, 2015
Alfred200825:
Here is mine www.allspired.com
beautiful. so nice. Pls wat cms did u use for it?
WebmastersRe: Android Based Online Forum Experimentation by nnamdiosu(m): 5:23pm On Apr 08, 2015
emmanbol:
@nnamdiosu, I really appreciate ur comments. I av noted all and will also appreciate more comments from yhu and odas viewing dis topic. as regards working togeda on sharing ideas, its no problem. If yhu gat ideas, u can first pm on nairaland to get ur nomba to use for whatsapp.
keep d criticism coming, it makes my development and design skill better.
nice. you can please add me on Wassap with these digits..... 07017855456. peace
WebmastersRe: Android Based Online Forum Experimentation by nnamdiosu(m): 2:27am On Apr 08, 2015
emmanbol:
I am using my android knowledge to design something like an online forum. Be kind to download the android app and post ur reviews either via the app itself or via nairaland. I am really gonna appreciate ur reviews. The app is about 924kb, so its not that big.
Thanks in advance. [url]gossipx.net/OvaSabi%20Project.apk[/url]
wowwwww so cool. I love it. although I downloaded it I couldn't log in Becos I had no mb . I'm using an opera bundle plan that's y I could only download it. its around 2 am. I'll get mb by day break. I'm new to android too. I'm working on a bulk SMS app. maybe you too could help me review it to when I'm almost done. I'll love to share ideas with u. can we be sharing ideas via Wassap? .I'll love to learn from you sir
from my little observations
1. ur app looks too colourful. the color combinations are cool but if u use such colors people might mistake it for a childish app. using mature colours like black or white for some of the ui might give a taste of maturity and simplicity to the app.
2. the radio buttons for the sex isn't aligned. won't it be better if they where below the text?
3. the space at the fotter ( yhu fit login here) is too much and not proportioned to the rest of the app. y Dont u dress the other stuffs down?
and lastly wen I tried register it said oga..... that's nice. but if its a girl that chooses female I saw that it might still call her oga too. y Dont u condition it to say madam if the female radio button is selected? well done sir. nice app
WebmastersRe: Introducing My Students’ Information & Library Management System by nnamdiosu(m): 1:53am On Apr 08, 2015
Dlastofmykind:
These above management systems are web-based applications which provide an automated way of managing records in schools, colleges, institutions etc.

STUDENTS' INFORMATION MANAGEMENT SYSTEM

Students’ Information Management System (SIMS) is a web based application that’s meant for keeping students’ records such as each student’s personal details, course form details, school fees details, lecture and examination timetable, result of each course, semester’s grade point and attendance details.

FEATURES OF STUDENTS’ INFORMATION MANAGEMENT SYSTEM
This application is divided into 2 modules: namely;
- The admin module.
- The students’ module.

THE ADMIN MODULE
Under this module, the administrator can:

- Add, edit, search for, view and delete students' details.
- Add, edit, search for, view and delete departments and levels.
- Add, edit, search for, view and delete schoolfees details for both indigene and non-indigene students.
- Add, edit, search for, view and delete courseforms details.
- Add, edit, search for, view and delete examination timetable details.
- Add, edit, search for, view and delete courses result for each levels and departments.
- Add, edit, search for, view and delete semester's gp for each departments and their levels.
- Mark, view and delete attendance for each courses.


THE STUDENTS’ MODULE
Under this module, each student can:

- View and edit their profile, change their password and update their profile picture.
- Calculate each semester grade point (GP).
- Submit and print their courseforms.
- View each department's examination timetable.
- View each courses' result for each department and levels.
- View school fees details for both indigene and non-indigene students.
- View semester's GP for their respective departments and levels only.



LIBRARY MANAGEMENT SYSTEM (LMS)

Library Management System (LMS) is a web based application that’s meant for keeping records of all transactions performed in the library.
This application can be used in various institutions, bookshops and also as a final project for students.


FEATURES OF LIBRARY MANAGEMENT SYSTEM
This application is divided into 2 modules: namely;
- The Librarian / Admin's Module
- The users’ module.

THE LIBRARIAN / ADMIN MODULE
Under this module, the librarian can:

- Add, edit, search for, view and delete each user's details (both students and non-students).
- Add, edit, search for, view and delete each book's details.
- Group each books according to their types (new, old, damaged and lost) and
categories (encyclopaedia, periodicals, journals, science, history etc).
- Allow registered users to borrow books freely with a due date attached and after the book might have exceeded its due date, the borrower will pay certain amount as debt.
- View borrowed and returned books of each and all users.
- View all transactions made on each book.


THE STUDENTS’ MODULE
Under this module, each student can:

- View and search for available books, borrow, return , view their borrowed and returned books.
- View and edit their profile, change password and upload their profile picture.


BELOW ARE THE SCREENSHOTS OF THESE TWO WEB BASED APPLICATIONS.... MANY SCREENSHOTS WOULD HAVE BEEN UPLOADED BUT I WAS LIMITED TO UPLOADING ONLY FOUR IMAGES.

They’re bug-free, robust and easy to navigate.

A trial will convince you!

Peradventure, you’re interested in getting these 2 web applications for your final year project or for any other educational purpose, you can contact me on 08132016744 (Hotline and whatsapp contact).

THANKS!!!
nice. is it for sell?
PoliticsRe: How I Was Almost Mobbed Today In Ado Ekiti by nnamdiosu(m): 1:05am On Apr 08, 2015
ogalawyer:
I'm still in shock over what happened to me today.
I'm a youth corper serving in Ado Ekiti. On my way to the office Ado Ekiti this morning, I observed that the Fajuyi park area of the town was blocked by security operatives and motorcycles were not being allowed to ride through. I was puzzled as to what was going on, as I just got back to the state from my hometown d night before. Anyway I proceeded to my office. About two hours later, I heard some singing and noise from outside. As l was kind of bored, I decided to go and observe. On getting to the outside of my office complex, I saw a large crowd of people singing and walking on the main road. I realised they were protesting. But since there were no sign of violence, I presumed, albeit wrongly, that it was a peaceful protest. Therefore, and in order to test the picture quality of the phone I just bought, I decided to take pictures. That was a very grave mistake, I now realise. Immediately, a man saw me taking the pictures, he descended on me. The crowd followed suit and before I could mention Jesus, I started receiving blows and slaps from everywhere. The shirt and inner shirt I was wearing was torn out of my body. After the security men managed to restrain d crowd, I was told to delete d pictures, which I did. The crowd was not still satisfied and insisted that I give my phone to them, so they could smash it. I refused. Another round of beating then commenced, this time more viciously. I was pushed to the ground and they were all raining blows and slaps on my body. I managed to extricate myself from the melee and ran for my dear life. Some tried chasing me, but I was quicker. I then went to hide in a part of d complex. After about 5 minutes, a vicious looking guy came to meet me where I was hiding and said I should give him my phone, else he finishes me off there and then. He said he has been instructed by the powers that be to either smash my phone or finish me off. Or in the alternative, he will take me to d crowd waiting fr me outside so they can deal with me in their own way. I started begging him and told him I was just a youth corper and I was neither a politician or from Ado Ekiti. After showing him my NYSC I.d. card and giving him the last 500 naira in my wallet, which he requested for, as bribe, he let me go and instructed me to go and hide as best as I could. I was later transported outside the premises by a good Samaritan, before I found my way home.
Though I'm an ardent follower of political happenings in the country, I have never been a fanatic, and I never expected this type of behaviour from rational human beings. Mehn, these guys where filled with anger, and they could kill without hesitation. Politics should not be a do or die affair. It is high time we jettison this culture of barbarism and embrace peace and dialogue. Anyway, I'm thankful to God, that it didn't get worse than it did. Though I'm feeling pains all over my body, I'll survive and at least I still have my phone.
young man I have three pieces of advice for you. 1. NEVER EVER VALUE YOUR PHONE OR ANY OF YOUR PROPERTY OVER YOUR LIFE. 2. ANY TIME YOU SEE A POLITICAL PROTEST, RUN AS FAST AS YOU CAN. 3. GO AND DO THANKSGIVING IN YOUR CHURCH ON SUNDAY. ( the first two advice aren't necessary)
Christianity EtcRe: Sleeping In Church During Service, Physical Or Spiritual Programming?. by nnamdiosu(m): 8:24pm On Apr 05, 2015
sholikay:
hmmmn.. Okay... Some are so addicted to it that if they even sleep for 48 hours before coming to church, they will still sleep. cheesy
Lol. arrows of slumber has been fired
EducationRe: You Are A Genius If You Have The Solution To This Equation. by nnamdiosu(m): 8:21pm On Apr 05, 2015
fatdon2:
Op you can also slove mine.
answer is 9.
EducationRe: You Are A Genius If You Have The Solution To This Equation. by nnamdiosu(m): 8:17pm On Apr 05, 2015
Elthugnificent:
Give it your best shot.
1, 13 , 1.
Christianity EtcRe: Sleeping In Church During Service, Physical Or Spiritual Programming?. by nnamdiosu(m): 1:53pm On Apr 05, 2015
sholikay:
I wonder why some people has so much turned it to their hobby.. For some eh, they would have gotten their sleep tickets, ten minutes before the sermon. cheesy
There is this woman in my church, she can stand sleep, sit sleep, walk sleep, fly sleep sef cheesy when the ushers try to wake her from her slumber she will deny ever sleeping ( no she dey in spirit now cheesy ) ..
Some their only lively mood is praise and worship, after that sleeping things oooocheesy
Some will say they can't just fathom the reasons for their sleeping during service, no matter how they tried to stay awake.. The list is endless for those that sleeps/slumbers..
Naira landers, can it be attributed to
Physical programming like stress, insufficient sleep, pastor's boring message or
Spiritual programming like the devil trying to distract or make someone miss their blessings that moments..
Share your thoughts here.
Happy Easter Sunday.
it depends cos there are two angles to it. if someone goes to church early in the morning like in Sunday feeling fresh and once sermon starts he or she starts sleeping its spiritual. however if an individual goes to work and hustles, stands on brt , treks etc and from work goes straight to evening service and starts sleeping as a result of exhaustion its just s human factor thing. man is a triplet being. both physical and spiritual so these aspects affect him.
CareerRe: She Asked Me To Carry Her Hand Bag, I Refused And She Fired Me. by nnamdiosu(m): 7:34pm On Apr 03, 2015
klark3:
I was employed as an architect in a medium size architectural firm, my boss happens to be a lady.

I hitched a ride in her car after a meeting with a client on site, It's was even my first time of hitching a ride in her car, as I have always eschewed it, on getting to the office she asked me to carry her hand bag along, but I turned deaf ear to her request and swiftly went straight to the office, but she came to my office and gave me a sullen glare.

I thought the malice won't last long, but unfortunately for me, she fired me this morning for a no cogent reason.

I'm downcast and bewildered, she's just privilege to be the manager because it's her dad firm, she's my contemporary, and I was on the verge of supervising a gigantic project.

Was I wrong?
so instead of carrying her bag u decided to be carrying ur C.V. now to be looking for a new job abi? OK. humility is what u need bro, pride comes before a sack.
WebmastersRe: How To Be A Successful Web-developer by nnamdiosu(m): 1:27pm On Apr 03, 2015
oapeleo:
Thanks guys

LESSON TWO: FINDING THE RIGHT HOST
When it comes to small projects i use whogohost or syskay.com. Hostgator and Godaddy for big projects.

Its advisable to create a separate account for your clients. So if they wish to discontinue your services, you can hand over to them their login details to cpanel and others. If the webhost supports an affiliate program, use it on their account. And get discount for other jobs.

Whogohost and syskay.com are both nigeria webhost providers and are both good. But syskay now has a problem with sending mails.
All mails sent from the website you hosting with them goes to spam box. I dont know why?
This cost me my reputation at a time. An ecommerce site i created had all its payment, cart, check out messages going to the mail spam. This would ruin the reputation of your site. So lets put it aside for now. (Tested one 3 others websites same problem)

I havent had any problem with whogohost yet. And they have 24 hours customer care service, cheaper, good speed, affiliate program and help you with webpay integration.

IF YOU KNOW ANY OTHER GOOD NIGERIA WEB HOST BLA BLA LET US KNOW

If you doing a big project go for foreign hosts like hostgator or godaddy. They are more expensive (dollar ish u know) but reliable. They can handle websites with lost of traffic.

Now a lil secret, to get cheaper charge on hostgator use this coupon SOCIAL.

Next lesson FINDING THE RIGHT CMS
please comment to encourage more post.
.
thanks bro. we following loud and clear. Dont stop
ProgrammingRe: Help On Andriod Studio by nnamdiosu(op): 1:32pm On Apr 02, 2015
lordZOUGA:
You can use the png files you got from the UI kit a background for your text field. However, if you wish to actually get a more pleasant UI, you have to define a state list drawable using the selector tag and the use the created drawable as the background for your UI element.
oh OK thanks sir. I'll do just that. God bless ya
ProgrammingRe: Help On Andriod Studio by nnamdiosu(op): 8:36pm On Apr 01, 2015
lordZOUGA:
You will have to extract the UI component you want from the kit and use it one by one. Extract a component, place it into the corresponding drawable folder and reference it from the corresponding xml file.
wow....thanks master. Ive done that and Urs cool. only that its OK for buttons and backgrounds. but can I also use the text fields in the Ui kit to receive inputs from users and get the inputs? is it possible? or I need to pit an edit text in front of the UK text field component on my XML file? thanks soooooo very .such sir. SAI LORD ZOUGA. smiley
ProgrammingRe: Help On Andriod Studio by nnamdiosu(op): 4:34am On Apr 01, 2015
lordZOUGA:
To change your Android Studio's SDK location, right click your android project, select "module settings".
in the resulting window, slick on sdk location. you can set the sdk location from the page to the right location.

The SDK location you set here will be used in subsequent projects you create in Android studio.

OR: you can edit the local.properties file present in your project structure.

Hope this helps. smiley
hi bro. remember me? thanks for ur advice the other time. pls I wanna ask if u have any experience in using ui kits in android. I have some PNG ui design kits that I want to implement into my xml view. thanks bro
WebmastersRe: A Stock Management Script, Who Needs It? by nnamdiosu(m): 11:39am On Mar 28, 2015
phatjoe50:
An Stock Management Script written in PHP, they called it Posnic.

I'm not charging a penny. grin cheesy wink kiss
I doooooooo. Pls send to nnamdi2005@yahoo.com. thanks bro
WebmastersHelp On OCR For Speech Recognition by nnamdiosu(op): 7:54pm On Mar 26, 2015
hi guys. pls I'm on my knees. I urgently need help in designing an OCR code that can recognise characters In a native language. its implementation should be on text to speech and it has to be done in c programming language. no help or answer is too small ( even if its gerraout) but pls seriously all suggestions or advice are welcomed. thanks .
PoliticsRe: See What Jonathan Campaign Organization Distributed At A Rally Yesterday (Pix) by nnamdiosu(m): 7:49pm On Mar 26, 2015
ozoigbondu:
ls that a lantern or a ball huh huh huh i need one of those..........GEJ till 2019 grin grin grin
its both a lantern and a ball Becos Jonathan knows that if he comes back for the next four years there will no power, so the lantern is for you to manage. then the ball is to tell you wen u start suffering that he (Jonathan played you). so enjoy ur toys (dividend of democracy) Becos.........wen he comes back to rule.......nothing for you. *off to buy petrol since there's no power as usual*
WebmastersRe: Need A Very Good (freelance) Web Designer Ugently In Ibadan. by nnamdiosu(m): 10:37am On Mar 25, 2015
Sankabson:
Hello Nairalanders,


I need a Web designer urgently' the person must be in Lagos/Ibadan..

Pls Contact me on 08095868291 ( whatsapp and Call)

Info@sanusiandcolimited.com.

Thanks.
I just messaged u on Wassap.

1 2 3 4 5 6 7 8 ... 80 81 82 83 84 85 86 87 88 (of 93 pages)