Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,165,138 members, 7,860,088 topics. Date: Friday, 14 June 2024 at 04:33 AM

Ignaz's Posts

Nairaland Forum / Ignaz's Profile / Ignaz's Posts

(1) (2) (3) (4) (5) (6) (of 6 pages)

Education / Re: National Open University Of Nigeria (NOUN) Students by Ignaz(m): 1:59am On Oct 23, 2015
good morning fellow NOUNites

can anybody help a brother with the solutions for either or both of TMAs Phy113 and Mth122

i'd be forever greatful
European Football (EPL, UEFA, La Liga) / Re: Official Chelsea Fan Thread: Champions Of Europe 2021 by Ignaz(m): 1:33am On Oct 14, 2015
chimerase2:
bros no be only u de tank God oh
God has finally answered our prayers
Wia is ma sweet ediwife come oh grin
Ivanovic is out for 3 weeks grin
3 straight winning grin

Chelsea fans though

6 Likes

Programming / Re: Help! Visual Studio Won't Install by Ignaz(m): 9:25pm On Oct 12, 2015
luksybee:


Please verify before answering...

They don't run on service pack zero, but surely works on win7 sp1 and Win 8.1

@op ignore the IE error, you should be able to continue installation without it

well, it still won't install
i'm now using notepad++ though
thanks
Programming / Re: VOTE: Seun Add Direct Message To Nairaland by Ignaz(m): 1:58pm On Oct 11, 2015
NO BLOCK BUTTON THOUGH
Programming / Re: VOTE: Seun Add Direct Message To Nairaland by Ignaz(m): 1:57pm On Oct 11, 2015
Supermiy:
NL Nor Be Twitter Jur..Follow Kor Accompany Ni grin

lol
i don't want goblins with the brainsize of an ascaris worm spamming my inbox
Programming / Re: Help! Visual Studio Won't Install by Ignaz(m): 5:31pm On Oct 10, 2015
gimakon:
For Python : Aptana Studio,Notepad ++, Python Fiddle, Sublime

Visual Basic.net : Visual Studio

Microsoft has stopped the production of Visual Basic. It's being called visual basic.net instead.

thanks, sir
Programming / Re: Help! Visual Studio Won't Install by Ignaz(m): 5:29pm On Oct 10, 2015
proxy20:

what the size of the community version

3.7GB
i couldn't risk downloading it angry angry
Programming / Re: Help! Visual Studio Won't Install by Ignaz(m): 5:28pm On Oct 10, 2015
PheemyS:
Hi u. If u are using either vs 15,13 or 12 it wont run on win 7. vs15 and 13 run on win 8.1. While vs12 can run on win 8 and above. Best of luck on your coding journey

which version are you suggesting then?
thanks
Programming / Re: VOTE: Seun Add Direct Message To Nairaland by Ignaz(m): 4:30pm On Oct 10, 2015
if there must be a Direct Message box,
then User A should be able to DM only those
who follow him/her
Programming / Re: Robotics by Ignaz(m): 4:25pm On Oct 08, 2015
proxy20:


you can build a robot if only you are still in school as a group project work to gain national recognition and reduce spending . spending huge amounts for AI is a complete waste .This area is not appreciated in Nigeria , looking at the reality .

i get the point. but i don't know why i feel unperturbed still

FincoApps:
I don't get. Is AI not just making d computer act like it think. Any language or script can do that.... Except you mean robotics

i guess he meant robotics
Programming / Re: Robotics by Ignaz(m): 9:50pm On Oct 07, 2015
proxy20:
AI has it's own programming languages .learn c++,c# , html, html5 ,java, python, ruby, .net before AI programming language . The kits are expensive in Nigeria . https://en.m.wikipedia.org/wiki/List_of_programming_languages_for_artificial_intelligence

this is heart shattering, sir
me and this OP share the same dreams grin

1 Like

