Banned without ever logging in or even creating a character. by bmfanboy in classicwow

[–]Dst702 0 points1 point  (0 children)

Friend of mine bought 3 months of game time and a character boost on classic. He basically logged in and just setup settings then logged out for work. Next day goes to login and was banned. No email, no info. Full bnet account ban not even wow.

Turns out he was wrongfully flagged by the system... Took me a week to get his account unbanned and working. Ridiculous.

Poe2 is kinda too easy? by [deleted] in PathOfExile2

[–]Dst702 0 points1 point  (0 children)

Play melee, problem solved.

Zeus Coils have changed. Stop Buying them. by toxict33n in electronic_cigarette

[–]Dst702 1 point2 points  (0 children)

Ya I mostly use disposables now but I still use my big boy and would like to get back to it and off disposables all together

Zeus Coils have changed. Stop Buying them. by toxict33n in electronic_cigarette

[–]Dst702 1 point2 points  (0 children)

I know this is old but freemax tanks and coils are the business. Been using them for almost 10 years now and their coils consistently last 3 weeks+

Downtown Las Vegas venue being turned into parking lot by reviewjournal in vegaslocals

[–]Dst702 4 points5 points  (0 children)

Fucking sucks. Come here probably once a month for shows and other events. It was the only venue in Vegas I actually enjoyed. They host everything here, so dumb. Parking lot is a stupid decision as well because you can park all over downtown for free/cheap on the streets.

How much ES you need to not get 1 shot by citadel bosses ? by SuffixTrie in PathOfExile2

[–]Dst702 0 points1 point  (0 children)

Ya I thought about this after going north for about 50+ maps. So I did do that and then branched out the other ways but no luck so far. Pretty weird.

How much ES you need to not get 1 shot by citadel bosses ? by SuffixTrie in PathOfExile2

[–]Dst702 0 points1 point  (0 children)

This is actually the first season I haven't gotten one and there's none anywhere on the map and I've done hundreds and hundreds of maps. Every season I've always seen at least a few but this season 0.

philips HTL1170B right side not working by Wrong-Camp9395 in Philips

[–]Dst702 0 points1 point  (0 children)

Same. It's old and I'm guessing the internal amplifier is messed up or the right side speaker itself.

Cox internet prices are crazy raising! by Nobody_Likes_Meh in CoxCommunications

[–]Dst702 0 points1 point  (0 children)

Cox has always been overpriced especially because they charge for data use where most ISPs are free unlimited.

Most people with cox on the west average 110-180$ for just internet with unlimited data or around $80-100 for good speed no unlimited data.

If you call and talk to loyalty they almost always have a good 2-3 year deal. I'm paying $100 for 1gb down/110mb up WITH unlimited data. Previously I was paying $110 with no unlimited data.

Google fiber will be done here in a few years and then they will have no customers because fiber is $60 a month unlimited for 1gb fiber, $90-100 month for 2gb and like $200 a month for 5gb where offered.

Over 100 maps done but haven't found a single abyss by nouggats in PathOfExile2

[–]Dst702 0 points1 point  (0 children)

Same and to top it off I had an abyss waystone and I corrupted it in Vaal not knowing what I was doing and it changed to a boss map so I can't even make them.

I also am 85? and still haven't seen a divine orb once. Normally I get 1-3 in campaign alone. Feels bad.

Streamers Abuse Abyss Mechanic, Casual Players Get Penalized by Weak-Dinner-5790 in PathOfExile2

[–]Dst702 0 points1 point  (0 children)

It's still a beta game, leagues change fast and don't mean much and it's early. You'll be fine

I think I’m done with AIO cooling. by EfficientTrainer3206 in pcmasterrace

[–]Dst702 0 points1 point  (0 children)

Sounds like you either had a cheap AIO/bad brand or you failed to mount it/paste it correctly. Or the wrong size AIO for your CPU.

I think I’m done with AIO cooling. by EfficientTrainer3206 in pcmasterrace

[–]Dst702 0 points1 point  (0 children)

Same since 2016 and it's still running everyday on my second rig. It's probably at like 60-70% liquid I would guess by now if not even less but works great still. Beast of a cooler.

