Programming › Re: Nigerian Coders This Is For You! by ANTONINEUTRON(m): 1:18pm On Sep 25, 2016 |
So J2me And Freelance Na Programing Lang  |
Literature › Re: Memo Of A Male Sex Addict by ANTONINEUTRON(m): 9:07pm On Sep 23, 2016 |
|
Literature › Re: Memo Of A Male Sex Addict by ANTONINEUTRON(m): 9:04pm On Sep 23, 2016 |
KiziitoKennel: Are you sure? or na those other parts carry you come here i can't believe dat u can't believe me 
|
Literature › Re: Memo Of A Male Sex Addict by ANTONINEUTRON(m): 5:25pm On Sep 23, 2016 |
i love diz story.
especially d ghetto part |
Computers › Re: Features To Consider When Buying A Laptop.. by ANTONINEUTRON(m): 2:00pm On Sep 23, 2016 |
KvnqPrezo: Thanks all...
.
lalasticlala and mynd44 please front page!!! Nice One Bro, |
Programming › Re: The most popular programmer on Nairaland 2016 Edition by ANTONINEUTRON(m): 10:30pm On Sep 21, 2016 |
|
Webmasters › Re: Useful Abbreviations We See On Internet & Phones Everyday And Their Meanings. by ANTONINEUTRON(m): 10:18pm On Sep 21, 2016 |
What abt
.
.
.
U-TRY?? |
European Football (EPL, UEFA, La Liga) › Re: Barcelona Vs Atlético Madrid (1 - 1) On 21st September 2016 by ANTONINEUTRON(m): 7:25pm On Sep 21, 2016 |
operation break ATM
Dey broke our heart in champions league |
Romance › Re: MEN: 7 Signs She Is A Perfect Girl, Take Her To Mama! by ANTONINEUTRON(m): 9:16pm On Sep 19, 2016 |
get sand nd mould one |
Sports › Re: When They Finally Catch And Deal With The Person That Sold Pogba To Man U £100m by ANTONINEUTRON(m): 9:12pm On Sep 19, 2016 |
Brooklynsouth: Jordin henderson shot what a fantastic goal according jim begglin buahaha
|
|
Celebrities › Re: Imagine You See This While Traveling At Night by ANTONINEUTRON(m): 11:25pm On Sep 18, 2016 |
gear 5
acceleration = 190km/h |
Romance › Re: If You're The Wife Of This Man, I What Will You Do?? by ANTONINEUTRON(m): 11:22pm On Sep 18, 2016 |
I no be Woman
so this question isn't for me
|
Romance › Re: See The Ghanaian Babe That Wants Relationship With Asamoah Gyan At All Cost by ANTONINEUTRON(m): 11:05pm On Sep 18, 2016 |
Smellymouth: This one wen Ghana boys don chop taya..
Gerrarahia mhen.. she do style fine ooo but no be stretch marks I see so
|
Phones › Re: Chinese Phone Makers And Their 'madness' by ANTONINEUTRON(m): 10:51pm On Sep 18, 2016 |
op e dey pain u say people buy Wetin they afford.
is like one of ur guys wit 5000mah phone refuse to share him phone wit u naim make u dey stress d Power Bank part
AnyWay sha........
|
Romance › Re: Fun!!! If You Were To SACK One Of These Female Staffs – Who Will It Be?[pics] by ANTONINEUTRON(m): 10:35pm On Sep 18, 2016 |
I will sack three except the secretary(Cuz they re ashee'sss)
and give d three job to those guys roaming NL job section
Cuz change begins with me
|
Romance › Re: Fun!!! If You Were To SACK One Of These Female Staffs – Who Will It Be?[pics] by ANTONINEUTRON(m): 10:35pm On Sep 18, 2016 |
I will sack three except the secretary(Cuz they re ashee'sss)
and give d three job to those guys roaming NL job section
Cuz change begins with me
|
Programming › Re: How I Wished!!! by ANTONINEUTRON(m): 8:57pm On Sep 18, 2016 |
I just dey look u
|
Webmasters › Re: 5 Powerful Ways To Drive Traffic To Your Website. The Gurus Dont Tell You by ANTONINEUTRON(m): 8:41pm On Sep 18, 2016 |
e make sense
saving diz page
DIRECT |
Programming › Re: READING SOURCE CODES - One Of The Best Developer Practice by ANTONINEUTRON(m): 6:49pm On Sep 18, 2016 |
[quote author=ojodombe post=49439631][/quote]JavaScript |
Programming › Re: Is It Possible To Build An App Wit A Phone by ANTONINEUTRON(m): 6:47pm On Sep 18, 2016 |
KvnqPrezo: .
The problem is how to upload via ftp have u sign up  ? |
Programming › Re: READING SOURCE CODES - One Of The Best Developer Practice by ANTONINEUTRON(m): 11:29am On Sep 17, 2016 |
and this
<script language="JavaScript">
$('.cont').addClass('hide');
$('#que1').removeclass('hide);
var count = $('.questions').length;
/*next button*/
$(document).on('click','.next',function(){
var element = $(this).attr('id');
var last =parseInt(element.substr(element.length -1));
var nex = last+1;
$('#que1'+last).addClass('hide');
$('#que1'+nex).removeClass('hide');
});
</script>
|
Programming › Re: READING SOURCE CODES - One Of The Best Developer Practice by ANTONINEUTRON(m): 11:26am On Sep 17, 2016 |
explain
function hasAttr(o, attr) { return $(o).attr(attr) != undefined; }
(function ( $ ) { $.fn.rooster = function(action, options) { /**************************************** * Jquery Rooster! * A simple countdown timer. * * Currently does not accept date time formats * *****************************************/
var INTERVAL = 100;
var el = $(this);
var defaults = { seconds: el.data('rooster-seconds') || 0, onComplete: el.data('rooster-oncomplete') || null, onStart: el.data('rooster-onstart') || null, onStop: el.data('rooster-onstop') || null, includeMinutes: hasAttr(el, 'data-rooster-includeminutes') ? el.data('rooster-includeminutes') : true,
state: el.data('state') || 'idle', };
var opts = $.extend({}, defaults, options);
var milliseconds = opts.seconds * 1000 + INTERVAL;
function updateTimer() { var displayTime; var seconds; if (opts.includeMinutes) { var minutes = Math.floor((milliseconds / 1000) / 60); minutes = minutes.toString(); while (minutes.length < 2) minutes = '0' + minutes;
seconds = Math.floor(milliseconds / 1000) % 60; seconds = seconds.toString(); while (seconds.length < 2) seconds = '0' + seconds;
displayTime = minutes + ':' + seconds; } else { seconds = Math.floor(milliseconds / 1000); seconds = seconds.toString();
displayTime = seconds; } el.html(displayTime); }
function clearRoosterTimer() { clearInterval(el.data('countdown')); el.data('countdown', null); }
function onInterval() { milliseconds -= INTERVAL; updateTimer(); if (milliseconds > 0) { return; } clearRoosterTimer(); if (opts.onComplete) { if (typeof(opts.onComplete) == 'string') { eval(opts.onComplete); } else if (typeof(opts.onComplete) == 'function') { opts.onComplete(); } } }
switch (action) { case 'start': // Start the Timer el.data('state', 'active'); el.data('countdown', setInterval(onInterval, INTERVAL)); return this; case 'stop': el.data('state', 'idle'); clearRoosterTimer(); return this; default: // Initialize updateTimer(); return this; } };
}( jQuery ));
|
Programming › Re: Developers, Come In Lets Be Truthful. by ANTONINEUTRON(m): 11:17am On Sep 17, 2016 |
anything readable from online to pdf |
Programming › Re: Is It Possible To Build An App Wit A Phone by ANTONINEUTRON(m): 10:17am On Sep 17, 2016 |
KvnqPrezo: I tried it with Byethost ... . Discovered 000webhost but can't register on mobile because Google captcha don't support it... , use free web hosting area I currently use it |
Programming › Re: Is It Possible To Build An App Wit A Phone by ANTONINEUTRON(m): 6:45pm On Sep 16, 2016 |
KvnqPrezo: See the problem is this!
. I don't know how to upload to webhosting.. . I tried using online ftp client but not working... . Do have any other means
(the cafe I do go don't have any tool for developers only the browser) which host are u using?? |
Programming › Re: Is It Possible To Build An App Wit A Phone by ANTONINEUTRON(m): 6:33pm On Sep 16, 2016 |
KvnqPrezo: Can I develop a web site using mobile phone ?
I did the one below with my phone... .(html and CSS) . I wanna add php ...possible Just look for a free host get a code editor (i use 920text, cuz it support lots of language and light in size) then use ur code editor to write ur php code and save as theFileName.php and upload to your host to run ur code. if u want to run ur php code locally without internet connection, use Palapa Web Server (the size is almost 35mb) |
Programming › Re: Is It Possible To Build An App Wit A Phone by ANTONINEUTRON(m): 6:22pm On Sep 16, 2016 |
|
Programming › Re: Is It Possible To Build An App Wit A Phone by ANTONINEUTRON(m): 6:12pm On Sep 16, 2016 |
use AIDE
and i think u can also developed android apps online Search On Google |
Education › Re: Jamb Lists 8 Conditions Nigerian Universities Must Stick To In Admitting Student by ANTONINEUTRON(m): 6:02pm On Sep 16, 2016 |
abeg make God epp person ooo
Now we dey pray for luck.
|
Programming › Re: Official Wadup Messenger Is Now Live/available, Download! by ANTONINEUTRON(m): 11:04pm On Sep 14, 2016 |
buahahahaha wadup  ?
|
Science/Technology › Re: Flood In Owerri Almost Carried A Lady Away (Photos) by ANTONINEUTRON(m): 5:47pm On Sep 13, 2016 |
they commot her from water then she fell back Cuz the water has magnetic effect
FULLSTOP........
bye bye I gat some tin to do
|