₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,132 members, 8,420,502 topics. Date: Thursday, 04 June 2026 at 10:14 PM

Toggle theme

Spyde's Posts

Nairaland ForumSpyde's ProfileSpyde's Posts

1 2 3 4 5 6 7 8 9 10 (of 11 pages)

ProgrammingCommand Line Application, API And HTTP Client Library by Spyde(op): 7:11am On Feb 14, 2017
please I need some one who can help me out with, how to create a command line application dat can access a certain API, I ve read lots book but still didn't get it,
EducationRe: 20,000 To 5 Lucky Nairalanders From This Section by Spyde(m): 5:32pm On Feb 10, 2017
3079184196, firstbank, thanks in advance
CelebritiesRe: Odunlade Adekola's Gay Role In "Daudu", A Yoruba Movie (Pics, Video) by Spyde(m): 8:50am On Feb 02, 2017
psychologist:
Mtcheeew the way yoruba movie makers monopolise this guy is becoming annoying

Get 100 yoruba movies u will see him in 97 of them
when u are extremely good at what u do, everybody will be looking for u.
RomanceRe: N*ude Beach Race (for Adults 18+) by Spyde(m): 10:55am On Jan 23, 2017
grin some pple wished they had more tHan two hands
InvestmentRe: #MMM Has Kept To Their Word. Payment Confirmed by Spyde(m): 4:23pm On Jan 16, 2017
godfrey01:
To all the haters of MMM Nigeria, this is to inform you that MMM has paid and will keep paying, now I can provide help again with my spare cash.. if you are still doubting the authencity, the screenshot should convince you and please don't ask for my bank alert as it is private to me... check the date on the screentshot.. MMM all the way....
pls am just curious, did u change d currency on d setting page from bitcoin to naira, cos mine currently is on bitcoin
PhonesRe: Your Homescreen Says A Lot About You by Spyde(m): 3:56pm On Jan 15, 2017
wemmy01:
if i am to guess i will say you are a

Nacoss member
and
An introvert
U tried, but I'm an engineer
PhonesRe: Your Homescreen Says A Lot About You by Spyde(m): 11:05am On Jan 15, 2017
Try this.....

NYSCRe: Corper Ifedolapo Dies In Kano Camp by Spyde(m): 2:15pm On Nov 30, 2016
so sad indeed, every comment here is right, but at d same time we all can do our self a very big favor by exercising more, either u r going for NYSC camp or not,
EducationRe: Can You Burn Your BSC Certificate For 50 Million Dollars? by Spyde(m): 11:47am On Nov 26, 2016
will burn NYSC certificate join, as bonus
EducationRe: Rare Photos Reveal Images You Had No Idea Existed by Spyde(m): 8:19pm On Nov 24, 2016
Buyeradvertcom:
22. Dubai in 1990 and in 2008
I guess all our politicians need to see dis incase they haven't
Jobs/VacanciesRe: Have You Been Able To Apply For DPR Graduate Trainee? Share Your Experience. by Spyde(m): 4:42am On Nov 10, 2016
please how do i resolve the "PENDING - SUCCESSFUL SUBMISSION" issue
CelebritiesRe: 21 Most Beautiful Women In The Nigerian Entertainment Industry (Pics) by Spyde(m): 2:05am On Oct 31, 2016
nice but all i see is MAKE UP
Jobs/VacanciesRe: Andela: IT Training And Job by Spyde(m): 2:30pm On Oct 20, 2016
Libber:
am having problem with this question,please can anyone help
According to the description of R-rated films: Children under 17 require an accompanying parent or adult guardian (age 21 or older) and adults 25 years and under must show ID. And children under the age of 6 are not allowed in after 6:00pm.

Deadpool is an R-rated movie.

Write a JavaScript function named canIWatch that will take age as a parameter.

If the age is less than 6, return You are not allowed to watch Deadpool after 6.00pm.

If the age is 6 or more but less than 17, return You must be accompanied by a guardian who is 21 or older.

If the age is 17 or more but less than 25, return You are allowed to watch Deadpool, right after you show some ID.

If the age is 25 or greater, return Yay! You can watch Deadpool with no strings attached!.

