• CIPWTTKT&GC v0X12 (v18): Makol can't Computer Very Good
    10,676 replies, posted
I want to code badly, I just don't know where to start. I did some codecademy but I don't understand how half the stuff relates to making games, which is the ultimate goal [editline]17th March 2012[/editline] Maybe I should dick around with a really simple game's source code
[QUOTE=altern;35176079]I want to code badly, I just don't know where to start. I did some codecademy but I don't understand how half the stuff relates to making games, which is the ultimate goal [editline]17th March 2012[/editline] Maybe I should dick around with a really simple game's source code[/QUOTE] Minecraft's code is pretty simple :v:
I meant like a breakout game. Or tetris or some shit
Fixed [I]another[/I] person's problem just by reseating the ram. There should be a "reseat the ram" suggestion in the troubleshooting manual.
[QUOTE=MC3craze;35176135]Fixed [I]another[/I] person's problem just by reseating the ram. There should be a "reseat the ram" suggestion in the troubleshooting manual.[/QUOTE] If they did that then so many people would break their RAM.
[QUOTE=Chubbs;35176174]If they did that then so many people would break their RAM.[/QUOTE] Then it would be their fault. It isn't hard to take a stick out and shove it back in. [sub]People do it every day[/sub]
Rate me late if this is late. [url]http://ritporn.com/[/url]
How on earth are you meant to do [url=http://www.codecademy.com/courses/fizzbuzz/0#!/exercises/0]this[/url]? As far as I can tell it wants this: [code]var i = 0; for( i = 0; i <21; i++) { console.log( +i ); }[/code] But it's saying it's wrong. EDIT: fuck it says start at 1 not 0. I am a fool.
[QUOTE=altern;35176079]I want to code badly, I just don't know where to start. I did some codecademy but I don't understand how half the stuff relates to making games, which is the ultimate goal [editline]17th March 2012[/editline] Maybe I should dick around with a really simple game's source code[/QUOTE] Isn't Codeacademy javascript only? [editline]17th March 2012[/editline] [QUOTE=Chubbs;35176325]How on earth are you meant to do [url=http://www.codecademy.com/courses/fizzbuzz/0#!/exercises/0]this[/url]? As far as I can tell it wants this: [code]var i = 0; for( i = 0; i <21; i++) { console.log( +i ); }[/code] But it's saying it's wrong.[/QUOTE] [code]for( i = 1; i <21; i++) { console.log( +i ); }[/code] Simple little thing.
Somebody design a thing that you attach to your case and clips onto the RAM You push a button, a motor turns on and lifts the RAM out, then pushes it back in
[QUOTE=Chubbs;35176325]How on earth are you meant to do [url=http://www.codecademy.com/courses/fizzbuzz/0#!/exercises/0]this[/url]? As far as I can tell it wants this: [code]var i = 0; for( i = 0; i <21; i++) { console.log( +i ); }[/code] But it's saying it's wrong.[/QUOTE] Start at 1 not 0 I think. Yup [code]var i = 1; for( i = 1; i <21; i++) { console.log( +i ); }[/code]
[QUOTE=altern;35176079]I want to code badly, I just don't know where to start. I did some codecademy but I don't understand how half the stuff relates to making games, which is the ultimate goal [editline]17th March 2012[/editline] Maybe I should dick around with a really simple game's source code[/QUOTE] You can make small text based games fairly easy. It'll teach some of the stuff that lies behind the game, and it's pretty fun figuring out small quirks or how something should work. You won't be doing graphics with it, but that's really not all that important. If you want to do graphics, you'll have to use a graphics library, something I never really got into. I don't know much about programming, so i might be wring, but i had fun doing small stuff. My uncle, who just finished a bachelor in datalogy (or whatever), is thinking about working with games. I really don't think it's something you should expect to do just like that. Learn the basis first, then move on.
I've been thinking about text games, and the only thing I can come up with is one of those text adventures "You are in an empty alley, what would you like to do?" "go north" etc etc. What else is there? On another note, graphics cards hate me.
text-based dungeon crawlers for example
[QUOTE=Leestons;35176692]I've been thinking about text games, and the only thing I can come up with is one of those text adventures "You are in an empty alley, what would you like to do?" "go north" etc etc. What else is there? On another note, graphics cards hate me.[/QUOTE] Are you related to Makol?
Maybe. My graphics card failed, took a look and I have 2 burst capacitors. Cut my finger removing it, can't get the better one from my old computer out to replace it.
[QUOTE=SataniX;35176784]Are you related to Makol?[/QUOTE] No. He is my padawan. [editline]17th March 2012[/editline] [QUOTE=Leestons;35176836]Maybe. My graphics card failed, took a look and I have 2 burst capacitors. Cut my finger removing it, can't get the better one from my old computer out to replace it.[/QUOTE] The Force is strong with this one.
What's wrong with this picture? [img]http://i.imgur.com/lW5uP.png[/img] Edit FML, I was going to bid on an item and then this happens. [img]http://i.imgur.com/ncYHm.png[/img]
Someone is artificially inflating the price.
[QUOTE=Dorkslayz;35177407]eBay[/QUOTE] One time I was bidding for a new iPod at $5.00 and then at the last second some guy bought it for $500
I have to do five days of homework in two. halp
[QUOTE=altern;35177479]I have to do five days of homework in two. halp[/QUOTE] Abstain from sleep. Also, Ive found pretty much the same item as I wanted to buy for 99p and its a a fairly new auction.
[QUOTE=altern;35177479]I have to do five days of homework in two. halp[/QUOTE] What kind of homework? If it's english, I won't help.
Algebra, english, social studies, and art(lol)
just ordered a $1500 comp welp
I basically got a Xoom for $23 I has a friend who gave it too me because the screen didn't work so I tried a few fixes and I finally gave up and sent it to Motorola because it happened to be under warranty but he thought it fell under physical damage so I sent it in and it got fixed. [editline]17th March 2012[/editline] He was also too lazy to send it in.
[QUOTE=fishyfish777;35177555]just ordered a $1500 comp welp[/QUOTE] What parts did you order?
[QUOTE=MC3craze;35177590]What parts did you order?[/QUOTE] GTX570, I5 2500K, the usual Could have gone far cheaper but was gunning for quality parts and didn't have any leftover peripherals to use so
[QUOTE=SataniX;35176334]Isn't Codeacademy javascript only? [editline]17th March 2012[/editline] [code]for( i = 1; i <21; i++) { console.log( +i ); }[/code] Simple little thing.[/QUOTE]omg this mobile fp app wont show all the code lmao, bad programmer
My dad and brother got their iPads today. After looking at them I'm not very impressed.
Sorry, you need to Log In to post a reply to this thread.