Programming / Re: I Want To Learn Programming. Which Language Should I Start With? by Ignaz(m): 5:46pm On Oct 06, 2015
i'm learning python from code academy and almost through with it. can anyone suggest a similar language to python? or any language that can act as an alternative and does exactly what python does? i'd gladly accept your opinions
Programming / Help! Visual Studio Won't Install by Ignaz(m): 5:43pm On Oct 06, 2015
please gurus
i'm learning python and from a video i watched on youtube, it's best to try using python on visual basic. i've been trying unsuccessfully to install it, it keeps saying "Install Internet Explorer !0" which i did. now it's still not installing


my system is using a windows 7 ultimate
Programming / Re: Hw Can Someone Create A Video Streaming Map in java by Ignaz(m): 1:20pm On Oct 03, 2015
53cur3m0d3:
A Video streaming map? Wow! You're onto something buddy, hang on in there. And yes, you can create your own API.


how, if i MAY ask?
Programming / Re: Python Pros. . .please Help!!! by Ignaz(m): 8:09pm On Oct 01, 2015
spikesC:


Fixed: http://pastebin.com/vFcWdKRz

Problem was with indentation

thanks alot Boss
so relieved to see it finally work out
Programming / Re: Python Pros. . .please Help!!! by Ignaz(m): 9:19pm On Sep 30, 2015
http://pastebin.com/GaNf8v2w


anybody? please help correct the BREAK loop
Programming / Re: Python Pros. . .please Help!!! by Ignaz(m): 8:45pm On Sep 30, 2015
spikesC:


http://pastebin.com

Make sure you select syntax highlighting as python


http://pastebin.com/p0Twmuit
Programming / Re: Python Pros. . .please Help!!! by Ignaz(m): 8:39pm On Sep 30, 2015
spikesC:
Use pastebin to share your code then post the link here. Spaces are very important in python so it would be hard for anyone to understand your code here

what is pastebin please?
Programming / Python Pros. . .please Help!!! by Ignaz(m): 8:33pm On Sep 30, 2015
from random import randint

board = []

for x in range(5):
. board.append(["O"] * 5)

def print_board(board):
. for row in board:
. print " ".join(row)

print "Let's play Battleship!"
print_board(board)

def random_row(board):
. return randint(0, len(board) - 1)

def random_col(board):
. return randint(0, len(board[0]) - 1)

ship_row = random_row(board)
ship_col = random_col(board)
print ship_row
print ship_col

