• 0

    posted a message on Graphic Card upgrade help
    I want to upgrade my graphics card. I would buy a new pc but i'm not good on money at the moment
    My specs:
    Processor: Intel(R) Core(TM)2 Quad CPU Q8200 @ 2.33GHz (4 CPUs), ~2.3GHz

    NVIDIA GeForce 9500 GT
    4GB RAM
    64-bit processor
    Windows 8 So my question is: which (cheap) graphics card can i get that will work with my computer
    (Cheap=£30-£60)
    Posted in: Hardware & Software Support
  • 0

    posted a message on Python Programming Help
    Quote from Nimphina

    Can confirm it works for me too.

    Make sure you are using Python 3 not Python 2 when running this.

    ok thanks ill try
    it worked before but now i downloaded python again on different pc and it doesnt work so thats probably the case
    Quote from waaq

    This is pretty simple, but a nice thing to do as a beginner.
    I assume that your actual code has proper indentions like this:

    print("Choose either /, *, -, or + and then type two numbers")
    x=str(input())
    y=int(input())
    z=int(input())
    
    if(x=="/"):
    print(y/z)
    elif(x=="*"):
    print(y*z)
    elif(x=="-"):
    print(y-z)
    elif(x=="+"):
    print(y+z)
    else:
    print("Choose either /, *, -, or + and then type two numbers")

    I ran it through Idle and got

    Choose either /, *, -, or + and then type two numbers
    /
    2
    3
    0.6666666666666666

    As expected.
    I'm not sure what's happening to you.

    Edit:

    What version of Python are you on and have you updated it or changed it recently?

    This was my testing project this is version 4 that i built
    print("Welcome to Calculator 4.0")
    print("Choose how many numbers are needed for the operations")
    from math import sqrt
    from math import sin
    from math import cos
    from math import tan
    var=99
    while var== 99:
    p=input()
    if(p==1):
    print("Choose either square root or trig")
    x=str(input())
    if(x=="square root"):
    print("Type one number")
    y=int(input())
    print(sqrt(y))
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    elif(x=="trig"):
    print("Choose Sine, Cosine or Tangent and then type any number")
    w=input()
    g=int(input())
    if(w=="Sine"):
    print(sin(g))
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")

    elif(w=="Cosine"):
    print(cos(g))
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")

    elif(w=="Tangent"):
    print(tan(g))
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")

    else:
    print("Sine, Cosine or Tangent?")

    elif(p==2):
    print("Choose either indice,/, *, -, or + and then type two numbers")
    x=input()
    y=int(input())
    z=int(input())
    if(x=="/"):
    print(y/z)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    elif(x=="*"):
    print(y*z)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    elif(x=="-"):
    print(y-z)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    elif(x=="+"):
    print(y+z)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    elif(x=="indice"):
    print(y**z)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    else:
    print("Choose either indice,/, *, -, or + and then type two numbers")
    elif(p==3):
    print("Choose either /, *, -, or + and then type three numbers")
    x=input()
    y=int(input())
    z=int(input())
    a=int(input())
    if(x=="/"):
    print(y/z/a)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    elif(x=="*"):
    print(y*z*a)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    elif(x=="-"):
    print(y-z-a)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    elif(x=="+"):
    print(y+z+a)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    else:
    print("Choose either /, *, -, or + and then type three numbers")

    elif(p==4):
    print("Choose either /, *, -, or + and then type four numbers")
    x=input()
    y=int(input())
    z=int(input())
    a=int(input())
    b=int(input())
    if(x=="/"):
    print(y/z/a/b)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    elif(x=="*"):
    print(y*z*a*B)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    elif(x=="-"):
    print(y-z-a-B)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    elif(x=="+"):
    print(y+z+a+B)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    else:
    print("Choose either /, *, -, or + and then type four numbers")


    elif(p==5):
    print("Choose either /, *, -, or + and then type five numbers")
    x=input()
    y=int(input())
    z=int(input())
    a=int(input())
    b=int(input())
    c=int(input())
    if(x=="/"):
    print(y/z/a/b/c)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    elif(x=="*"):
    print(y*z*a*b*c)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    elif(x=="-"):
    print(y-z-a-b-c)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    elif(x=="+"):
    print(y+z+a+b+c)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    else:
    print("Choose either /, *, -, or + and then type five numbers")

    elif(p==6):
    print("Choose either /, *, -, or + and then type six numbers")
    x=input()
    y=int(input())
    z=int(input())
    a=int(input())
    b=int(input())
    c=int(input())
    f=int(input())
    if(x=="/"):
    print(y/z/a/b/c/f)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    elif(x=="*"):
    print(y*z*a*b*c*f)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    elif(x=="-"):
    print(y-z-a-b-c-f)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")
    elif(x=="+"):
    print(y+z+a+b+c+f)
    print("Thank you for using Calculator 4.0!. Choose how many numbers are needed for the next operations")

    else:
    print("Choose either /, *, -, or + and then type six numbers")
    else:
    print("Maximum six numbers can be used")
    Posted in: Hardware & Software Support
  • 0

    posted a message on Python Programming Help
    I was doing some programming over the summer and today i came back to it. I made some simple calculators. Everything was working fine a month ago on my moms laptop but now on my pc it gives me an EOF ( end-of-file) error can anyone help
    :
    print("Choose either /, *, -, or + and then type two numbers")
    x=str(input())
    y=int(input())
    z=int(input())

    if(x=="/"):
    print(y/z)
    elif(x=="*"):
    print(y*z)
    elif(x=="-"):
    print(y-z)
    elif(x=="+"):
    print(y+z)
    else:
    print("Choose either /, *, -, or + and then type two numbers")


    (Copy and paste deleted some spaces)
    Posted in: Hardware & Software Support
  • 0

    posted a message on 13w36a Snapshot Ready for Testing!
    Is it me or the water textures are changed?
    Posted in: Minecraft News
  • 0

    posted a message on Maths Problem Help
    Quote from Christoi

    Given the sides are labeled ABCD as,



    Since AB || DC, you can effectively 'shift' the CD line to the left until point C and D meet, giving you a triangle without changing the angles (base is length AB - CD). From there, you can apply the cosine rule to fine the angles at points A and B. C and D can be found easily from there, just consider having two lines perpendicular to AB, which intersect C and D respectively.

    For the area, you can calculate the distance between the AB and CD, then split the shape into two right-angled triangles and a rectangle.

    Hope that makes sense, explaining it with just text was surprisingly difficult.

    I didnt really understand the angles bit but for the area i basically need to find the height except i cant find the height
    I think the formula for the area is 1/2height x (ab+cd)


    I didnt really understand the angles bit but for the area i basically need to find the height except i cant find the height
    I think the formula for the area is 1/2height x (ab+cd)

    OMG I THINK I GET THE ANGLES DIJEHXJWJJDHFJWSK sorry
    Thanks for your help much appreciated and i think i can easily work out the height if i know the angles
    :)
    Posted in: General Off Topic
  • 0

    posted a message on Maths Problem Help
    Quote from BurgerChamp

    Are you 8?



    V=lxwxh
    =9x6x7
    =54x7
    =378 square units.

    Im not 8 and what you wrote is terribly wrong. V is volume and lxwxh is used to find and area of a coboid which i dont need
    7 is not height
    Im not sure if you are trolling or just didnt understand my question
    Posted in: General Off Topic
  • 0

    posted a message on Maths Problem Help
    Can someone help me with this maths problem please?

    You have a trapezoid (trapezium) :
    5
    ____
    7 / \ 6
    /_____\
    9
    I need to find an area and all the angles

    Please help
    Posted in: General Off Topic
  • 0

    posted a message on Rarest Thing(s) you've witnessed on Minecraft
    Once in one swamp biome i saw two witch huts and two pink sheep
    also i saw about 10 spider jokeys and one charged creeper in my life
    Posted in: Discussion
  • 0

    posted a message on [Free]Avatar,wallpaper
    Quote from morgan367

    Here you go if you need anymore changes tell me:)
    http://s1315.photobu...html?sort=3&o=0

    Sorry to bother you more but can you make the sword diamond or maybe redstone red and show me the two versions?
    Thanks
    Posted in: Art Shops
  • 0

    posted a message on [Free]Avatar,wallpaper
    Quote from morgan367

    Here you go if you need any changes tell me
    http://s1315.photobu...html?sort=3&o=0

    Can you make the sword point a bit more left
    Also can i my arms be less parallel to my body
    EDIT: Also bent my knees please and my face points at the sword
    BTW that was quick thanks
    Posted in: Art Shops
  • 0

    posted a message on [Free]Avatar,wallpaper
    Do you want text: Yes
    If you want text what do you want it to say?: "MegaSilentFang" (mind the capitals) (Minecraft font, preferably darkened)

    If you want one a wallpaper tell me which one link for wallpapers:
    Can you please put this as a wallpaper http://minecraftwallpapers.net/wp-content/uploads/2013/01/dark-minecraft-castle.jpeg

    Pose: Holding a sword up in the sky to the left

    Size: Not sure. Can you crop the wallpaper so it's more like the landscape A4 paper

    Skin:http://imgur.com/ofwCu9Z

    Thank you in advance
    Posted in: Art Shops
  • 0

    posted a message on My opinion on how the End could be improved
    Quote from Merajurr

    Didn't like my one worded 'valuble' contribution? Alright, let me elaborate then.

    Title of the thread. "Fix for the goddamned end".

    Fix? Fix what? Is it broken?

    If you're aware that "many people" wrote about it, then why not comment your ideas on their threads, instead of creating an unnessacary new one.

    Now I'll go into detail on why this is a wishlist.









    Various things you said in your post are personalized opinions about it. Of course, this is what creates a suggestion, but the very nature of how you went about it just shows it's a wishlist.



    This forum area is called "suggestions", not a place where you can rant and rave.

    Don't think that just because you have more forum posts than me means that you're any better than me in any way, and instead of saying what's wrong with that I said, look at what's wrong with what YOU said.


    Point taken, but saying "wish list?" Is still spam
    Also I didn't really rant even if I said i did. If i put a label saying "carrot" on a potato the potato won't become a carrot
    I will change the title, I was kinda annoyed at that point
    I apologise for being rude, it's really easy to accedently become a mean troll online
    Posted in: Suggestions
  • 0

    posted a message on My opinion on how the End could be improved
    Quote from Merajurr

    Wishlist?

    Spam?
    In the rules of this forum it states that one word posts are spam posts
    Also "wish lists" is when you just list things you want with no specific topic whereas my post clearly has a topic which you could easily find at the top of the post also known as a title
    Thank you for you valuable addition to our discussion
    Quote from Pencilshavings5

    You can't fix what isn't broken. The end is suppose to be a flatish boring island. It's intended for a boss fight and a boss fight only. As for the egg, it's a trophy, it doesn't need a use.

    Yes but there should be a point of actually fighting the boss
    The boss is supposed to be the last and hardest thing you fight and all you get for it is a ton of xp and an egg
    Egg does nothing but acts as a trophy, that's ok
    Do is used by most people mainly to enchant weapons and armour used to fight said bosses, although you could spend it on a fortune or silk touch pick
    Posted in: Suggestions
  • 1

    posted a message on My opinion on how the End could be improved
    Quote from Acknid

    It's things like this that hold a suggestion back. Don't support your suggestion with angry rants with you going "I think this! And I think that!" Be neutral and explain to us why your suggestion is good instead of using only your personal viewpoints. And don't go around saying what's broken or unfinished like you know what was going through mojang's heads.


    No. lol

    Oh my god
    I have no idea that i'm capable of becoming a person that i hate to read a post of. I feel kinda bad now
    But i still think that enderdragon should be changed at least slightly, and personally i think mojang could have actually work on this instead of getting DrZhark to implement horses into minecraft. I know many people asked for horses but they at least could have changed the models and textures
    Posted in: Suggestions
  • 0

    posted a message on My opinion on how the End could be improved
    Quote from Neospector

    Then I suggest joining one the discussions about the End to improve it. There's a great deal of detail which goes into good suggestions by a large group of the community.

    I read that post before and i think they add a bit too much after the dragon, which may or may not be a good thing
    Also i like you first signature :)
    Posted in: Suggestions
  • To post a comment, please .