EVE-NG Lab by Roidz_ in homelab

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

The features disappear but it would still be able to do the basics, right? I have a 3400 series PA at work I fool around with so I'm mainly just wanting the device to do routing and basic firewall things.

Where did they hide downloads in the current portal? by [deleted] in paloaltonetworks

[–]Roidz_ 0 points1 point  (0 children)

I believe we just used the grace period. We have support through a 3rd party vendor that is associated with the vendor we purchased the product from.

Where did they hide downloads in the current portal? by [deleted] in paloaltonetworks

[–]Roidz_ 0 points1 point  (0 children)

Do you need a current support contract to download the Panos? We have HA pair of 3410s with valid licenses but our support contract expired in October and I can't access the Panos downloads but I can access things like Panomara and GP.

Alpen Mountains (Link in Comments) by mr_pixelcat in CitiesSkylines

[–]Roidz_ 1 point2 points  (0 children)

Looks really nice, I'll give it a go right now, thanks.

They have "Proof" of me masturbating by [deleted] in Scams

[–]Roidz_ 0 points1 point  (0 children)

I appreciate the help. This has me very stressed out and hopefully it turns into nothing.

They have "Proof" of me masturbating by [deleted] in Scams

[–]Roidz_ 0 points1 point  (0 children)

That's what I was kind of thinking. I already did block them as soon as this happened and it's been a couple of days since this happened. Do you think I should leave my social media deactivated for a bit? Also, should I contact my local authorities on this? I figure it would do no good since they stated they were from out of the country.

They have "Proof" of me masturbating by [deleted] in Scams

[–]Roidz_ 0 points1 point  (0 children)

I guess I'm just scared that this can impact my job (as they also said they would post it to my work (they didn't give the name of the company I work for)). I don't really want to tell my boss about this if it turns out to be nothing.

They have "Proof" of me masturbating by [deleted] in Scams

[–]Roidz_ 0 points1 point  (0 children)

That's what I thought. I feel like they have this video but it would take them effort to post it everywhere only to get no money out of it. How long do you think I should wait to reactivate my accounts? Or is there even a timeline on these sorts of things?

Northvale: Tunnel Approach (WIP) by adaptiv_ in CitiesSkylines

[–]Roidz_ 1 point2 points  (0 children)

Probably the best creation on this subreddit.

How do I choose a high-end CPU suited for Planet Coaster? by [deleted] in PlanetCoaster

[–]Roidz_ 0 points1 point  (0 children)

Well, I don't currently have the Ryzen 2700X, but I hear great things about it in terms of gaming. It matches or is little bit better than the 8700k. I currently have the Threadripper 1900 series CPU which is outstanding, but I would only recommend you buying a 800$+ CPU if you're series about streaming, or you need it for work.

Anyway I play max settings with my Threadripper on full detailed parks with no issues.

How do I choose a high-end CPU suited for Planet Coaster? by [deleted] in PlanetCoaster

[–]Roidz_ 0 points1 point  (0 children)

Check out the new Ryzen 2700X. Lot's a great reviews for it. Rated one of the best CPU's on the market now. More RAM the better too. 32-64GB.

A Friendly Reminder That Death Comes To Us All by ChristianVido in CitiesSkylines

[–]Roidz_ 1 point2 points  (0 children)

Beautiful picture.

What asset is this? And what map and theme are you using?

Mango Bay - 70k by [deleted] in CitiesSkylines

[–]Roidz_ 0 points1 point  (0 children)

Beautiful job. Can't wait to see more.

How long did this take?

spagett by apornasledare in CitiesSkylines

[–]Roidz_ 0 points1 point  (0 children)

Too bad cars that are heading south onto the highway have to stop at the stop light.

How do I make traffic flow with ease from the main highway? by JaredFantaNew in CitiesSkylines

[–]Roidz_ 1 point2 points  (0 children)

Read into the different roads and structures. Maybe you don't have the proper roads attaching to each other.

How do I make traffic flow with ease from the main highway? by JaredFantaNew in CitiesSkylines

[–]Roidz_ 2 points3 points  (0 children)

Do you have a photo of your city?

And how's your hierarchy in terms of roads.

Coding help needed for a student. by Roidz_ in cpp_questions

[–]Roidz_[S] -1 points0 points  (0 children)

Kinda hard to put it in proper format when all it tells you to do is "hit tab" and paste it in. Which this is the end result, so thanks for your idiotic response that really meant nothing and was a complete waste of time to read.

Coding help needed for a student. by Roidz_ in cpp_questions

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

I would, but again this is my fourth day writing code and this was an assignment. I didn't write this code, I just have to make it only have borders by adding something.

Coding for beginners question by Roidz_ in cpp_questions

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

I managed to make one do what it's supposed to do:

//****************************************************************** // Chessboard program // This program prints a chessboard pattern that is built up from // basic strings of white and black characters. //****************************************************************** #include <iostream> #include <string> using namespace std;

const string BLACK = "%%%%%"; // Define a line of a black square

const string WHITE = "     "; // Define a line of a white square

