General chat thread

Discussion in 'General discussion' started by SR20DETDOG, May 4, 2011.

Thread Status:
Not open for further replies.
  1. testyal1

    testyal1 Princess of the Forum
    Banned

    Joined:
    Jun 11, 2011
    Messages:
    5,692
    Bro hoofs Received:
    1
    Occupation:
    Activist/Priest
    Location:
    Rata Sum
    I love messing around with my signature.
     
  2. Xaniith

    Xaniith Princess of the Forum
    Old-Timer

    Joined:
    Dec 20, 2011
    Messages:
    10,717
    Bro hoofs Received:
    273
    God, I hated that show. Slapped my sister every time I saw she was watching it.
    Mind you, I hate all other animes:Trollestia:
     
  3. testyal1

    testyal1 Princess of the Forum
    Banned

    Joined:
    Jun 11, 2011
    Messages:
    5,692
    Bro hoofs Received:
    1
    Occupation:
    Activist/Priest
    Location:
    Rata Sum
    Aaw.

    *Is a slight Otaku*
     
  4. RonstaPony

    RonstaPony A Pony Every Pony Should Know

    Cutie Mark:
    Joined:
    Dec 19, 2011
    Messages:
    1,610
    Bro hoofs Received:
    0
    Occupation:
    Student
    Location:
    London, England
    I don't care much for anime myself. I did enjoy Summer Wars though, that was a fun movie. Also, anything by Ghibli.
     
  5. Xaniith

    Xaniith Princess of the Forum
    Old-Timer

    Joined:
    Dec 20, 2011
    Messages:
    10,717
    Bro hoofs Received:
    273
    I guessed :p

    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).
     
  6. testyal1

    testyal1 Princess of the Forum
    Banned

    Joined:
    Jun 11, 2011
    Messages:
    5,692
    Bro hoofs Received:
    1
    Occupation:
    Activist/Priest
    Location:
    Rata Sum
    I'm not really a fan of cosplay. It sort of 'impurifies' the characters.

    Wow, that sounded so fascist it was untrue.
     
  7. Xaniith

    Xaniith Princess of the Forum
    Old-Timer

    Joined:
    Dec 20, 2011
    Messages:
    10,717
    Bro hoofs Received:
    273
    I think some cosplay is pretty cool, especially from stuff I really like. (I've sometimes wanted to cosplay as pyramid head:omg:)

    [​IMG]

    Legendary Cosplay :p
     
  8. greyOne

    greyOne Princess of the Forum
    Banned

    Joined:
    Oct 13, 2011
    Messages:
    3,922
    Bro hoofs Received:
    0
    Occupation:
    Code for Hire
    Location:
    Motherland
    There seems to be a distinct lack of whips here.
    Where are all of the whips? =P
     
  9. Biohazardjonny

    Biohazardjonny A Pony Every Pony Should Know

    Cutie Mark:
    Joined:
    Oct 16, 2011
    Messages:
    700
    Bro hoofs Received:
    0
    Occupation:
    Bulds Ambulances
    Location:
    Lancaster,OH
    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)
     
  10. Echoax

    Echoax Greed Probably
    Wizard

    Cutie Mark:
    Joined:
    Jul 5, 2011
    Messages:
    20,506
    Bro hoofs Received:
    2
    Location:
    Kenithson
    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?
     
  11. RonstaPony

    RonstaPony A Pony Every Pony Should Know

    Cutie Mark:
    Joined:
    Dec 19, 2011
    Messages:
    1,610
    Bro hoofs Received:
    0
    Occupation:
    Student
    Location:
    London, England
    Yes! Yes! Lets see it!

    [​IMG]
     
  12. Echoax

    Echoax Greed Probably
    Wizard

    Cutie Mark:
    Joined:
    Jul 5, 2011
    Messages:
    20,506
    Bro hoofs Received:
    2
    Location:
    Kenithson
  13. RonstaPony

    RonstaPony A Pony Every Pony Should Know

    Cutie Mark:
    Joined:
    Dec 19, 2011
    Messages:
    1,610
    Bro hoofs Received:
    0
    Occupation:
    Student
    Location:
    London, England
    Nice! The mane looks great, and the reflections on the floor are a nice touch. Good job :)
     
  14. Echoax

    Echoax Greed Probably
    Wizard

    Cutie Mark:
    Joined:
    Jul 5, 2011
    Messages:
    20,506
    Bro hoofs Received:
    2
    Location:
    Kenithson
    Thank you ^^

    I'm still learning and trying to get the shading right. It's a huge pain to me.
     
  15. Xaniith

    Xaniith Princess of the Forum
    Old-Timer

    Joined:
    Dec 20, 2011
    Messages:
    10,717
    Bro hoofs Received:
    273
    It looks great!! Very good job pixel :3
     
  16. Echoax

    Echoax Greed Probably
    Wizard

    Cutie Mark:
    Joined:
    Jul 5, 2011
    Messages:
    20,506
    Bro hoofs Received:
    2
    Location:
    Kenithson

    Thank you good sir :4
     
  17. testyal1

    testyal1 Princess of the Forum
    Banned

    Joined:
    Jun 11, 2011
    Messages:
    5,692
    Bro hoofs Received:
    1
    Occupation:
    Activist/Priest
    Location:
    Rata Sum
    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)
    
     
  18. Echoax

    Echoax Greed Probably
    Wizard

    Cutie Mark:
    Joined:
    Jul 5, 2011
    Messages:
    20,506
    Bro hoofs Received:
    2
    Location:
    Kenithson


    Thanks test.

    Here, I shall give you a python as well.

    [​IMG]
     
  19. testyal1

    testyal1 Princess of the Forum
    Banned

    Joined:
    Jun 11, 2011
    Messages:
    5,692
    Bro hoofs Received:
    1
    Occupation:
    Activist/Priest
    Location:
    Rata Sum
    Snakes are brilliant creatures.
     
  20. RonstaPony

    RonstaPony A Pony Every Pony Should Know

    Cutie Mark:
    Joined:
    Dec 19, 2011
    Messages:
    1,610
    Bro hoofs Received:
    0
    Occupation:
    Student
    Location:
    London, England
    More python:

    [YouTube]vkOjCBkA4pM[/YouTube]
     
Thread Status:
Not open for further replies.

Share This Page