Jump to content

dasr1985

Member
  • Posts

    318
  • Joined

  • Last visited

Awards

2 Followers

About dasr1985

  • Birthday Nov 12, 1985

Profile Information

  • Gender
    Male
  • Location
    Texas, USA
  • Biography
    Glad to be a part of this forum, have been a huge fan and follower of LinusTechTips and NCIXTechTips. I'm a 27 year old RADAR Electronics Tech for Air Traffic Control equipment. Married of 1 year but she's put up with me for 4 so far lol. I'm actually just into my 2nd year of building gaming rigs and at that really being a huge PC Gamer. There really isn't anything like it though and I believe it's all about the experience; so yes unfortunately when it comes to a gaming rig bigger and better is always..... Well.... Better lol. Anyhow, few small details, I'm a veteran of 5 years U.S. Marines which is where I learned my trade. Born an Army brat in Germany, grew up in North Carolina, and now live in Texas.
  • Occupation
    Electronics RADAR Tech for Air Traffic Control
  • Member title
    Member

Recent Profile Visitors

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

  1. Complaint filed, absolutely chomping at the bit to get these guys to do their job. Completely asinine the way they are carelessly handling this situation given that I'm a paying customer with no choice but to use their service in my area.
  2. That is most likely what I'm going to have to do. After countless hours of troubleshooting with ISP tech support, even with different modem/router combo devices all brand new out of the box... The ISP still referred me to my manufacturer no matter how logically conclusive the issues pointed towards some configuration on the ISP's side. With the latest device, I went through netgear techsupport for the heck of it just so I could tell the ISP I did it and the problem still exists. Netgear was happy to help me, and reassured me they could absolutely solve my problem for a small fee of $79.99 LOL. So I humored it, told him sure, I'll pay the $79.99 if they can actually fix it otherwise I want my money back. Here I sit with a refund if that tells you anything. This issue is most definitely the ISP, and they refuse to take responsibility for the issue at all. The last technician I spoke with frustratingly said.. "why can't you just use our modem?" My configuration is now by utilization of their modem and a regular router that I own. I've submitted quite a few feedback issues with the way this is being handled and the fact that they advertise that I can use my own modem, but they won't do anything to help me do that in this situation.
  3. @lieder1987 @Hiitchy I'll def find out today what can be done. I feel like it's pretty ridiculous that they would put in place restrictions when the device is technically an approved device based on the specifications they required on their site under the approved equipment list. I guess, technically the TP-Link I had was not listed but it did abide by the specifications required...... actually I just checked and the TP-Link Archer CR700 I have is on their approved list. According to the representatives from TWC/Spectrum technical support that I've worked with, there are no restrictions in place from them to my home to impact my device. @Levisallanon please excuse my ignorance, but what specifically would I be looking for with those settings? I'm about to look that up, but just in case I can't find an answer I'm asking. Thanks in advance! I really appreciate the feedback so far guys! It is an incredibly frustrating situation. I actually own the same TP-Link device at my home in Corpus Christ, Texas and the ISP there for me is Grande Communications. I had absolutely no issues with getting the service setup, and no signal mitigation at all from it either. They are a coaxial cable based internet solution as well.
  4. LTT Community, I'm not an expert, but I'm also not a first time user of networking equipment either so please bare with me if there is something that I just can't answer right away. Situation: Device: TP-Link Archer CR700 AC1750 ISP: Time Warner/Spectrum On 9/9/2017 I received my device in the mail and set it up in a very typical default fashion. Logged into it via 192.168.1.1, no problems there. After I did an initial configuration (important note* normal operation not bridged mode) and customized my SSD/Password/hide etc; I then called the ISP to register the device so that I could begin receiving service. At this point during the call the device would no longer allow me to login to it (time out response) and I could only connect one device wirelessly and one device via cable ethernet at any given time. The rest of that call ended with concluding that perhaps my device was faulty somehow, and ofcourse because it is 3rd party they could not assist any further (understandable). I've attempted to contact TP-Link customer service... dead end there. Amazon support overnights another TP-Link Archer CR700 which I received on 9/11/2017. The exact same issue occurred, and at this point I kept the ISP on the phone because surely they are enacting some kind of restriction, of which they have confidently expressed is not the case. In my troubleshooting with them on the phone, I disconnected the coax from the TP-link device and attempted to login..still could not. I then restored the device to default settings via the reset switch on the rear I/O. Once the device went through it's initial start up process I was able to login to it with no issues, no time out response or anything. Great! I now know it is not the device right? So with the ISP representative eagerly waiting for my results I connected the coax back to the device and performed a basic reboot. They confirmed they could see the device connected when it came back up, and guess what! I'm back to square one... It is acting like it is stuck in bridge mode and I'm locked out from making any changes to MY OWN device. The ISP reassures me that there is nothing on their end that can cause this... but why would this occur after I reconnect the coax cable which allows the ISP to provide me service as well as monitor my device? Any ideas, suggestions.. anything. I'm all ears and thanks in advance! Today... I will be picking up a NETGEAR AC1750 DualBand Router with DOCSIS 3.0 Cable Modem Multi device from best buy. I figured i needed to try a completely different brand and I didn't want to wait 2-3 days for a device to be shipped to me. Last note here: I have attempted to contact TP-Link technical support numerous times, and on occasion that I was able to actually get through and the call didn't randomly drop, the receive audio from the individual I was speaking with was so broken it was impossible to make out anything they said at all. Also, I'm at a temporary location (undetermined amount of time) and as far as I can tell TWC/Spectrum is the only service choice I have.
  5. Ok, new prob here: I just finished building this for the 3rd assignment this week, and I have yet to clean it up in terms of organization. The instructor provided us with the pseudocode to follow which also seemed to included duplicate requests in terms of variables... so those still need to be cleaned up. I"m gonna take a break and work on physics for a bit before I do that, but I figured I would post what I have here to get some insight. For now it looks like I have errors with part of an 'if' 'else' statement as well as the section where the target is getting moved. I'll post the errors after the code. // Week 3 Assignment-3// Description: Snowball fight - version 1//---------------------------------- //**begin #include files************#include <iostream> // provides access to cin and cout#include <array>#include <vector>#include <time.h>#include "main.h" //--end of #include files-----------//----------------------------------using namespace std;//----------------------------------//**begin global constants********** // define a struct of the targetstruct coords{int x;int y;};struct target{string target;int dist; bool hit;coords position;};target Target;// -- xPos is the x position (the column)int x = (0);// -- yPos is the y position (the row)int y = (0);// -- xHit is x position of the hit(the column)coords xHit;// -- yHit is y position of the hit(the row)coords yHit;// -- distance between target and snowball hitcoords hit_pos;// -- hits is how many times the target has been hitint Tgt_hit_count = (0);// const grid size (i.e. 5x5 grid constant is 5)const int grid_size = 5;// const number of turnsconst int turns = 10; //--end of global constants---------//---------------------------------- //**begin main program**************int main(){ // initializationbool hit = false;int Tgt_hit_count = 0;int dist = 0;coords hit_pos;coords xHit;coords yHit;int throw_snowball(); // seed the random number generatorsrand(time(NULL));// create the target structstruct target{string target;int dist;bool hit;coords position;};target Target;for ((x, y) = 0; (x, y) <= grid_size; (x,y))// set target at random location{Target.position.x = rand() % grid_size;Target.position.y = rand() % grid_size;Target.hit = false;}// set hits to zeroint Tgt_hit_count = 0;// loop for the specified number of turnsfor (int i = 0; i < turns; i++){ // get x and y position for the snowball from playercout << "select x coordinate for snow ball" << endl;cin.get >> xHit;cout << "select a y coordinate for snow ball" << endl;cin.get >> yHit;}// compare to the target's positionint throw_snowball(coords position, target Target);{int dist;if (x == Target.position.x);{if (y == Target.position.y);{Target.hit == true;return 0;}else {return abs(y - Target.position.y);}else{int dist = abs(x - Target.position.x);if (int dist < abs(y - Target.position.y)) int dist == abs(y - Target.position.y);}}}// report hit, or distance of miss (see instructions for details)if (hit) cout << "The Target has been hit!" << endl;else cout << "You achieved " << Tgt_hit_count << " hits out of " << turns << "chances" << endl;cin.get();cin.get();// target moves (see instruction for details)void moveTarget(target Target);{enum MoveEnum{North, South, East, West, Stop};bool moveNotfound = true;MoveEnum ranNum = MoveEnum(rand() % 5);if (ranNum == Stop) return;while (moveNotfound){switch (ranNum){ case North:if (Target.position.y == 0) break; Target.position.y--;cout << Target << " moving North." << endl;return; case East:if (Target.position.x == grid_size - 1) break; Target.position.x++;cout << Target << " moving East." << endl;return; case West:if (Target.position.x == 0) break; Target.position.x--;cout << Target << " moving West." << endl;return; case South:if (Target.position.y == grid_size - 1) break;Target.position.y++;cout << Target << "moving South" << endl;return;default:break;}ranNum == MoveEnum(int(ranNum + 1) % 4);}}// end of loop// report score (number of hits vs turns)cout << "Player score is" << Tgt_hit_count << " out of " << turns << " chances" << endl;// Wait for user input to close program when debugging.cin.get();cin.get();return 0;}//--end of main program-------------//---------------------------------- Severity Code Description Project File Line Suppression State Error (active) no operator "<<" matches these operands Wk_3_Assignment_3 f:\Devry University Files\Intro to C++ Programming\Assignments\Assignment 3 Week 3\Wk_3_Assignment_3\Wk_3_Assignment_3\main.cpp 144 Error (active) expected a statement Wk_3_Assignment_3 f:\Devry University Files\Intro to C++ Programming\Assignments\Assignment 3 Week 3\Wk_3_Assignment_3\Wk_3_Assignment_3\main.cpp 105 Error (active) no operator "<<" matches these operands Wk_3_Assignment_3 f:\Devry University Files\Intro to C++ Programming\Assignments\Assignment 3 Week 3\Wk_3_Assignment_3\Wk_3_Assignment_3\main.cpp 138 Error (active) no operator "<<" matches these operands Wk_3_Assignment_3 f:\Devry University Files\Intro to C++ Programming\Assignments\Assignment 3 Week 3\Wk_3_Assignment_3\Wk_3_Assignment_3\main.cpp 150 Error (active) no operator "<<" matches these operands Wk_3_Assignment_3 f:\Devry University Files\Intro to C++ Programming\Assignments\Assignment 3 Week 3\Wk_3_Assignment_3\Wk_3_Assignment_3\main.cpp 156
  6. Just an update, it was a problem with Microsoft Visual Studios 2012. I ran 2015 and update the library file with the C++ library update and everything is running smoothly for now, fingers crossed. On the assignment, I also found the last bug. I'll post an update later tonight in case anybody wants to take a look at the code above and see if they can find it themselves first if they care.
  7. hhmmmm, I'm using the reg white background theme and it looks fine.. I'll prob switch to dark theme to see how I can fix it for the latter. As far as installation goes, that is what I initially thought was going on, and perhaps it still is. I have a 250 GB SSD that I run my OS on and a few monitoring programs for my system, and I use a 1TB WD Black HDD for everything else. I initially installed Visual Studios to the 1TB drive, and throughout the course of this assignment and a few from last week I have uninstalled and re-installed MVS probably 4 times now including the last uninstall where I decided to download and install MVS-2015 directly on the SSD just incase installing it on the 1TB HDD was causing the issue. Now, I have since also double checked with a known good code and it ran just find without any errors or problems with locating the #include files. When creating new projects it creates a directory folder for the project that would also have the #include libraries as well right? Perhaps I'll just completely delete the current projects and start over to see if that was the problem when I get home later I guess.
  8. I wave my dumba$$ flag and say thank you sir!
  9. ok, so the program we are advised to use along the duration of this course is Microsoft Visual Studios 2012. I updated to 2015 and have noticed no real changes in terms of how it effects my work in the course so far. In our 3rd week now, and I've reached a point in this 'compile time bug' assignment where I'm unsure of what could be causing the next error. Here is the code: // Week 1 Assignment-1// Description: Compile time errors with loops and branching//---------------------------------- //**begin #include files************#include <iostream> // provides access to cin and cout#include <time.h> // to allow seeding the random number generator using time//--end of #include files-----------//---------------------------------- using namespace std;//---------------------------------- //**begin global constants**********const int arraySize = 5;//--end of global constants---------//---------------------------------- //**begin main program**************int main(){ // seed random number generator srand(time(NULL)); // create a flag to end the while loop bool endLoop = false; // create an int array int array[arraySize]; // initialize the int array for (int i = 0; i < arraySize; i++) { array[i] = (rand()%50) + 50; } int number; int mysteryNum; int arrayNum; while (!endLoop) { mysteryNum = rand()%40; arrayNum = array[rand()%arraySize]; cout << " What number do you need to subtract from " << arrayNum << " to get " << mysteryNum << "? "; cin >> number; if (mysteryNum == arrayNum - number) { cout << "You got the number!" << endl; else { cout << "That's not the right number." << endl; endLoop = true; } } cin.get(); // Wait for user input to close program when debugging. cin.get(); return 0;}//--end of main program-------------//---------------------------------- The last error that I'm getting within the IDE is that the #include libraries for both <iostream> and <time.h> cannot be located. I verified that they are indeed within the program files of MVS-2015, and I double checked with the instructor that this wasn't an erroneous error and is indeed a symptom of the last error. There are a total of 5 errors in this source code, 4 of which I have already located and fixed (including in the above paste). Now I'm just trying to figure out what is causing the error in reading/locating the #include files as I'm fairly certain that is connected to the last error. I'll keep working on it, but I got stuck over the past 24 hours so I figured I'd throw a hail mary to you guys. Perhaps if you know the answer, maybe just guide in me in where I'm being a tard about it, lol. Again, thanks guys I really appreciate the help. Learning this means a lot to me and with the little time I have I'm doing my best to stay ahead of the learning curve. This is actually the first code problem I couldn't immediately figure out on my own. I'm betting on it being something pretty simple and dumb.
  10. I appreciate it, I'm literally in the introductory portion of C++ learning basic identifiers, functions, arrays, structs, strings, and building small code for just random stuff to utilize them. I'll probably post some questions on here tonight when I sit down to work on assignments. Aside from the labs we do assignments also where the 1st is a compile time bug search, 2nd being run time errors, and the 3rd being a build it yourself. In no way am I asking anyone to do work for me (just to clarify), I'm just looking to gain a different point of view that might help me understand what the hell I'm using and why, lol.
  11. Anyone here just absolutely versed in C++? I'm going through college and with some of the assignments I have to say they are getting pretty difficult. Outside of the classroom I'm on my own in terms of studying with anyone, or at least having someone to bounce ideas off of. I wonder if there is anyone here that might not mind me emailing them, or even just conversing through the forum that might be able to answer and "explain" the things I have questions on a bit better than my professor. Seems like one of those things where, until you're versed in the language it is a bit hard to understand someone else's explanation sometimes of how and why something is used. Anyhow, comment here or shoot me a PM if you feel inclined. It is pretty basic stuff but it helps to bounce ideas off of other people for me to learn sometimes given the subject. Thanks in advance
  12. Aside from the professionalism in LTT ability to produce polished videos and a growing employee base, I can't really see much difference in the way Linus approaches things from the time I tuned into this live stream when it was just him in front of a Samsung monitor in his own home office up until the WAN Show. I think it's easy for people to sit in front of their computer and play the judgmental cards through their keyboards and brain vomit crud like "linus sells a LTT branded noctua fan, so now he can't be trusted". Business is business, I'll never argue that; but I wouldn't say that Linus is going to over sell his branded fan from Noctua over another equally priced and performing case/radiator fan if it existed. Yes, while there are comparable products out there they still do not meet or exceed Noctua's performance at the same audible level that they provide. As far as I can tell he hasn't done so either, and over the years before he even created this branded Noctua fan he constantly (from the garage days) went through a series of difference fans looking for what might prove to be possibly the best for price/performance/and less audible noise. Next to that, we are all uniquely provided with our own opportunities to test our own facts against theirs in order to replicate what they have experienced in efforts to prove them wrong should we so choose. So saying "Linus can't be trusted" because he was smart enough to choose the unicorn of silent fan operation as a product to put his own LMG brand on sound like hasty b****ing to me. .02 - Lots of Hasty Generalizations; smart business is smart business in the end, but he still understands his audience ultimately dictates his portfolio. I think they do a superb job considering the market they exist in where either boobs get the views therefore the sponsorships, or you sell out completely; of which I do not think Linus has sold out in anyway.
  13. Try using a different adapter for connecting to your network. I had an issue with the adapter built into my motherboard, would only show up whenever I started doing anything slight intensive on the network, similar to what you're talking about. Bought a PCI-E adapter and everything is working fine. Try it out
  14. I was gonna say, at the very lease you could reapply your own thermal paste and reseat the heat sink. Glad you got it worked out. I run 3-way SLI Strix 980's and I never go over 70C on the top card in BF4 with 4k
  15. DASR1985 - Vessel Username Fav Videos: https://www.vessel.com/videos/FYu03582i https://www.vessel.com/videos/Yj4PbcgKj What can I say, Luke is a funny guy! So are you Linus.. you're actually funnier, just not in the videos on vessel right now.. please don't ban me! Ok!! OK!! You're funnier I take it back!!
×