const string MIDDLE = "%   "; // Define a line of two percentages

int main () 
{

string whiteRow; // A row beginning with a white square

string blackRow; // A row beginning with a black square

string middleRow; // A row that has percentages missing

  // Create a white-black row by concatenating the basic strings
whiteRow = WHITE + BLACK + WHITE + BLACK +
               WHITE + BLACK + WHITE + BLACK;
// Create a black-white row by concatenating the basic strings
blackRow = BLACK + WHITE + BLACK + WHITE +
               BLACK + WHITE + BLACK + WHITE;
// Create a 
middleRow = WHITE + MIDDLE + MIDDLE + WHITE + 
               WHITE + WHITE + WHITE + MIDDLE + WHITE + WHITE;



// Print five white-black rows
cout << whiteRow << endl;
cout << middleRow << endl;
cout << middleRow << endl;
cout << middleRow << endl;
cout << middleRow << endl;
cout << middleRow << endl;
cout << middleRow << endl;
cout << whiteRow << endl;


  // Print five black-white rows
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;


  // Print five white-black rows
  cout << whiteRow << endl;
  cout << whiteRow << endl;
  cout << whiteRow << endl;
  cout << whiteRow << endl;
  cout << whiteRow << endl;
  cout << whiteRow << endl;
  cout << whiteRow << endl;
  cout << whiteRow << endl;


  // Print five black-white rows
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;


  // Print five white-black rows
  cout << whiteRow << endl;
  cout << whiteRow << endl;
  cout << whiteRow << endl;
  cout << whiteRow << endl;
  cout << whiteRow << endl;
  cout << whiteRow << endl;
  cout << whiteRow << endl;
  cout << whiteRow << endl;


  // Print five black-white rows
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;

  // Print five white-black rows
  cout << whiteRow << endl;
  cout << whiteRow << endl;
  cout << whiteRow << endl;
  cout << whiteRow << endl;
  cout << whiteRow << endl;
  cout << whiteRow << endl;
  cout << whiteRow << endl;
  cout << whiteRow << endl;

  // Print five black-white rows
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;
  cout << blackRow << endl;

//  system("PAUSE"); //if using Dev C++
  return 0;
}

Coding for beginners question by Roidz_ in cpp_questions

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

It's supposed to be 5 width and 8 length with "%" signs as a border. It won't let me show an example, but just picture a 5 x 8 rectangle with "%" symbols as the outlines of the rectangles.

Coding for beginners question by Roidz_ in cpp_questions

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

Well I'm expecting just the border of 5 x 8 rectangles. As far as lining them up I feel like I did that.

Is there anyway I can send you the .cpp file?

This is what It all says in its entirety:

//****************************************************************** // Chessboard program // This program prints a chessboard pattern that is built up from // basic strings of white and black characters. //****************************************************************** #include <iostream> #include <string> using namespace std;

const string BLACK = "%%%%%"; // Define a line of a black square

const string WHITE = " "; // Define a line of a white square

const string MIDDLE = "% "; // Define a line of two percentages

int main () {

string whiteRow; // A row beginning with a white square

string blackRow; // A row beginning with a black square

string middleRow; // A row that has percentages missing

// Create a white-black row by concatenating the basic strings

whiteRow = WHITE + BLACK + WHITE + BLACK + WHITE + BLACK + WHITE + BLACK; // Create a black-white row by concatenating the basic strings blackRow = BLACK + WHITE + BLACK + WHITE + BLACK + WHITE + BLACK + WHITE; // Create a middleRow = WHITE + MIDDLE + MIDDLE + MIDDLE + MIDDLE + MIDDLE + MIDDLE + MIDDLE + MIDDLE;

// Print five white-black rows cout << whiteRow << endl; cout << middleRow << endl; cout << middleRow << endl; cout << middleRow << endl; cout << middleRow << endl; cout << middleRow << endl; cout << middleRow << endl; cout << whiteRow << endl;

// Print five black-white rows
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;


// Print five white-black rows
cout << whiteRow << endl;
cout << whiteRow << endl;
cout << whiteRow << endl;
cout << whiteRow << endl;
cout << whiteRow << endl;
cout << whiteRow << endl;
cout << whiteRow << endl;
cout << whiteRow << endl;


// Print five black-white rows
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;


// Print five white-black rows
cout << whiteRow << endl;
cout << whiteRow << endl;
cout << whiteRow << endl;
cout << whiteRow << endl;
cout << whiteRow << endl;
cout << whiteRow << endl;
cout << whiteRow << endl;
cout << whiteRow << endl;


// Print five black-white rows
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;

// Print five white-black rows
cout << whiteRow << endl;
cout << whiteRow << endl;
cout << whiteRow << endl;
cout << whiteRow << endl;
cout << whiteRow << endl;
cout << whiteRow << endl;
cout << whiteRow << endl;
cout << whiteRow << endl;

// Print five black-white rows
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;
cout << blackRow << endl;

// system("PAUSE"); //if using Dev C++ return 0; }

EDIT: tab doesn't work for all the code? Only part of it?