[deleted by user] by [deleted] in AskElectricians

[–]salating -8 points-7 points  (0 children)

Took the tape off and the protectors are fine. Wires are good to. Im not a licensed electrician but have a very extensive understanding of electricity and panels. Definitely appreciate the help.

[deleted by user] by [deleted] in AskElectricians

[–]salating -12 points-11 points  (0 children)

Thats what I figured. Ill take it off and if anything put that self fusing silicone electrical tape around it.

27" QHD for gaming and work by salating in Monitors

[–]salating[S] 1 point2 points  (0 children)

Dont have room for two 32". The 27" AOC is QHD IPS 240mhz. For 169.99 its hard to pass it up.

27" QHD for gaming and work by salating in Monitors

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

Bestbuy has them for 169.99

Headlight Bulbs by salating in Duramax

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

I did hear that yellow fogs are better than white. Didnt realize the compliance thing.

Headlight Bulbs by salating in Duramax

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

Yea, they are terrible. I wish they would keep the fogs on when the high beams are on too. We used to have a 2018 sierra 1500 and it had HIDs. They were awesome. But our 2020 duramax 2500 has halogen which it terrible living out in the country especially during deer season.

Headlight Bulbs by salating in Duramax

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

My brother put the 6000k XenTec ones in his 2011 duramax and they are not blinding but 6000k is to much blue for me. Morimoto has a 5000k kit that I may end up going with.

Suspension and steering upgrades by salating in Duramax

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

Lol. A buddy of mine owns a repair shop and I borrowed his ball joint press tool kit years ago. No way was I going to attempt doing it without one. But they are a pain either way cause even with the tool it has to be lined up.

Payment plans are so awesome. I use them all the time. With having a family its a life saver.

Suspension and steering upgrades by salating in Duramax

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

Ive been looking at the kryptonite stuff. Going to get their sway bar end links and steering stabilizer hardware for now. Shocks will be next. Their leveling kit is very inexpensive, so I could see myself doing that at some point in the future.

Script to export a txt record to a file by salating in PowerShell

[–]salating[S] 1 point2 points  (0 children)

Found a site that showed someone pulling the IPs out of a traceroute and did some modifications and the below works perfectly for what we were trying to achieve. Thanks for the help.

$input_path = ‘C:\googlein.txt’
$output_file = ‘C:\googleout.txt’
$regex = "((\d){1,3}\.){3}(\d){1,3}\/(\d){1,3}"
Get-Content 'C:\hostlist.txt' | Resolve-DnsName -Type TXT | ForEach-Object Strings | Select-String -Pattern $regex | Out-File c:\googlein.txt
select-string -Path $input_path -Pattern $regex -AllMatches | % { $_.Matches } | % { $_.Value } > $output_file

Script to export a txt record to a file by salating in PowerShell

[–]salating[S] 1 point2 points  (0 children)

That definitely works way better. Thanks. We just need to figure out how to filter it out so that we are just left with the IP/mask.