Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #4K
~19.8K People Reached
About Me

Well, I'm a first year coder, still in high school, competed in a few software comps such as the NSWProg Comp and the NCSS Python challenge. I'm interested in learning heaps of new stuff, so if anyone has any tips or advice, please let me know. I love…

Interests
Soccer Gaming Music Reading Footy Beach Futurama Family Guy Drawn Together Heroes Twilight Saga
PC Specs
Windows Vista Home basic Compaq laptop - celeron C700 orig. 512mb RAM, added 2GB Qutie annoying as it…
Member Avatar for Steph102

Hi everyone. I am just learning Python on class so I am really at the basic. I need to write a python program that will flip a coin 100 times and then tell how many times tails and heads were flipped. This is what I have so far but I …

Member Avatar for Gribouillis
0
16K
Member Avatar for Darkangelchick

Hey guys I'm attempting to make a super mario like platform game and need help with making images move. Like instead of moving the little man, just having the background moving with the corresponding button movement. Can anyone hint at how to do this? Or is moving the little man …

Member Avatar for shadwickman
0
146
Member Avatar for Darkangelchick

Hi im writing a program that returns whether an inputted number is prime or not, but Im kind of stuck... [CODE]import math def listfactors(n): # defining the function l = [] for i in range (1, int(math.sqrt(n))+1): if float(n)/float(i) == int(float(n)/float(i)): l.append(i) l.append(n/i) return l primeNum = int(raw_input("Enter number here:")) …

Member Avatar for Progressivism
0
138
Member Avatar for Darkangelchick

Hey guys, I'm making a platform game similar to Super Mario in Pygame and I want to add platforms i.e. I have a background picture that has platforms drawn on it. I then want to make it so he can only go down as far as the platform, and as …

Member Avatar for shadwickman
0
129
Member Avatar for Darkangelchick

Hey guys Im trying to make an auction website for school using html, ASP and a database in Acess. I am trying to create buttins so my users can click on them to Bid on people. I keep coming up with different errors and when I view the source code …

Member Avatar for IdanS
0
109
Member Avatar for Darkangelchick

Hey guys I have to analyse a short program for school and the only keyword i cannot find a definition for if ORG. What does this do in assembly code?? Any help would be appreciated. Thanks

Member Avatar for jephthah
0
128
Member Avatar for hunter007

[b]Hi, I am the newest member in your site. I want to learn everything here. My first question here is that where i should start from in Linux. What version i must install on my computer. Where i can get the tutorials. etc.. Waiting for your suggestions. Tahir[/b]

Member Avatar for gnujohn
0
939
Member Avatar for tomtetlaw

im doing a tut for Tkinter and in it they do this: [CODE]tkFileDialog.askopenfilename()[/CODE] but when i run it i get this error: Traceback (most recent call last): File "C:\Documents and Settings\tom\Desktop\Programing\Python\c++ + python\main.py", line 67, in <module> if __name__ == "__main__": main() File "C:\Documents and Settings\tom\Desktop\Programing\Python\c++ + python\main.py", line 64, …

Member Avatar for tomtetlaw
0
602
Member Avatar for Darkangelchick

Hey guys I have to create a python version of Tic Tac Toe, but does anyone know if it's possible to make this using Tkinter? I think I have to have it nice and bright and colourful, therefore TKinter is the only solution i can think of using Python. Any …

Member Avatar for woooee
0
618
Member Avatar for Darkangelchick

Hey guys I'm using Linux and I'm having trouble with Open Office. This is the first time it has happened. I try to open a file saved with open office and its coming up with translation stuff like western europe (Applemac) and stuff. What has happened and how can I …

Member Avatar for Darkangelchick
0
134
Member Avatar for rickbill

This is what I have so far. I need to let the program toss the coind each time the user presses the Toss button. Count the number of times each side of the coin appears. and display the results using heads and tails images. I am stuck Public Class Form1 …

Member Avatar for Darkangelchick
0
175
Member Avatar for Darkangelchick

Hi guys, Im still at school and recently added the DET portal to firefox so I can use the internet at school. Now when I try to install downloaded packages in the console, it tries to connect through DET even though its unselected in preferneces. Any help?? Thanks

0
55
Member Avatar for Darkangelchick

Hey guys Ive just changed my OS from windows to Linux and I was wondering if anyone knew how I could keep my old games?? Like do I need special software to continue playing windows games? Or can I get Linux versions of them? Also, any advice or tips on …

Member Avatar for nerden
0
118
Member Avatar for Darkangelchick

Hi guys, I'm currently working on a program to return whether an inputted number is perfect or not. I've found that the formula for the perfect number is If 2n-1 is prime then 2(n-1)(2n-1) is perfect. I've worked out some code, but I'm stuck. [CODE]Def listfactors(n): For 1=2 to n/2 …

Member Avatar for lllllIllIlllI
0
134
Member Avatar for Darkangelchick

Hey guys im doing the NCSS python challenge and I need help!! ok so here's my current problems (p.s. my teach cant even help) PROBLEM 1 ************************ [code]# This is a Python file def fibonacci(n): return (n <= 1) and 1 or fibonacci(n-1) + fibonacci(n-2) def decrypt(s): def helper(s): return …

Member Avatar for Darkangelchick
0
206
Member Avatar for Darkangelchick

Hey guys Ive been making sudoku for a high school project and I need help getting it to check the groups of 9 boxes. It already checks the vertical and horizontal rows but not the boxes. I need to find a consistent formula to change it to the right section. …

Member Avatar for Ranfile
0
104