# Everything from here on should go in your for loop!
# Be sure to indent four spaces!
for turn in range(4):
. print "turn", turn + 1
guess_row = int(raw_input("Guess Row:"wink)
guess_col = int(raw_input("Guess Col:"wink)

if guess_row == ship_row and guess_col == ship_col:
. print "Congratulations! You sunk my battleship!"
. break
else:
. if (guess_row < 0 or guess_row > 4) or (guess_col < 0 or guess_col > 4):
. print "Oops, that's not even in the ocean."
. elif(board[guess_row][guess_col] == "X"wink:
. print "You guessed that one already."
. else:
. print "You missed my battleship!"
. board[guess_row][guess_col] = "X"
. if turn==3:
. print 'Game Over'
# Print (turn + 1) here!
print 'Turn', turn+1
print_board(board)

. # Print (turn + 1) here!



i am stuck. the problem here is the bolded word in the quote above. where do i place the break? i intend to break the loop after the first if statement
any solution is sincerely appreciated
European Football (EPL, UEFA, La Liga) / Re: Walsall Vs Chelsea: Capital One Cup (1 - 4) On 23rd September 2015 by Ignaz(m): 5:07pm On Sep 23, 2015
Let's go!!!
European Football (EPL, UEFA, La Liga) / Re: Official Manchester United Fan Thread:''20 Times EPL Champion by Ignaz(m): 12:36am On Sep 23, 2015
the pain still hurts. . . you couldn't have forgotten
European Football (EPL, UEFA, La Liga) / Re: Official Manchester United Fan Thread:''20 Times EPL Champion by Ignaz(m): 12:35am On Sep 23, 2015
raumdeuter:


UEFA ranks Bundesliga ahead of your useless league

Your useless league has 4 teams in CL, 3 lost 2 already knocked out of Europa cup

How more useless can a league be?

I dont know the team you support but can you tell us the result of the last 2 matches your team played with Bayern I dare you to post it here


remember Allianz Arena 2012?
European Football (EPL, UEFA, La Liga) / Re: Official Manchester United Fan Thread:''20 Times EPL Champion by Ignaz(m): 12:18am On Sep 23, 2015
raumdeuter:


Sadio Mane can score 3 goals in 3 mins, Berbatov can score 5 goals in a game but
Lewandoski that scored 4 goals in a CL semi final match wont score in EPL .

No wonder your useless EPL team are struggling year after year in the CL

in what league what the quickest goal scored?
against what league was the most popular dribble done?
Dimitr scored 5 in 90mins and Lewy scored 5 in 9mins, what doesn't that imply?
your league epitomizes mediocrity
European Football (EPL, UEFA, La Liga) / Re: Official Manchester United Fan Thread:''20 Times EPL Champion by Ignaz(m): 11:20pm On Sep 22, 2015
raumdeuter:


Maybe thats why The Bundesliga has 3 win out of 4 teams in the CL gameweek while the EPL as usual 3 losses out of 4 teams

When a player like Sadio Mane can be scoring the fastest hat trick in history

If Sadio mane can score a hat trick in 3 mins when Muller, Lewandoski get there maybe they would score the hat trick before game even begin league of the blind leading the blind

what is this nonsense? Lewandoski can't stand the EPL's defenders menacing look yet alone think of scoring 5 goals in 9 minutes against a relegation threatened EPL side

gerrarahia Mr
Dating And Meet-up Zone / Re: "Chat Central and Derailer's Paradise"...Welcome! by Ignaz(m): 4:37pm On Sep 22, 2015
QatarPlayboy:
K.

nice dp

thanks bro
Dating And Meet-up Zone / Re: "Chat Central and Derailer's Paradise"...Welcome! by Ignaz(m): 2:21pm On Sep 20, 2015
QatarPlayboy:

mk ur interest known nd i flex u to stupor. u knw INDIGO at GRA?

will hit you up when i'm chanced but definitely not today
Computers / Re: Post Your Computer (PC) Troubles Here. by Ignaz(m): 1:23pm On Sep 20, 2015
networkers in the house
i'm having problems changing my ip
i've downloaded ultra vpn yet it's still showing my original ip
any help?
Dating And Meet-up Zone / Re: "Chat Central and Derailer's Paradise"...Welcome! by Ignaz(m): 12:52pm On Sep 20, 2015
danbrowndmf:
are a surveyor?

no
a PA
Dating And Meet-up Zone / Re: "Chat Central and Derailer's Paradise"...Welcome! by Ignaz(m): 11:21am On Sep 20, 2015
danbrowndmf:
yes i guess so. So ur in ph now?

currently in benin
i haven't been there this year and don't think i am going to be there this year
job took me there
Dating And Meet-up Zone / Re: "Chat Central and Derailer's Paradise"...Welcome! by Ignaz(m): 11:06am On Sep 20, 2015
danbrowndmf:
lols. I have eyes,i see pple turn up for clubs mostly on sundays in PH. So i dnt need to be there to know

the most crowds turn up on sundays but fridays and saturdays are club-filled days too
Dating And Meet-up Zone / Re: "Chat Central and Derailer's Paradise"...Welcome! by Ignaz(m): 10:48am On Sep 20, 2015
danbrowndmf:
where do u club? Haven't been to club before though...never my thing!.sad

haha! ph mentality!
never been to one yet he knows the only party on sundays grin grin
Dating And Meet-up Zone / Re: "Chat Central and Derailer's Paradise"...Welcome! by Ignaz(m): 10:44am On Sep 20, 2015
Sassybae:
morning..

how are you doing today?

(1) (2) (3) (4) (5) (6) (of 6 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. 27
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.