God, I hated that show. Slapped my sister every time I saw she was watching it. Mind you, I hate all other animes:Trollestia:
I don't care much for anime myself. I did enjoy Summer Wars though, that was a fun movie. Also, anything by Ghibli.
I guessed but Hey, I understand people like them. Just mostly not my thing. There are moments I have enjoyed some, mainly in "Fruits Basket" and "King of Bandit Jing" ( my sis is an anime nut, who cosplays Deathnote, and I watch some of the funnier animes with her when I'm bored).
I'm not really a fan of cosplay. It sort of 'impurifies' the characters. Wow, that sounded so fascist it was untrue.
I think some cosplay is pretty cool, especially from stuff I really like. (I've sometimes wanted to cosplay as pyramid head) Legendary Cosplay
If you're not a big fan just give these a try: Hellsing ova or the original. High School of the Dead Cowboy Bebop (Outlaw Star personally)
High school of the dead is awesome. I little to much "fan service" for me, but still awesome. My little project is done. YAY. wanna see?
Okay, here you go. It's not the best, but oh well, maybe next time it will be. Spoiler: The picture http://pixelhope.deviantart.com/#/d4ktcxa
Melko hyvä, Pixel. (That means 'Quite good'. I just wrote it in Finnish because Finnish is cool.) In any case, have some pointless Python. Code: # --DEFINING VARIABLES AND CLASSES-- # err = False class MyJohn: name = "" age = 0 maritalStatus = "" def __init__(self, x, y, z): self.name = x self.age = y self.maritalStatus = z def printAll(self): print("{0}, {1}, {2}.".format(self.name, self.age, self.maritalStatus)) class Polygon: angleNum = 0 def __init__(self, x): self.angleNum = x print("Lol, I have no idea what to do with {0}.".format(self.angleNum)) class Employee(MyJohn): job = "" def __init__(self, x, y, z, a): self.name = x self.age = y self.maritalStatus = z self.job = a def printAll(self): print("{0}, {1}, {2}, {3}.".format(self.name, self.age, self.maritalStatus, self.job)) # --MAIN STUFF-- # John = MyJohn("Cake", 18, "Dead") Mary = Employee("Lord", 35, "Without a hope in the world", "Cleaner") John.printAll() Mary.printAll() while True: try: if err == False: myAng = int(input("Enter angle number: ")) else: myAng = int(input("Enter angle number again: ")) except ValueError as e: print("That's not a number! At least, Python says there's an {0}".format(e)) err = True else: break myPol = Polygon(myAng)