Search found 194 matches

by mattheweston
Sun Jul 08, 2012 12:15 pm
Forum: Programming Discussion
Topic: Tale of a Newby.
Replies: 10
Views: 3444

Re: Tale of a Newby.

"If you put your mind to it. You can accomplish anything." -Marty McFly, Back to the Future. Just remember there are people who have been homeless that have went to Harvard. Your life is what you make of it. Set a long term goal and then break that down into smaller pieces that will give ...
by mattheweston
Tue Jul 03, 2012 11:02 pm
Forum: Art, Music, and Design
Topic: Header art for website
Replies: 9
Views: 11787

Re: Header art for website

I'm still here. Mainly watching. Really busy with starting the home buying process.
by mattheweston
Thu Jun 14, 2012 8:16 am
Forum: General/Off-Topic
Topic: Social Network
Replies: 48
Views: 8276

Re: Social Network

In that case you may want to at least put a blurb on the main screen to the effect of this works with iPhone, iPod, etc.
by mattheweston
Wed Jun 13, 2012 11:20 pm
Forum: General/Off-Topic
Topic: Social Network
Replies: 48
Views: 8276

Re: Social Network

I don't mean this to be mean, but I think you may lose out on users by limiting it to chrome and firefox browsers. WIndows users have IE out of the box and many people are too lazy to try to install a new browser (aka chrome or firefox.) Also you are cutting out many iPhone, iPad, and iPod Touch use...
by mattheweston
Wed Jun 13, 2012 12:54 pm
Forum: Art, Music, and Design
Topic: Header art for website
Replies: 9
Views: 11787

Header art for website

I have setup a wordpress blog to use for my website, but find myself in need of a nice banner/header image. Is there someone that could help me with this? The blog/site is at http://www.mattheweston.net I need something for the top to go behind my name and the subtitle. I'm looking for something cla...
by mattheweston
Wed Jun 13, 2012 12:16 am
Forum: General/Off-Topic
Topic: Code samples for Job interviews
Replies: 3
Views: 1620

Code samples for Job interviews

I have a recruiter that is in the process of scheduling an interview and he told me that I need to have a code sample ready. Seeing as I have not had to do this before has anyone ever been in a situation where you've either had to submit a code sample or better yet asked a candidate to bring on in f...
by mattheweston
Wed May 30, 2012 12:08 am
Forum: Art, Music, and Design
Topic: Puzzle Game Design - Thought?
Replies: 2
Views: 6399

Puzzle Game Design - Thought?

What do you guys like in puzzle games say you have a tetris game do you like to see a story that adds to the puzzle game? Different game boards/backgrounds/themes?

What makes you say I just gotta download/buy that game when it comes to puzzle games?
by mattheweston
Sat May 26, 2012 7:24 pm
Forum: Programming Discussion
Topic: Compiler overhead ?
Replies: 6
Views: 1901

Re: Compiler overhead ?

So compilers don't introduce new overhead they just compile the overhead that is already there in the code.
by mattheweston
Fri May 25, 2012 10:09 am
Forum: Programming Discussion
Topic: Are you kidding me?
Replies: 18
Views: 5660

Re: Are you kidding me?

I can see where this would be beneficial if you had a 1 to 1 ratio of if..else's replacing try...catch blocks, but what if you had several if...elses that would be in a block of code where one try...catch could take care of it? Wouldn't many if..else's be more expensive than one try...catch?
by mattheweston
Fri May 25, 2012 8:08 am
Forum: Programming Discussion
Topic: Are you kidding me?
Replies: 18
Views: 5660

Re: Are you kidding me?

So my assumption is incorrect? Its the Try...catch that actually causes that behavior instead of the actual error itself?
by mattheweston
Thu May 24, 2012 11:41 pm
Forum: Programming Discussion
Topic: Are you kidding me?
Replies: 18
Views: 5660

Re: Are you kidding me?

But let's say you have a method to do something bool erroredMethod() { bool isSuccessful = false; do something; do something; //if this causes an out of memory error(read exception) then the rest of the code doesn't execute do something; isSuccessful = true; // how can this be set then ? }
by mattheweston
Thu May 24, 2012 4:01 pm
Forum: Programming Discussion
Topic: Compiler overhead ?
Replies: 6
Views: 1901

Compiler overhead ?

We've had several discussions here about various areas where overhead can creep into a program. I'd like to propose the following questions to the community. What types of overhead can you get from various compilers? Are there benefits to using Visual Studio to compile your code versus gcc or g++ ? ...
by mattheweston
Thu May 24, 2012 1:46 pm
Forum: Programming Discussion
Topic: Are you kidding me?
Replies: 18
Views: 5660

Re: Are you kidding me?

I think I get what you are saying but, it would be nice to see a snippet of code as an example.
by mattheweston
Thu May 24, 2012 9:07 am
Forum: Programming Discussion
Topic: Are you kidding me?
Replies: 18
Views: 5660

Re: Are you kidding me?

Pardon my ignorance, but how would you gracefully handle an exception error with a simple if...else ? Wouldn't the exception cause the app to crash? The only alternative would be to identifiy every possible scenario for bad parameters and elimitate them. I'm sure I'm missing something. Maybe Falco c...
by mattheweston
Mon May 21, 2012 2:45 pm
Forum: Programming Discussion
Topic: Book recommendations ?
Replies: 6
Views: 1679

Book recommendations ?

I'm looking for books to add to my reading list and was actually leaning toward design patterns and algorithms. Any recommendations? Would it be worth while to look at anything specific to game development ?