Search found 240 matches

by Benjamin100
Fri Oct 10, 2014 8:23 pm
Forum: General Gaming
Topic: Play Games with the Team (FOR RESEARCH!)
Replies: 6
Views: 7599

Re: Play Games with the Team (FOR RESEARCH!)

You play Super Mario RPG?
I like games that can be funny. I like games that don't take themselves too seriously,
so I guess that is why I always liked it as an RPG.
by Benjamin100
Tue Sep 23, 2014 4:19 pm
Forum: Programming Discussion
Topic: Programming and different areas of science.
Replies: 2
Views: 3359

Programming and different areas of science.

How many of the jobs that involve programming require a degree in another field? I was reading about how it helps to have degrees in other areas, and that it helps to have extensive knowledge in another area outside of computer science when looking for a job. Do any of you have any degrees in areas ...
by Benjamin100
Tue Sep 16, 2014 12:01 am
Forum: Current Events and Science/Technology
Topic: Minecraft Changing Owners
Replies: 7
Views: 10938

Minecraft Changing Owners

It appears Microsoft will be buying Minecraft for 2.5 billion dollars.
Kind of funny since he seemed so angry about Oculus Rift being sold to Facebook.
Oh well. I guess that on such matters almost everyone has their price.
by Benjamin100
Sun Sep 14, 2014 5:14 pm
Forum: General/Off-Topic
Topic: I look you guys up after years, and this...?
Replies: 15
Views: 9244

Re: I look you guys up after years, and this...?

So where have you been, Marcel?
by Benjamin100
Thu Aug 28, 2014 8:45 pm
Forum: Art, Music, and Design
Topic: Music Equipment.
Replies: 8
Views: 9400

Re: Music Equipment.

Using Live 9 Lite. Seems good enough for what I'm doing. Fun to play around with.
by Benjamin100
Tue Aug 19, 2014 2:42 pm
Forum: Art, Music, and Design
Topic: Music Equipment.
Replies: 8
Views: 9400

Re: Music Equipment.

Thank you all for the advice. I am sorry that I did not thank you sooner, but I did not see it until just recently. I had gone back into programming for a while. As far as playing the keyboard, I did play piano for around 10 years, (not with great devotion, but still a steady amount of practice.) So...
by Benjamin100
Thu Jul 24, 2014 5:00 pm
Forum: Programming Discussion
Topic: Reading Chess Position[SOLVED]
Replies: 7
Views: 3899

Re: Reading Chess Position

Well apparently the "scanf" function just doesn't work very well with getting inputs in a loop.
Ended up using "sscanf" with an input string instead.
Now it works.
by Benjamin100
Thu Jul 24, 2014 12:04 am
Forum: Programming Discussion
Topic: Reading Chess Position[SOLVED]
Replies: 7
Views: 3899

Re: Reading Chess Position

Thanks for the info guys. I was fixing up some of the code and then started having trouble with input again, (which I wasn't having before.) Now taking in the name as two characters, I have trouble with the loop. It takes the first input entered, and moves accordingly. But then any input after, I as...
by Benjamin100
Sun Jul 20, 2014 11:40 pm
Forum: Programming Discussion
Topic: Reading Chess Position[SOLVED]
Replies: 7
Views: 3899

Re: Reading Chess Position [SORT OF SOLVED]

Ok. It works when I just disable the warning about "sscanf" and just use the standard version.
Apparently it is some trouble with "sscanf_s". Does use the parameters differently than the old version>
by Benjamin100
Sun Jul 20, 2014 11:02 pm
Forum: Programming Discussion
Topic: Reading Chess Position[SOLVED]
Replies: 7
Views: 3899

Reading Chess Position[SOLVED]

Having some trouble reading in chess positions. Reading the character as "x", and the number as "y". This "sscanf_s" function ends up with some access violation. I have no idea why. Here is the function. char inputX; int inputY; std::string input; std::getline(std::cin,...
by Benjamin100
Mon Jul 07, 2014 11:29 am
Forum: Current Events and Science/Technology
Topic: Most Questionable Crowd Funding
Replies: 4
Views: 6609

Most Questionable Crowd Funding

Here is a crowd funding project for a tech product. The most ridiculous crowd funding project I have ever seen. (I guess they are hoping some old people send them some money.) Here it is, they give a description. https://www.indiegogo.com/projects/wifiex The video explains it, sort of. Cracks me up....
by Benjamin100
Sun Jun 08, 2014 4:54 pm
Forum: Art, Music, and Design
Topic: Music Equipment.
Replies: 8
Views: 9400

Music Equipment.

I'm thinking about trying to do some music composition.
I don't need anything fancy right now,
I will probably look for a reasonably priced MIDI controller.
What software do you recommend?
by Benjamin100
Sun May 11, 2014 3:22 pm
Forum: Programming Discussion
Topic: [SOLVED] Normal Vector for lighting.
Replies: 14
Views: 6354

Re: [SOLVED] Normal Vector for lighting.

Oh, I didn't notice people had posted more on this topic. Thanks. I did figure it out a while ago. I was able to make an object loader for the basic shapes. Another big problem came when I added textures. Then the code just got messy and out of hand. I forget what my problem was, but I stopped and w...