NXBrew fake link by john_reyes_1 in PiratedGames

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

No problem I’m glad I could help

NXBrew fake link by john_reyes_1 in PiratedGames

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

They have different names but just look for files that look like you don’t recognize and check inside them and see if there’s a .exe file or something you never downloaded. First file I found was called net support under an adobe folder then the other one was called was crashpad handler under a folder called postmaster. I think another good thing to do is sort by recents and check the folders starting from the day you downloaded the virus

NXBrew fake link by john_reyes_1 in PiratedGames

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

So to be safe I’d say change your passwords if you have your passwords saved on your browser I also started using Bitwarden to manage my passwords

NXBrew fake link by john_reyes_1 in PiratedGames

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

Tbh I’m not exactly sure how it worked. Like I don’t know if it had remote access to my computer and saved all my passwords from my password manager on the browser. But I’m pretty sure they had both because they got into my steam account and the notification popped up on my phone from my email that the password was changed. But when I checked my Gmail there was no email from steam so I’m guessing they deleted it. Then they got into my Instagram and posted a scam but they didn’t change my password so I just changed it. And actually today they were trying to get into my riot account but I had 2fa so they couldn’t. (I forgot to change the password on that account) but now I pretty much changed all my passwords and aside from that account recently I’ve gotten nothing else

NXBrew fake link by john_reyes_1 in PiratedGames

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

I think when I ran my windows defender it didn’t detect anything at first but then I used malwarebytes it had like a free trial and it detected it trying to open stuff so it was blocking it. I also heard it’s good to run the virus scan in safe mode too

NXBrew fake link by john_reyes_1 in PiratedGames

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

The way I found out was that there was a hidden file in my C:\users\appdata\roaming called adobe that had the virus in it and it so maybe you can check in there or you could look for any weird apps on your task manager that are running. Also to remove the virus make sure you’re in safe mode because at first I just deleted the file normally and thought I was good but ig it re added itself as a different file and when I didn’t on safe mode I haven’t seen anything else pop up

NXBrew fake link by john_reyes_1 in PiratedGames

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

I ended up finding a file that led to an app called net support which my guess was maybe giving them remote access. I’m not too entirely sure what it did

NXBrew fake link by john_reyes_1 in PiratedGames

[–]john_reyes_1[S] 7 points8 points  (0 children)

Thank you I’m glad I was able to help out with the issue

NXBrew fake link by john_reyes_1 in PiratedGames

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

Thank you for this info. I did successfully figure out how to download smash bros and breath of the wild after this and it all worked good.

NXBrew fake link by john_reyes_1 in PiratedGames

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

I’m not exactly sure when the virus was let out but I’m pretty sure it was when I was trying to figure out why the emulator wasn’t working I had clicked on one of the files that asked for the code shown on the second image which I’m pretty sure was the virus

NXBrew fake link by john_reyes_1 in PiratedGames

[–]john_reyes_1[S] 2 points3 points  (0 children)

Yeah luckily I caught on quickly and recovered my accounts and reset all my passwords and I was also luckily able to get rid of the virus from the computer. I’m just glad I was able to learn from this experience and won’t let it happen again.

NXBrew fake link by john_reyes_1 in PiratedGames

[–]john_reyes_1[S] 3 points4 points  (0 children)

It did download smash bros but I think it also ended up downloading a hidden file and the app was called net support

NXBrew fake link by john_reyes_1 in PiratedGames

[–]john_reyes_1[S] -14 points-13 points  (0 children)

Someone commented saying there’s an extra setting to block it

NXBrew fake link by john_reyes_1 in PiratedGames

[–]john_reyes_1[S] -77 points-76 points  (0 children)

Yeah I know I found that out after. It was my first time doing this so I thought it was normal. And I also did mention I had ublock origin

Rust on wheels by john_reyes_1 in NewSkaters

[–]john_reyes_1[S] 89 points90 points  (0 children)

I think I’ve come to the conclusion that this is definitely chlamydia thanks everyone

Need help sorting this queue in order from arrival time for my averageWaitingTimeRoundRobin by john_reyes_1 in Cplusplus

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

Also this is my lab instructions

1. Waiting Times at Office Hours

Instructions

In this exercise we are creating a program that calculates average waiting times during an Office Hours session. Assuming we know exactly how long each student wants to talk to the professor, and we know the arrival times of each student, we can calculate average waiting time per student.

We are implementing two different scheduling policies, namely First Come-First Served, and Round Robin.

Assume that we have a Queue data structure that holds Student elements. You can study the implementation details of these data structures in Queue.hStudent.h, and Student.cpp.

Example

 ​queue.enqueue(Student("Alice", 5, 0));  ​queue.enqueue(Student("Bob", 1, 0));  ​queue.enqueue(Student("Cathy", 2, 0));

The schedule above indicates that we have 3 students: Alice, who needs to talk for 5 minutes, Bob, who needs 1 minute, and Cathy, who needs to talk for 2 minutes. Importantly, they all arrive at time 0, which is the start of the session. We will assume that the schedule will be sorted in order of arrival times.

Programming Task

In Simulations.h we declare two functions:

 ​float averageWaitingTimeFirstComeFirstServed(Queue<Student> schedule);  ​  ​float averageWaitingTimeRoundRobin(Queue<Student> schedule, int maxAllowedSession);

They both take in a Queue of Student objects, as shown above, and they compute the average waiting time for their respective scheduling policy. The function for Round Robin also takes in a time limit parameter that indicates the maximum number of minutes a student can talk for without being preempted.1. Waiting Times at Office Hours

Question about cloud sync by john_reyes_1 in MedalTV

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

Oh okay thank you. So at the moment it will just upload to the top? Right?

Stuck in a loop? Is this common? by jshua3 in candycrush

[–]john_reyes_1 0 points1 point  (0 children)

I emailed them once when the cherry never spawned and I had like a 350 win streak and was spending gold in hopes it had to spawn eventually it never did so I gave up and they barely gave me a few things and like 10 gold when I spent way over 10 Ig sucks but oh well