If the age is invalid, return Invalid age.
let's see what u've done, so we Cn know how to help
Jobs/VacanciesRe: Nigeria Ports Authority Recruitment Commences by Spyde(m): 5:36am On Sep 20, 2016
the submit button is not clickable , what am i doing wronghuh?
Jobs/VacanciesRe: Andela: IT Training And Job by Spyde(m): 1:04am On Sep 06, 2016
Folzye:
bro, i don't get you..,. cos d fxn I called in the last line was to test the function code written above
when u are testing d code on ur laptop u need to call the calculate_tax function, but on the proctor, i dont think u need that as long as u've returned the 'result', i.e all ur code without the "calculate_tax({'Alex':500, 'James':20500, 'Kinuthia':70000})", i dont know if u get what i mean
PhonesRe: Airtel Social Plan #200 For 20gb Is A Scam!!!! by Spyde(m): 8:06pm On Sep 05, 2016
Jola58:
I sub for the plan this afternoon, only to notice that I was only given 200mb
same here, so mad right now
PhonesRe: Airtel Has Started Taking Away And Correcting The 20gb For #200 Plan by Spyde(m): 7:58pm On Sep 05, 2016
I did it few minutes ago and I was given only 200mb
Jobs/VacanciesRe: Andela: IT Training And Job by Spyde(m): 7:44pm On Sep 05, 2016
Folzye:
guys what could be wrong with my TAX lab, I wrote this piece of code in my the python programme itself and it worked fine, but showing errors ob the proctor site


def calculate_tax(dic):
result = {}
for name in dic.keys():
if dic[name] <= 1000:
result[name] = 0 * dic[name]
elif dic[name] <= 10000:
result[name] = (0 * 1000) + (0.1 * (dic[name] - 1000))
elif dic[name] <= 20200:
result[name] = (0 * 1000) + (0.1 * (9000)) + ( 0.15 * (dic[name] - 10000))
elif dic[name] <= 30750:
result[name] = (0 * 1000) + (0.1 * (9000)) + (0.15 * (10200)) + (0.2 * (dic[name] - 20200))
elif dic[name] <= 50000:
result[name] = (0 * 1000) + (0.1 * (9000)) + (0.15 * (10200)) + (0.2 * (10550)) + (0.25 * (dic[name] - 30750))
else:
result[name] = (0 * 1000) + (0.1 * (9000)) + (0.15 * (10200)) + (0.2 * (10550)) + (0.25 * (19250)) + ( 0.30 * (dic[name] - 50000))
return result

calculate_tax({'Alex':500, 'James':20500, 'Kinuthia':70000})


please someone help me with ideas to fix this correctly
don't bother calling the function, the test will do that
TV/MoviesRe: Name The Films You Have Watched 5 Times And You Still Find Em Interesting by Spyde(m): 8:34pm On Aug 12, 2016
Cosby show, fresh prince of bel air
European Football (EPL, UEFA, La Liga)Re: Nairaland Fantasy Premier League 2016/2017 by Spyde(m): 3:33am On Aug 03, 2016
Hey guys, I picked all my players and now I just discovered dat nearly all of them are playing away, if I decide to do some transfer now will affect my pointshuh
PoliticsRe: Historical Nigeria: A Rare Look Into The Past In Fascinating Photos. by Spyde(m): 6:20am On Jul 29, 2016
Explorers:
Do remember playing this?
Damn!!! I was a master at this!!
European Football (EPL, UEFA, La Liga)Re: Nairaland Fantasy Premier League 2016/2017 by Spyde(m): 10:03pm On Jul 22, 2016
Pls is there an app 4 d fpl?
European Football (EPL, UEFA, La Liga)Re: Nairaland Fantasy Premier League 2016/2017 by Spyde(m): 10:37am On Jul 22, 2016
Hello mukina2 , i finishd 50 something last season,MANCHESSEUN UNITED . Am i eligible for any h2d/cup? I'm rily interestd. Thanks. Spydee4real@gmail.com
European Football (EPL, UEFA, La Liga)Re: Nairaland Fantasy Premier League 2016/2017 by Spyde(m):
pls d cup codes, Mancheseun United fc here, spydee4real@gmail.com
RomanceRe: Blackandwhite Picture Challenge! by Spyde(m): 8:02pm On Jul 14, 2016
Hmmm! Let me get in on dis too. Challenge accepted for twaci

Science/TechnologyRe: 10 Internet Facts Everyone Should Know. by Spyde(m): 5:55am On Jul 14, 2016
INTERNET: Greatest invention ever
RomanceRe: Is Right For Male Doctor To Dip His Hand Into Female Kitty Cat? by Spyde(m): 5:48am On Jul 14, 2016
Absolutely right,unless she doesnt want to get well, imagine tellin ur mechanic that ur car wont start dat he shld fix it bt he shldnt open d bonnet.
Jobs/VacanciesRe: Andela: IT Training And Job by Spyde(m): 11:01pm On Jul 13, 2016
Ubah1:
I got top 15%
in like how many areas?
Jobs/VacanciesRe: Andela: IT Training And Job by Spyde(m): 11:01pm On Jul 13, 2016
Ubah1:
I got top 15%
in like how many areas?
Jobs/VacanciesRe: Andela: IT Training And Job by Spyde(m): 10:59pm On Jul 13, 2016
ladiadeniran:
mine was 5%
in like how many areas??

1 2 3 4 5 6 7 8 9 10 (of 11 pages)