totally true! :DAutomagician23 wrote: Plus, people like the elysian dev team and myself (sometimes) prove that the nerdy programmer stereotype is just as easy to falsify as any other. my 2c.
Search found 34 matches
- Thu Jan 07, 2010 9:26 pm
- Forum: Programming Discussion
- Topic: What is the point of programming?
- Replies: 41
- Views: 4989
Re: What is the point of programming?
- Thu Jan 07, 2010 6:16 pm
- Forum: General/Off-Topic
- Topic: Avatar: Go see it
- Replies: 14
- Views: 1765
Re: Avatar: Go see it
It was a really good movie, and I was reminded of the play "Custer's Last Stand" and the movie "Dances With Wolves" time and time again.
Agree with ALL points by hurstshifter, especially about being predictable. Overall, I would recommend seeing it
Agree with ALL points by hurstshifter, especially about being predictable. Overall, I would recommend seeing it
- Thu Jan 07, 2010 5:54 pm
- Forum: Programming Discussion
- Topic: What is the point of programming?
- Replies: 41
- Views: 4989
Re: What is the point of programming?
I program because, when I achieve the finished product, I feel like a badass. It is uplifting when you run the 2D platformer that you spent so much time trying to get up and running, and it finally does. The best phrase to describe a program when you're finished is: "THAT IS SO BITCHIN!"
- Sun Dec 27, 2009 11:52 pm
- Forum: Programming Discussion
- Topic: Learning C++ as a first language
- Replies: 17
- Views: 2068
Re: Learning C++ as a first language
It all depends on the person. I started learning C++ as a first language and I didn't feel I was getting anywhere, but as soon as I switched to Blitz3D, I understood a lot more. I leaped ahead learning concepts instead of trying to focus on learning the syntax. Visual C++ wasn't letting me grasp sim...
- Tue Dec 22, 2009 8:54 pm
- Forum: General Gaming
- Topic: Post your Xbox Live Gamertag.
- Replies: 67
- Views: 75447
Re: Post your Xbox Live Gamertag.
fingerfry, and I am very skilled in any Call of Duty game. Modern Warfare 2 is my game of choice though
Expert on Guitar Hero, but Dragonforce i can only beat on hard
Expert on Guitar Hero, but Dragonforce i can only beat on hard
- Thu Oct 01, 2009 9:04 pm
- Forum: Programming Discussion
- Topic: Begineer projects.
- Replies: 13
- Views: 1425
Re: Begineer projects.
What you just said went WAYYYYYYY over my head, Gyro. I have only been learning to program for a little over a month. I am a total noob and not afraid to admit it :mrgreen: I just tried to take my program to quadratics but it was too complicated. I hadn't realized that I was programming in C and I h...
- Thu Oct 01, 2009 7:27 pm
- Forum: Programming Discussion
- Topic: Begineer projects.
- Replies: 13
- Views: 1425
Re: Begineer projects.
I was thinking of making a program that would solve quadratic equations. I made a program that would take the two co-ordinates you entered and give you the slope, Point Slope equation, Standard Form equation, and General Form. It was fun to do. Now that you suggest quadratics, I'm thinking about ext...
- Thu Oct 01, 2009 12:10 am
- Forum: Programming Discussion
- Topic: Begineer projects.
- Replies: 13
- Views: 1425
Re: Begineer projects.
I'm in the same dilemma as you,Rhys. I don't know how to put the knowledge that I have absorbed to use. I want to be able to SEE the progress I have made. :/
Suggestion on simple projects would be appreciated
Suggestion on simple projects would be appreciated
- Tue Sep 22, 2009 7:38 pm
- Forum: Programming Discussion
- Topic: Programming from scratch?
- Replies: 18
- Views: 1665
Re: Programming from scratch?
That was a really good analogyavansc wrote:its kinda like making food from a recipe, the more you make it and follow the recipe exactly the sooner you wont even need it.
- Tue Sep 15, 2009 10:48 pm
- Forum: Programming Discussion
- Topic: Programming books?
- Replies: 29
- Views: 3981
Re: Programming books?
I just finished: "Crash Course in C" -by Paul J. Perry. It was a little monotonous but it was very informative. I just bought "Whose Afraid of C++" -by Steve Heller for $5 on amazon. It is extremely easy to grasp and very well written. I recommend it for beginning programmers, bu...
- Fri Sep 11, 2009 10:19 pm
- Forum: Programming Discussion
- Topic: My first program from scratch(calculator)
- Replies: 9
- Views: 1287
Re: My first program from scratch(calculator)
#include <math.h> #include <stdio.h> int main() { float fltcoordx1; //enter X1 coordinate printf("Enter x1: \n"); scanf("%f", &fltcoordx1); float fltcoordy1; //enter Y1 coordinate printf("Enter y1: \n"); scanf("%f", &fltcoordy1); printf("Coordina...
- Thu Sep 10, 2009 12:32 am
- Forum: Programming Discussion
- Topic: My first program from scratch(calculator)
- Replies: 9
- Views: 1287
Re: My first program from scratch(calculator)
Revised code, AGAIN. Added comments #include <math.h> #include <stdio.h> int main() { float fltcoordx1; //enter X1 coordinate printf("Enter x1: \n"); scanf("%f", &fltcoordx1); float fltcoordy1; //enter Y1 coordinate printf("Enter y1: \n"); scanf("%f", &...
- Wed Sep 09, 2009 11:55 pm
- Forum: Programming Discussion
- Topic: My first program from scratch(calculator)
- Replies: 9
- Views: 1287
Re: My first program from scratch(calculator)
Well I guess that'd completely work if you never put in the coordinates for a vertical line... Then division by 0 :shock: Shit, forgot about that... #include <math.h> #include <stdio.h> int main() { float fltcoordx1; printf("Enter x1: \n"); scanf("%f", &fltcoordx1); float fl...
- Wed Sep 09, 2009 9:13 pm
- Forum: Programming Discussion
- Topic: My first program from scratch(calculator)
- Replies: 9
- Views: 1287
Re: My first program from scratch(calculator)
I have revised my program with a few more lines of code. Now you can enter the coordinates and it will give you the answer in slope intercept form, instead of only giving you the slope :mrgreen: #include <math.h> #include <stdio.h> int main() { float fltcoordx1; printf("Enter x1: \n"); sca...
- Wed Sep 09, 2009 7:15 pm
- Forum: Programming Discussion
- Topic: [SDL] Shooting and Hello World!
- Replies: 25
- Views: 2528
Re: [SDL] Shooting and Hello World!
“Give a man a fish; you have fed him for today. Teach a man to fish; and you have fed him for a lifetime†-unkown person wrote this. I believe THIS is the correct quote: “Give a man a fish; you have fed him for today. Teach a man to fish; and you have fed him for a lifetime. Teach a man to se...