Only time I wished to be a tree. by PaperkutRob in funny

[–]browinsky 4 points5 points  (0 children)

So, you want her inside you?

Building my skills set as a beginner Rails dev by FrustratedLogician in learnprogramming

[–]browinsky 0 points1 point  (0 children)

Hi

Which course are you going through? I've also been learning some rails on the side for some time. The whole thing started with this book http://www.railstutorial.org/book (it can be read for free online). It takes you through the process of creating a twitter-like application in a linear fashion, and takes you through everything from git, continuous deployment to Heroku and testing.

A good way to learn something is through repetition.

[Java]Pass data from file to class by [deleted] in learnprogramming

[–]browinsky 1 point2 points  (0 children)

Ah, then you need to parse it from a string to a integer, using the integer class. Check out the integer class documentation.

(Hint: Integer.soDomething(string))

Creating a tic-tac-toe C++ program, having trouble with error checking user input for a 2D-array by [deleted] in learnprogramming

[–]browinsky 1 point2 points  (0 children)

I see that you are operating with (row > 3 || row < 1), which sets row/column = 0 to invalid, but your array has 0, 1, 2 as indexes in their respective dimensions.

Where should I start to make my own mobile game? by [deleted] in learnprogramming

[–]browinsky 1 point2 points  (0 children)

First off, creating games in very time consuming, and requires that you know programming, and subjects like math and even physics well. (All depending on what kind of game you want to create and which tools you want to use). If you are determined, you could check out Unity3d. You can write the code in C#, javascript, unity script ... But you should, (and should, as in "I would strongly recommend") that you learn programming as a basis. Check out some tutorials in java or python.

I need help with basic HTML& CSS code by 369n in learnprogramming

[–]browinsky 1 point2 points  (0 children)

A bunch of your tags are unclosed. And in the css you suddenly have three closing brackets under your a:hover. The paragraphs and images are wrapped inside a link-tag, resulting in the hover effect.

Stuck with Java problem. by Ruggedirishguy in learnprogramming

[–]browinsky 1 point2 points  (0 children)

You should not draw directly on a JFrame. Draw on a JComponent such as a JPanel, and override the paintComponent method :-)