Programming Thread

Started by the-pi-guy, Mar 13, 2016, 10:39 PM

previous topic - next topic

0 Members and 4 Guests are viewing this topic.

Go Down

ethomaz

Mar 28, 2016, 04:46 PM Last Edit: Mar 28, 2016, 04:50 PM by ethomaz
So instead they want us to write out foo+=foo?
:P

foo += 1

To increase 1.

foo += foo will increase the foo value to foo.

the-pi-guy

So instead they want us to write out foo+=foo?
foo = foo + goo;

Legend

:P

foo += 1

To increase 1.

foo += foo will increase the foo value to foo.
Oh yeah duh...  :P


foo++ is so much nicer though

kitler53



Featured Artist: Vanessa Hudgens

darkknightkryta

Yea I saw that.  We need more of that.

Legend

I froze my computer the other day.  ::)

Tried procedurally generating an 8K texture when my program already had issues at 256*256.

ethomaz

I froze my computer the other day.  ::)

Tried procedurally generating an 8K texture when my program already had issues at 256*256.

Vizioneck sub 256p confirmed.

Xbro

Anyone here know Ruby?
3 people like this

Legend


the-pi-guy

No, but why?

On another note, I'm really liking C++, even though some things are a bit bleh.  

Legend

Urgh, I'm going to have to learn multithreading. Most Unity games are CPU bottlenecked, and VizionEck's no different.


Also I have a memory leak. Optimizing is fun!

ethomaz

Anyone here know Ruby?
Just what I learned on university... Ruby is one of most OO languages.

Xbro

Just what I learned on university... Ruby is one of most OO languages.
Well would you happen to know how to send a Get request to a site with custom headers and retrieve the response?
3 people like this

the-pi-guy

I'm implementing multithreading into my searching program.  :)

Legend

I'm implementing multithreading into my searching program.  :)
What does it search for?

Go Up