Search found 32 matches
- Wed Aug 11, 2010 12:55 am
- Forum: General/Off-Topic
- Topic: Guy Marinating his Cat?
- Replies: 2
- Views: 647
Guy Marinating his Cat?
"The SPCA and area cat lovers are horrified at a Cheektowaga man's behavior. Police say he was planning to make a meal of his pet cat." Take a pause at 56 secs . This is all I have to say.. :lol: . ( sad situation for the poor cat though ). UZNZ55JqdP4&feature=player_embedded# EDIT: Fo...
- Sat Jul 24, 2010 4:57 pm
- Forum: General/Off-Topic
- Topic: Free Lectures on Computer Science/Game Dev (my channel)
- Replies: 5
- Views: 932
Re: Free Lectures on Computer Science/Game Dev (my channel)
Looking forward to your future work and contributions on the forums. Welcome to the community! ;) I tried to watch the introduction, but the audio quality was unbearable (no offense, but I quite literally I have a headache). I'm not sure if you could somehow access better recording equipment, or pe...
- Fri Jul 23, 2010 9:54 pm
- Forum: General/Off-Topic
- Topic: Free Lectures on Computer Science/Game Dev (my channel)
- Replies: 5
- Views: 932
Re: Free Lectures on Computer Science/Game Dev (my channel)
Np and oops, forgot to set it to visible, Lol, is now.eatcomics wrote:Thanks man, this is real nice. I love it when people put up lectures for others to see :D
- Fri Jul 23, 2010 8:41 pm
- Forum: General/Off-Topic
- Topic: Free Lectures on Computer Science/Game Dev (my channel)
- Replies: 5
- Views: 932
Free Lectures on Computer Science/Game Dev (my channel)
Guys just wanted to share my channel + website I'm working on, I'm posting a lot of lectures on computer science, programming and various topics on anything related to computing in my you-tube channel, alongside a website/forum it's all dedicated to education. It's specifically aimed at teaching gam...
- Thu Jun 03, 2010 11:11 am
- Forum: Programming Discussion
- Topic: SDL_Rect / Dynamic allocation question[solved]
- Replies: 3
- Views: 774
Re: SDL_Rect / Dynamic allocation question
I think I see where I went wrong now, I was misreading some code that actually was pointing to a class / more like the second way I had it setup, except instead of global they just had the pointer within the class public, my mistake, thanks guys .
- Thu Jun 03, 2010 3:50 am
- Forum: Programming Discussion
- Topic: SDL_Rect / Dynamic allocation question[solved]
- Replies: 3
- Views: 774
SDL_Rect / Dynamic allocation question[solved]
Not sure how to do this properly, or if it can be done, but I've seen it done a similar way in allegro, can tiles be dynamically created in this way using SDL_Rect? ( forgive my code ). int amount; SDL_Rect tile; tile = new Tile[ amount ]; Or does this need to be done a completely different way?, su...
- Tue Jun 01, 2010 10:31 pm
- Forum: Programming Discussion
- Topic: Programming Job
- Replies: 8
- Views: 833
Re: Programming Job
Ah thanks for the insights guys, I think my main plan is to work on a few projects that demonstrate my abilities as a programmer/engineer, and like Marcel said, try to sell myself, and see how far it will get me, I'm not too worried with the actual interviews, or technical questions they could ask. ...
- Tue Jun 01, 2010 6:34 pm
- Forum: Programming Discussion
- Topic: Programming Job
- Replies: 8
- Views: 833
Re: Programming Job
Sorry for the double post, but this is a different question I've been meaning to ask to those more experienced. How do you know when your ready to start searching for jobs in programming, or engineering?, seems like the learning never ends, but there has gotta be a point where you say.. look, it's ...
- Tue Jun 01, 2010 6:20 pm
- Forum: Programming Discussion
- Topic: Programming Job
- Replies: 8
- Views: 833
Programming Job
Sorry for the double post, but this is a different question I've been meaning to ask to those more experienced. How do you know when your ready to start searching for jobs in programming, or engineering?, seems like the learning never ends, but there has gotta be a point where you say.. look, it's t...
- Tue Jun 01, 2010 5:46 pm
- Forum: Programming Discussion
- Topic: Need opinions on Programming Experience
- Replies: 3
- Views: 491
Re: Need opinions on Programming Experience
The short answer: Yes. It sounds like you are doing well. Relying on tutorials isn't something to avoid, they are there for just that reason. What should be avoided is direct copy/paste without any effort being put forward to understand what is going on. It doesn't seem like that's the case here, s...
- Tue Jun 01, 2010 2:34 pm
- Forum: Programming Discussion
- Topic: Need opinions on Programming Experience
- Replies: 3
- Views: 491
Need opinions on Programming Experience
Heya guys, just need a reality check on this, because I'm not too sure if I'm even doing alright or good, etc. I don't really have any tutors, I have been all self taught and I don't have any friends to help me out with programming, which makes it a bit difficult for me. Though I have posted here a ...
- Wed May 19, 2010 8:02 pm
- Forum: Programming Discussion
- Topic: SDL_Surface* load_image( std::string filename ) Question
- Replies: 8
- Views: 1028
Re: SDL_Surface* load_image( std::string filename )[Solved]
Cool, thanks all for the replies, and thanks Xian, that was kinda of what I was looking for!
- Wed May 19, 2010 12:01 am
- Forum: Programming Discussion
- Topic: SDL_Surface* load_image( std::string filename ) Question
- Replies: 8
- Views: 1028
SDL_Surface* load_image( std::string filename ) Question
Hey guys, this might sound stupid, but im not sure exactly on this. is there any hope of using this function, or similar within a class?, as in defining it within a class. SDL_Surface* load_image( std::string filename ) { return 0; } or will it always need to remain Global?, sorry if it's a stupid q...
- Mon Apr 05, 2010 4:27 pm
- Forum: Programming Discussion
- Topic: Architecture on Software Design (Questions and Elaborations)
- Replies: 0
- Views: 1776
Architecture on Software Design (Questions and Elaborations)
Hey again guys, I have been going through with learning a bit about Software Engineering and such, and I have to say it's been a tremendous help so far on seeing better ways to actually set up system architectures and ways to design my code better, however some of it's still a bit unclear and I was ...
- Sat Apr 03, 2010 2:20 pm
- Forum: Programming Discussion
- Topic: Visual C++: Including Header Files
- Replies: 3
- Views: 438
Re: Visual C++: Including Header Files
Try changing
#include <check.h>
to
#include "check.h"
#include <check.h>
to
#include "check.h"