₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,328,428 members, 8,435,608 topics. Date: Monday, 29 June 2026 at 03:17 AM

Toggle theme

Omotodun1's Posts

Nairaland ForumOmotodun1's ProfileOmotodun1's Posts

1 2 3 4 5 (of 5 pages)

Dating And Meet-up ZoneRe: Do You Think Am Handsome by omotodun1(m): 9:40pm On Apr 18, 2013
The amazing thing is that some woman somewhere thinks that you are prince charming. Nothing do you my brother. Nothing do you at all.
Dating And Meet-up ZoneRe: Do You Think Am Handsome by omotodun1(m): 9:35pm On Apr 18, 2013
You sir have just won the Internet.

ọmọ_τó_dùn falls from the Statue of Liberty.
Dating And Meet-up ZoneRe: Do You Think Am Handsome by omotodun1(m): 9:33pm On Apr 18, 2013
www.nairaland.com/attachments/1068085_575846_258816747547321_361876927_n_jpg7671ee46c9937102c0f9a28a2142d5d6

I don die ooooooooooooooooooooooooooooooooooooo. Wetin be this o ?...............


LMAOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.

https://www.midwestsportsfans.com/wp-content/uploads/2011/06/mj-laughing.gif
PoliticsRe: Nigerians Wake Up And Fight by omotodun1(m): 7:01pm On Apr 18, 2013
^
LMAO. Oh boy, see proper Naija man. Me sef na in-house gentleman I be o. And btw, I am an only child. Let those who have siblings do the field work.
PoliticsRe: Nigerians Wake Up And Fight by omotodun1(m): 5:56pm On Apr 18, 2013
@chucky234

Lead the way my brother. We shall promptly follow thy lead.
Christianity EtcRe: Evil Confirms Absence Of God. by omotodun1(m): 10:59pm On Apr 17, 2013
Bump.
PoliticsRe: How Do We Stop This 'first To Comment' Menace? by omotodun1(m): 10:58pm On Apr 17, 2013
Kindly point out my errors, like I did with yours.
PoliticsRe: How Do We Stop This 'first To Comment' Menace? by omotodun1(m): 9:19pm On Apr 17, 2013
Raymondenyi: Slow kids who have plagued NL are obviously the ones doing the 1st to comment poo; NL has over 70% underage kids, so what do u expect?

@OP
Just allow the kids to catch their stùpid and silly fun; when they are done, then the adults will come and deliberate on the issue @ hand.

On a more serious note I think there should be an adult group section and they alone should be allowed to comment on some really pressing issues.
With your grammar I doubt you'd be allowed in the adult section. You can thank me for fixing your mess.
Jokes EtcRe: Funny 'first To Comment' Vote Of Thanks by omotodun1(m): 7:39pm On Apr 17, 2013
I will never get enough this amazing speech.
Foreign AffairsRe: Saudi Arabia Deports ‘irresistible’ Men Deemed ‘too Handsome’ To Women by omotodun1(m): 5:45pm On Apr 17, 2013
This is good news for me because when God was handing out handsomeness, he overlooked me, so I'll never be deported from Saudi Arabia.
ProgrammingRe: Challenge: Strong Password Filter by omotodun1(m): 5:27pm On Apr 17, 2013
pc guru: mehn got to admit i love the way you simplified it,I was already thinking of something too complicated, nice one bro
Thank you.
ProgrammingRe: Challenge: Strong Password Filter by omotodun1(m): 5:22pm On Apr 17, 2013
^
I can't argue with that. I probably sacrificed efficiency for elegance.
CelebritiesRe: New Pictures Of Serena Williams: Sexy? by omotodun1(m): 10:34am On Apr 17, 2013
She is literally a strong black woman. I am not ashamed to say that I can't handle that. If she jam me, I go break into two. I'll leave her for the ajepakos of the world.

Fear no go gree make ordinary man argue with this woman.
ProgrammingRe: Challenge: Strong Password Filter by omotodun1(m):
Javascript

