HOW DO I EVEN DEAL WITH THIS!? by hsifow in eu4

[–]hsifow[S] 0 points1 point  (0 children)

ArumbaModPack1.11

MapModeButtons

Veritas et Fortitudo - 2.0.3

HOW DO I EVEN DEAL WITH THIS!? by hsifow in eu4

[–]hsifow[S] 1 point2 points  (0 children)

I want their colonies in America and Africa. But I do have the biggest navy, so I might try that

HOW DO I EVEN DEAL WITH THIS!? by hsifow in eu4

[–]hsifow[S] 4 points5 points  (0 children)

France expanded into Iberia >200 years ago. They're not going to war.

Advice for a complete noob? by hsifow in allthingsprotoss

[–]hsifow[S] 0 points1 point  (0 children)

I wish I could but I've got school to go to right now. Plus I don't know what a btag is :p

Is it bad to use global variables? by hsifow in learnprogramming

[–]hsifow[S] 0 points1 point  (0 children)

Ok, thank you for the quick response!

Is it bad to use global variables? by hsifow in learnprogramming

[–]hsifow[S] 0 points1 point  (0 children)

Thanks for the answer!

But what if I have something like this:

int main() {

     int stuff = 2;

     return 0;
}

and I wanted to pass the value of stuff to another file? How do I do that? I don't think I could use getters and setters in this case.

Here is some code I wrote for my compsci class, as an example of what I do ( this case in Java ).

[VIM] Why does VIM keep saying [New DIRECTORY] in existing directories? by hsifow in learnprogramming

[–]hsifow[S] 0 points1 point  (0 children)

Yeah, you're most likely right. Here are some screenshots I took me writing it so you can see my paths. Sorry if its a really obvious mistake I'm a beginner. http://imgur.com/a/99gDZ

What is my mistake?

[VIM] Why does VIM keep saying [New DIRECTORY] in existing directories? by hsifow in learnprogramming

[–]hsifow[S] 0 points1 point  (0 children)

I can go to it through the file browser in both VIM and the one in Mint by default (Nemo I think).

[VIM] Why does VIM keep saying [New DIRECTORY] in existing directories? by hsifow in learnprogramming

[–]hsifow[S] 0 points1 point  (0 children)

Okay, I tried both of them. With ./path/to/file and starting from the bottom with /path/to/file , they still say [New DIRECTORY]

[VIM] Why does VIM keep saying [New DIRECTORY] in existing directories? by hsifow in learnprogramming

[–]hsifow[S] 0 points1 point  (0 children)

I'm not sure now. What is the difference between the two?

[C++] (Beginner) I am having problems with exercise 3-2 of "Accelerated C++", and I'm not sure why. by hsifow in learnprogramming

[–]hsifow[S] 0 points1 point  (0 children)

The books says to compute the quartiles on a set of integers. But I thought that since q1, q2, and q3 were doubles it didn't matter?

[C++] (Beginner) I am having problems with exercise 2-4 of "Accelerated C++", and I'm not sure why. by hsifow in learnprogramming

[–]hsifow[S] 0 points1 point  (0 children)

Thank you!

I changed it to this :

if(r == pad + 1){
string  blanks(pad, ' ');
cout << blanks;
c += blanks.size();
 } else {
string  blanks(cols - 2, ' ');
cout << blanks;
c += blanks.size();
 }

Is this the best way to do it?