b-u-m-p
anybody who places their semicolons on the next line should BE GASSED AND KILLED, EFFECTIVE IMMEDIATELY
SAME GOES FOR ANYBODY WHO PLACES THEIR BRACES ON THE
SAME.
loving.
LINE.
REEEEEEEEEEEEEEEEEEEEEEEEEEEE EEEEEE
I can get the semicolons thing but what the forget is wrong with braces on the same line? You can't tell me that this
int main() {
do_stuff();
self_destruct();
if (1 < 0) {
cry();
} else {
be_happy();
}
}
doesn't look better and saves lines as opposed to this disgusting waste of lines
int main()
{
do_stuff();
self_destruct();
if (1 < 0)
{
cry();
}
else
{
be_happy();
}
}
Absolutely disgusting. I can understand if a company wants their code to look like that as a standard and people get used to it over time but I'm overly suspicious of people who do it off the bat.
op should use the poll feature more
so we can finally determine which one blf likes best
spaces or tabs
I consider tabs a lot easier just because it gets rid of the potential for spaces to get in the way of indentation. Even when using shortcuts to increase/decrease indentation sometimes extra spaces get in the way and forget it all up. At least that's happened more often than not in my experience as opposed to using tabs. Even though they all turn into spaces it's just not worth it to deal with space characters as opposed to tabs or vice versa, I think the spaces/tabs debate is blown up to be much more than it is.
I am not good at learning programming language online because I get bored really easily , I am only good when a human being actually telling how to do it like a teacher at school, that's why I've asking my dad to sign me up for programming classes instead of sports because I do not like sports, but he hasn't really gotten to it.
I was more or less the same way, kind of still am. I think to get into it and get your feet wet in programming it's very helpful to learn it in a classroom environment, I feel that to teach yourself things like programming (beyond just punching out lines of Python/Ruby/whatever elementary language and not learning the fundamentals under the hood) and any advanced computer science topic on your own is incredibly difficult.
I'm ordering some books on C++ and Unreal 4, so I think once you get into programming and at least have a core understanding of it, it makes for a much easier time to teach yourself new things.