Search found 74 matches
- Fri May 01, 2009 2:14 pm
- Forum: Programming Discussion
- Topic: some math i thought might be interesting.
- Replies: 5
- Views: 785
- Mon Apr 27, 2009 11:07 am
- Forum: General/Off-Topic
- Topic: MY DESIGN PHILOSOPHY:
- Replies: 11
- Views: 1255
Re: MY DESIGN PHILOSOPHY:
I'm the far right, my dad is far left XD
- Sat Apr 11, 2009 2:46 pm
- Forum: General/Off-Topic
- Topic: IRC lulz
- Replies: 316
- Views: 105601
Re: IRC lulz
The day M_D_K lost 03[22:35] * RyanPridgeon is now known as M_D_K [22:35] <M_D_K> sda 03[22:35] * M_D_Krazy is now known as RyanPridgeon 01[22:35] <kostiak_> LOL 03[22:35] * M_D_K is now known as Guest47580 01[22:35] <kostiak_> krazy friday [22:35] <RyanPridgeon> LOL 02[22:35] * RyanPridgeon (n=_M_D...
- Fri Apr 10, 2009 7:00 am
- Forum: Current Events and Science/Technology
- Topic: Open-mindedness
- Replies: 15
- Views: 5226
Re: Open-mindedness
In any case, the point I was making against bold-facedly claiming something as being true was to the one point in the video where he says that one can occasionally say that "X is true" if there is undeniable proof, which goes against the idea of having an open mind and being willing to co...
- Thu Apr 09, 2009 1:48 pm
- Forum: Programming Discussion
- Topic: AI and path finding challenges
- Replies: 14
- Views: 1888
Re: AI and path finding challenges
that's what i was saying:
Instead of going strait up, which is what A* should return if i remember correctly.
Instead of going strait up, which is what A* should return if i remember correctly.
- Thu Apr 09, 2009 6:08 am
- Forum: General Gaming
- Topic: OnLive: Games on demand
- Replies: 6
- Views: 1208
Re: OnLive: Games on demand
There is a similar development I heard of, which does similar stuff, just with cable (television) instead of the internet. Imagine this, you buy your new cable connection next year, and among the channels you find the "Call of Duty 4","Crysis","WhatEverGame" channels th...
- Thu Apr 09, 2009 6:04 am
- Forum: Current Events and Science/Technology
- Topic: Open-mindedness
- Replies: 15
- Views: 5226
Re: Open-mindedness
LeonBlade wrote:Thank you very much for posting this video, I really enjoyed it.
I hate it when people have a false concept of open-mindness when I don't agree with them.
- Thu Apr 09, 2009 6:00 am
- Forum: Programming Discussion
- Topic: AI and path finding challenges
- Replies: 14
- Views: 1888
Re: AI and path finding challenges
Nice design, Spikey, but do you realy stop once you reach the goal for the first time? cause that will find a path to the distanation, but that path could be going around the entire map. for example you want to go from A to B on that map ***************** ***************** ***A************ ***B*****...
- Sun Apr 05, 2009 2:06 pm
- Forum: Programming Discussion
- Topic: SDL help
- Replies: 24
- Views: 2448
Re: SDL help
In the same folder you put the exe in.herby490 wrote:Thanks that works. If I wanted to distribute an application I made where would I put it.
- Sun Apr 05, 2009 2:50 am
- Forum: General/Off-Topic
- Topic: What, and what NOT to get tattood
- Replies: 29
- Views: 2920
Re: What, and what NOT to get tattood
dandymcgee wrote:@Lusikka - Better make sure it's perfect, wouldn't want a syntax error tatooed on yourself for life
- Sat Apr 04, 2009 10:40 pm
- Forum: Programming Discussion
- Topic: push_back, square( )ect.ect.
- Replies: 32
- Views: 3516
Re: push_back, square( )ect.ect.
Were you trying to do: if(temps[0]<temps[1] && temps[0]<temps[2]) which will compare temps[0] to temps[1] and temps[2]? Either way, you should not do the if statements at all, as you already sorted the array, which means that temps[0] will always the lowest after the sort that you did. Now, ...
- Sat Apr 04, 2009 7:36 am
- Forum: Current Events and Science/Technology
- Topic: Open-mindedness
- Replies: 15
- Views: 5226
Re: Open-mindedness
I'm glad you guys liked it :D
- Fri Apr 03, 2009 8:40 am
- Forum: Programming Discussion
- Topic: Are there any books about SDL?
- Replies: 10
- Views: 1358
Re: Are there any books about SDL?
YESGinto8 wrote:I didn't use books. Thanks to good ol' Lazyfoo.
- Fri Apr 03, 2009 8:35 am
- Forum: Programming Discussion
- Topic: Learning Blitz
- Replies: 2
- Views: 619
Re: Learning Blitz
Does anyone know any good books or sites for learning Blitz? I have found a few but would like to know if anyone has suggestions on good books/sites for learning it. VERY not suggested to learn Blits this days. If you are new to programing start with something like C# or Python. If you have done pr...
- Thu Apr 02, 2009 3:13 pm
- Forum: Programming Discussion
- Topic: OO Design Question
- Replies: 17
- Views: 2178
Re: OO Design Question
Yeah, lazyfoo's tutorials are great, his code is terrible.. The design you suggested should be done like that, instead use something similar to what MarauderIIC suggested. I use something similar to this. (Not as complicated as that yet, but as I see it, I'll be there soon).