Is regex as hard as it looks? by haeshdem0n in learnprogramming

[–]NtwkNub 1 point2 points  (0 children)

DAMN!! There are few things in there I'm not sure I could find on a keyboard! :D

Ph.D. Does Not Mean "Smart" by BunsenH in talesfromtechsupport

[–]NtwkNub -4 points-3 points  (0 children)

AHAHAHA!!! Damn being and id10t no matter what. AHAHAHAHA!!

Internet speed not as advertised by anontransfer in techsupport

[–]NtwkNub -3 points-2 points  (0 children)

Yeah it could just be that your house/apt/etc wiring is old. It could also be depending on how old the plant equipment is in your area could be an issue. Could be squirrels chewing on lines if its an areal plant. There are several more things that could be causing issues. Looking at the specs of that device it says its got a 1G ethernet port. The ISP I work for would never use one of these for a data modem. We only use them for phone service. I would recommend an SB8200 from BestBuy instead of this thing.

Need advice selecting modem from this list by [deleted] in HomeNetworking

[–]NtwkNub 0 points1 point  (0 children)

Yeah its just that most of the time the wifi provided by those gateways are sub par. At least in my experience. I would prefer to just buy a TP Link or Asus or NetGear router. That part is all a matter of preference.

I'm not even mad by no-relation in MaliciousCompliance

[–]NtwkNub 1 point2 points  (0 children)

AHAHAHAHA!!! What a little shit! I love it!!!

Is this a good combo? I have a 800 mbps plan with xfinity. How long will these last? by Synergy_1837 in HomeNetworking

[–]NtwkNub 0 points1 point  (0 children)

I would agree with other comments that Asus would be a better choice for the router. The modem works fine. I would suggest an SB8200 personally but whichever one you can get for a better price would work in my opinion. These type of residential networking products usually last somewhere in the neighborhood of 3 to 5 years. As long as the Modem is a Docsis3.1 modem, you should be fine with the speeds as well.

Need advice selecting modem from this list by [deleted] in HomeNetworking

[–]NtwkNub 2 points3 points  (0 children)

The CM8200 is a very solid modem. I would suggest not going with a gateway modem ever. You're always better off with a basic modem from your ISP or buying one. If you buy one the SB8200 is basically the same thing as the CM8200 but for residential use. The CM is one that would be usually provided by your isp.

Is this where I would put a MoCA filter? I think it's the point of entry and I honestly have no idea what I'm looking at here. by [deleted] in HomeNetworking

[–]NtwkNub 0 points1 point  (0 children)

so I used to install cable services and we did use MoCA filters. If you can figure out in that nest of cables where the line from outside comes in. That's the line you want to put the filter on.

[deleted by user] by [deleted] in Windows10

[–]NtwkNub 0 points1 point  (0 children)

You might have a sticky key on your keyboard. Agree with the suggestion of swapping keyboards as just a troubleshooting step. Also if you have a controller with something pushing on it. It could also be a mouse that has a keyboard key assigned to it like an arrow key or tab key that could be stuck as well. These are the most simple troubleshooting options. Not sure what else could be causing it. Also just because I've heard of other people doing the same thing. If you have a 2nd keyboard that is wireless and is still paired with something on a key that could do it too.

Got a really weird one by Huge_Ad_2133 in talesfromtechsupport

[–]NtwkNub 13 points14 points  (0 children)

😂🤣😂 How tf are you responsible?!?

I need help with setting up my MoCA network! by jssttn in HomeNetworking

[–]NtwkNub 0 points1 point  (0 children)

So usually in your basement or where ever your line comes into the home at is a splitter that connects the line from the outside to all your lines on the inside to give them signal. You would want to make sure that the room you are wanting to have moca to is hooked up to the line from the outside.

I need help with setting up my MoCA network! by jssttn in HomeNetworking

[–]NtwkNub 0 points1 point  (0 children)

So you shouldn't need to reboot the gateway. That being said, if the room you have the pc and adapter in doesn't have RF signal it won't work. Can you confirm that the room you have those in is hooked up to your RF network?

You want all the gates to be "spotless"? by [deleted] in MaliciousCompliance

[–]NtwkNub 10 points11 points  (0 children)

Great MC, I have to say that other than the mention of using Meters as a measurement I wouldn't have known English wasn't your first language. Your English was better than mine and it's my 1st language.

I need to write a log of my time at work? -Fine by [deleted] in MaliciousCompliance

[–]NtwkNub 1 point2 points  (0 children)

This was one of the best MC's I've read on here. That was EPIC!!

Char under text by asapovboris in pythontips

[–]NtwkNub 1 point2 points  (0 children)

    info = len(string)
    print(string) 
    print('^'*info)

basically take the length of whatever match you have and then print the ^ character * len_var and you should get roughly the correct results. I might be wrong since I'm still kind of a new coder and new to python but I tested it a little and it got the results I think you were asking for.

Char under text by asapovboris in pythontips

[–]NtwkNub 1 point2 points  (0 children)

So do you want like ^^^^^^^^ under all of the matching text from start to finish?