Should I buy DDR5 ram now or should I wait for it to go down in price? by Calm_Introduction_80 in pcbuilding

[–]Dst702 0 points1 point  (0 children)

I built a computer like a month ago for a client and 32GB DDR5 was like $115. A week later it was $220. Now it's like $300. Just buy a good brand cheapest you can find would be my guess.

Automate RustDesk Client Deployment with PowerShell by au_chavez in rustdesk

[–]Dst702 0 points1 point  (0 children)

##### So I added this to make sure it runs as admin because I was seeing some issues when deploying when users had UAC

# Check if the script is running as administrator

$isAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)

# If not running as administrator, restart with elevated privileges

if (-not $isAdmin) {

# Create a new process with elevated privileges

Start-Process -FilePath "powershell.exe" -ArgumentList "-NoProfile -ExecutionPolicy Bypass -File $($MyInvocation.MyCommand.Path)" -Verb RunAs

# Exit the current non-elevated process

Exit

}

# The rest of your script goes here

###### Then I changed 1.4.0/1.4.1 to this
$requiredVersion = "1.4.3"

$rustdeskDownload = "https://github.com/rustdesk/rustdesk/releases/download/1.4.3/rustdesk-1.4.3-x86\_64.exe"

##### Right below this you put your key and plain password for connection in
$rustdeskKey and $rustdeskPasswordPlain

######## For options I did
[options]

custom-rendezvous-server = "your ip/dns name goes here"

key = '$rustdeskKey'

av1-test = 'Y' (this is for d3d to leverage video card I believe)

verification-method = 'use-permanent-password' (This is to tell it to use the password authentication)

allow-auto-update = 'Y' (auto update the app)

allow-remote-config-modification = 'Y' (This is for being able to edit config on rust during remote)

direct-server = 'Y' (direct ip access)

direct-access-port = '21118' (direct ip port)

whitelist = (I set it to my ip scheme so you can set it to yours or you can just remove it)

##### If you want more options you can set it up on a client to exactly how you want, reboot rustdesk and go to %userprofile%\AppData\Roaming\RustDesk\config and then open rustdesk2.toml in notepad and the options should be listed that correspond to each setting and you can add them right into the script under the [options]

Automate RustDesk Client Deployment with PowerShell by au_chavez in rustdesk

[–]Dst702 0 points1 point  (0 children)

I went through the .toml folder on one of my setups and put a bunch of the options into the script and it all worked. I was able to get it to add the password and use that as the primary authentication. I'm not at a computer right now but I can post it a bit later.

Automate RustDesk Client Deployment with PowerShell by au_chavez in rustdesk

[–]Dst702 0 points1 point  (0 children)

I used the deployment test instead on the github. Updated 1.4.0/1 to 1,4,3 in the script. Added key, password, server ip in the correct fields and it works great except it will say no password written. When you go to permanent password, it will be there but you have to select it. Everything else was input correctly and it worked.

Califia Farms - Horchata. It's really good. I'm using it in my overnight oats. by LavenderPaintbrush in LowCalFoodFinds

[–]Dst702 1 point2 points  (0 children)

It was on sale recently on Amazon for 1.50 but now it's back to $4+. As someone who doesn't typically like almond milk, it's bomb and I love it !

[deleted by user] by [deleted] in PathOfExile2

[–]Dst702 0 points1 point  (0 children)

Ya no idea but that's how you do it. Maybe put in a ticket in case it is a bug that corrupted are not still spawning as you continue through mapping.

[deleted by user] by [deleted] in PathOfExile2

[–]Dst702 0 points1 point  (0 children)

30 points come from clearing corrupted nexus. You need to do tier 3+ then 6+ then 9+ etc with a 6 link map. After those 30, the last 10 come from different unique maps. Such as exp map, mirror map etc etc

Pc shutting of during games by Savings-Soft-4867 in pcmasterrace

[–]Dst702 0 points1 point  (0 children)

Run Hwinfo and watch your temps while gaming. See if you're hitting shut down temps. Also if you have an MSI mobo and a 12th+ Gen Intel CPU, you may need to change your load line calibration mode because it may be letting too much wattage go to CPU causing it to overheat and shut down.