[color=#000066]function[/color] [color=#202020]isStrongPassword[/color]([color=#808080]password[/color]) [color=#009900]{[/color]
[color=#993333]var[/color] [color=#000066]m[/color] = [color=#ff0000]""[/color], [color=#000066]i[/color],
[color=#000066]regex[/color] = [color=#009900][[/color]
[color=#009900][[/color][color=#ff0000]/[a-z]+/[/color], [color=#ff0000]'at least one lowercase alphabet'[/color][color=#009900]][/color],
[color=#009900][[/color][color=#ff0000]/[A-Z]+/[/color], [color=#ff0000]'at least one uppercase alphabet'[/color][color=#009900]][/color],
[color=#009900][[/color][color=#ff0000]/[+&@]+/[/color], [color=#ff0000]"at least one of the characters '+', '&', and '@'"[/color][color=#009900]][/color],
[color=#009900][[/color][color=#ff0000]/[0-9]+/[/color], [color=#ff0000]'at least one decimal'[/color][color=#009900]][/color],
[color=#009900][[/color][color=#ff0000]/^[^\s]+$/[/color], [color=#ff0000]'no space character'[/color][color=#009900]][/color]
[color=#009900]][/color]

[color=#993333]for[/color] [color=#009900]([/color][color=#000066]i[/color] [color=#993333]in[/color] [color=#000066]regex[/color][color=#009900])[/color]
[color=#993333]if[/color] [color=#009900]([/color]![color=#000066]regex[/color][color=#009900][[/color][color=#000066]i[/color][color=#009900]][[/color][color=#0000dd]0[/color][color=#009900]][/color].[color=#202020]test[/color][color=#009900]([/color][color=#808080]password[/color][color=#009900]))[/color]
[color=#000066]m[/color] += [color=#ff0000]'Must contain '[/color] + [color=#000066]regex[/color][color=#009900][[/color][color=#000066]i[/color][color=#009900]][[/color][color=#0000dd]1[/color][color=#009900]][/color] + [color=#ff0000]".\n"[/color];

[color=#000066]m[/color] == [color=#ff0000]""[/color] ? [color=#202020]alert[/color] [color=#009900]([/color][color=#ff0000]'Your password is strong.'[/color][color=#009900])[/color] : [color=#202020]alert[/color] [color=#009900]([/color][color=#000066]m[/color][color=#009900])[/color];
[color=#009900]}[/color]
CelebritiesRe: Eucharia Anunobi Spotted At An Event: Hot Or Not by omotodun1(m): 1:34am On Apr 17, 2013
Coldfeet: Slander is a very distasteful attribute! You want people to open ya yeye site by force! angry idiot like you go get a life and stop meddling in other peoples. She's now sanctified and ordained as an EVANGELIST!!! NEVER will she dress that way now. Who are the vomits called mods in this section? How did this trash make fp? What's the aim? To tarnish her image? Or bring ridicule to the body of Christ where she is now a servant? Whoever brought dis to fp I CURSE U! Vultures will have a filled day at ur slimy remnants! If this post is hidden or am banned then you've just sealed the curse with a BIG AMEN!!!!
You are an amazing Christian. This is exactly what Jesus Christ would do: rain down curses upon those who have done wrong.
PoliticsRe: Abuja - The City Beautiful (Pictures) by omotodun1(m): 1:12am On Apr 17, 2013
Rossikk: You need to spend more time learning basic economics than coming here to rant about things you know little about. GDP is how you measure the level of economic activity in a region, not your perceptions about the place ''booming'' or ''not booming''. Washington DC's annual GDP is $93 billion.

https://www.google.co.uk/#hl=en&gs_rn=9&gs_ri=psy-ab&tok=lOsOufYRkVILo4sTLzLgTg&cp=16&gs_id=1u&xhr=t&q=washington+dc+gdp&es_nrs=true&pf=p&output=search&sclient=psy-ab&oq=washington+dc+gd&gs_l=&pbx=1&bav=on.2,or.r_cp.r_qf.&bvm=bv.45218183,d.d2k&fp=68b7b46c5a4c4a7&biw=1280&bih=673


Detroit's is over $400 billion
http://en.wikipedia.org/wiki/Economy_of_metropolitan_Detroit

In terms of ''opportunities for the common man'' they're not even close.

As for the rest of the claptrap you typed, the least said about that the better.
Good job Mr. Rossikk. But try not to mislead others. The 2011 GDP of Michigan is $385 billion dollars, of which Detroit contributes a little over $200 billion dollars; although the GDP of Detroit is higher than that of Washington D.C, the GDP per capita of the latter is the highest in the country.

http://www.bea.gov/iTable/iTable.cfm?ReqID=9&step=1#reqid=9&step=1&isuri=1
WebmastersRe: My Fresh Job by omotodun1(m): 12:32am On Apr 17, 2013
@greenmouse

Haba. So that means only those who have websites can review your websites?
Nairaland GeneralRe: Posting Will Be Disabled For A Few Hours by omotodun1(m): 6:17pm On Apr 15, 2013
^
It took me a while to get it. Nice double entendre.
WebmastersRe: My Fresh Job by omotodun1(m): 8:37am On Apr 15, 2013
^
I doubt that will ever happen. The chief reason for a mediocre website is the customer who is willing to pay for it.
Nairaland GeneralRe: Posting Will Be Disabled For A Few Hours by omotodun1(m): 11:32pm On Apr 14, 2013
@albacete

I would convert the likes to money and use it to pay the dowry of my would-be bride.
Nairaland GeneralRe: Posting Will Be Disabled For A Few Hours by omotodun1(m): 11:29pm On Apr 14, 2013
^
I already did.
Nairaland GeneralRe: Posting Will Be Disabled For A Few Hours by omotodun1(m): 11:21pm On Apr 14, 2013
Please, dash this humble brother a couple of likes. I want to make it to 100 likes. Let's go people. As you are liking my post, may God, Allah, Jesus etc bless you yanfuyanfu.
ProgrammingRe: Google Code Jam Contest 2013 by omotodun1(m): 8:46pm On Apr 14, 2013
@Otuabaroku

Thank you.
ProgrammingRe: Google Code Jam Contest 2013 by omotodun1(m): 8:45pm On Apr 14, 2013
@skydancer

I used Java. I solved the first one(both small and large input) and the third one (only small input; time expired for large because my algorithm was poor).

The lawnmower was indeed very interesting. But I'll admit that I didn't understand it.
WebmastersRe: My Fresh Job by omotodun1(m): 8:17pm On Apr 14, 2013
^
Yes I have validated Facebook, eBay, Google, and so many top websites. It is not a secret that these sites--and many of the top websites--do not validate, so what's your point?
WebmastersRe: My Fresh Job by omotodun1(m): 7:59pm On Apr 14, 2013
@pc_guru

I wholeheartedly agree. One of the primary reasons the West leads the world is because of the manner in which they criticize every aspect of their lives and society. Go to DevianArt and Reddit to read reviews. You will want to hang yourself. Those folks do not hold back.
ProgrammingRe: Google Code Jam Contest 2013 by omotodun1(m): 7:30pm On Apr 14, 2013
^
I was able to qualify for next round. I barely qualified though---I started extremely late.
WebmastersRe: My Fresh Job by omotodun1(m):
I do not understand why some posters are demanding that @GraphicPlus show his work. His reviews were not only extremely professional but they were also on point. I wouldn't want critics to tell me what I have done well with my site; I would want them to tell me what I have done wrong.

We need to shed this mentality that critics are haters. Also, a good critic does not necessarily make a good web designer or programmer; the converse is also true. Film critics do not have to be good actors or directors; they just have to understand what makes a good movie.
ProgrammingRe: Google Code Jam Contest 2013 by omotodun1(m): 9:25pm On Apr 13, 2013
I just registered now. I have three hours left. Hopefully I can make the cut.
Christianity EtcRe: Pastor Adeboye: A Jet is Necessary For God's Work by omotodun1(m): 5:25pm On Apr 13, 2013
musKeeto: Young man, touch not Gods annointed.

Give your life, and he shall cause you to mount up on wings like cockroach
[img]http://3.bp..com/-Lt4bgksHZ-g/UMMZG2qffyI/AAAAAAAADyE/3W_wRPdUdkg/s1600/pastor-jet.gif[/img]

Going to meet his Oga @ d top...
ọmọ_τó_dùn Falls from an Iroko tree and collapses.
Music/RadioRe: Ghanaians Mocking P-square's Alingo by omotodun1(m): 12:12am On Apr 13, 2013
@ekt_bear

Why have you misled the folks on this thread? How were the Ghanaians mocking us?
Christianity EtcRe: Evil Confirms Absence Of God. by omotodun1(m): 12:09am On Apr 13, 2013
^
You should be a politician. Every single issue I raised you have sidestepped. That is not unexpected. The omniscience of God is an intrinsic difficulty for any religion, especially Christianity. Omniscience and freewill cannot coexist, for how can the latter exist if any decisions are predetermined.

I determined what I wanted to do with my life since I was a preteen. Once again, you intelligently made another wrong assumption. I don't expect you not to dance around the points I raised. This is not about God's mind; it is about simple logic. His omniscience makes our existence meaningless. That, you cannot argue. I expect another round of insults and unrelated points from you. Fire away.

1 2 3 4 5 (of 5 pages)