Comment on: What's the best way to learn Boo?
1 20 Aug 2015 03:56 u/ImSureImPerfect in v/programmingWhat's the best way to learn Boo?
2 2 comments 16 Aug 2015 13:03 u/ImSureImPerfect (self.programming) in v/programmingComment on: What do you listen to while you write code?
I will now spend part of my evening listening to things I've found on concentration music. Thank you for the recommendation!
Comment on: What do you listen to while you write code?
Those are actually three of my current favorite bands, oddly enough. I've never tried coding to them, though. I might have to give that a shot. I can see why Toes, at the very least, would be a good "get things done" song. Most of Gooey probably works for that, now that I think of it.
I've never gotten much into Bach. I was always more of a Erik Satie kind of guy.
Lately I've been listening to random Vaporwave while I code. It doesn't have lyrics and a lot of it is upbeat, which helps a little with motivation. I'm not a huge fan of the genre, but I thought it somehow fitting.
Comment on: Come up with the most inefficient, poorly written, and complex way to print out "Hello World!".
I will never be this good at any sort of programming.
I have no words for how impressed I am by the dedication it must take to write C++ in MSPaint.
Comment on: Come up with the most inefficient, poorly written, and complex way to print out "Hello World!".
Not the best/silliest answer, but definitely inefficient. First thing that came to mind.
list = [" ", "H", "e", "l", "o", "W", "r", "d"]
print list[1] + list[2] + list[3] + list[3] + list[4] + list[0] + list[5] + list[4] + list[6] + list[3] + list [7]
Thanks!
I've decided to learn both Boo and Javascript. Knowing multiple languages never hurts and Java will be useful for unrelated projects in the future. I would have never find that Bootorials sight though, so I really owe you for that.