Jump to content

PeshkovIntel

Member
  • Posts

    21
  • Joined

  • Last visited

Awards

This user doesn't have any awards

About PeshkovIntel

  • Birthday Oct 16, 1996

Contact Methods

  • Twitter
    Yikeszone

Profile Information

  • Gender
    Male
  • Location
    United States
  • Interests
    League of Legends. Computer Programmer/Tech
  • Occupation
    IT Desk at Tesla

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

PeshkovIntel's Achievements

  1. So i just went from 2 to 6 mointors and the game was working fine before, but now after installed 6 monitors I get this error message. I running 1080Ti SLI. I updated drivers and updates windows, but still getting the same issue.
  2. I'm not very savvy when it comes to networking what exactly do you mean by "merge" the two internet connections.
  3. So I'm in a bit of a problem and I want to know if it's possible. I have a Ethernet connection with 1GB down & upload, but it is capped at 1TB of data and getting unlimited is out of my budget right now. I tend to eat up my upload, but my download usage is fine. So what I'm trying to do is set up my computer to use download only from the Ethernet(my home network connection) and buy a hotspot modem from Verizon strictly for upload (mainly for Twitch.). So basically using 2 different ISP as the same time one for download and one for upload. Is this possible and if so how can this be done.
  4. As for the flickering it might be the monitor itself. Your motherboard might have on board video. If it does plug it in and see if the computer post still flickers on the monitor. If it does than you have a bad monitor otherwise its a bad gpu.
  5. Its always fun helping out newbies pull out a GPU
  6. Yes you can wash it. BUT you have to have is 100% dry or else your fan is going to fry. I would personally recommend to clean it with a ear cotton swab.
  7. You have to pull both green tabs out together. The one on the top and the bottom. Unclip them and it should open like a door and you can unscrew the screw.
  8. I would say this cooler here is the best bang for your buck. https://www.amazon.com/ARCTIC-Freezer-Xtreme-Twin-Tower-Heatsink/dp/B001X017G2/ref=sr_1_2?ie=UTF8&qid=1546479758&sr=8-2&keywords=Ryzen+5+2600+cooler You don't need anything to fancy as your CPU in general does not produce that much heat to begin with.
  9. Sounds like a motherboard issue. Pretty sure if you get a new PSU you would still have the same issue. Have you done any recent upgrades to your pc recently?
  10. So i am attempting to fix my headphones. The left headphone only works when i am holding it at a certain angle. I checked all the wires and they all seem to be in tact. But then i noticed the the board that the wires are connected to and saw a big white spot. I am wondering is this water damage or is it supposed to be like this. Picture down below
  11. #include <iostream> #include <fstream> #include <string> using namespace std; int main () { string line; ifstream myfile ("C:\Users\Mark\Desktop\Computer Programs\Assignment 02 EC\employeeData.txt"); if (myfile.is_open()) { while ( myfile.good() ) { getline (myfile,line); cout << line << endl; } myfile.close(); } else cout << "Unable to open file"; return 0; } I'm still getting the same error. Everything is in the right location
  12. This is currently the state of my program #include <iostream> #include <fstream> #include <string> using namespace std; int main () { string line; ifstream myfile ("employeeData.txt"); if (myfile.is_open()) { while ( myfile.good() ) { getline (myfile,line); cout << line << endl; } myfile.close(); } else cout << "Unable to open file"; return 0; }
  13. It is C++. So i have the structure of the program already set up. But how do i get it to read the txt file. It keeps saying " Cannot locate file". Is there a certain location that the txt file needs to be in?
  14. So i am a freshmen in college and i have to get this program written within the next 12hrs for extra credit. I can't wrap my head around how to get started mainly how to get a program to read a txt file and output a new one. And this is to be written in C++. This right here is the question There are three employees in a company and they are slated to get a pay increase this year. You are given a file, named employeeData.txt, that has the following data inside. Haptal Felicity 75124.87 5.3 Beckinsale Ford 49546.56 6.7 Longoria Dempsey 85700.50 4.9 Each line has the employee’s last name, first name, current salary, and the percent for their pay increase. For example, the first line of the data is the first employee and their last name is Haptal, their first name is Felicity, their salary is 75124.87, and their pay increase is 5.3 percent. Write a program that reads data from the specified file, employeeData.txt, and stores the output in the file employeeRaise.dat. For each employee, the data stored in the output file must be of this form: firstName lastName updatedSalary. Be sure to format the output of decimal numbers to two decimal places.
  15. Thermaltake Contacsilent 12 cpu cooler Cooler master hyper 212
×