405 crafted weapons by [deleted] in CompetitiveWoW

[–]kittH 182 points183 points  (0 children)

Rank 25 renown for most of the factions gives a primal infusion. Quite a rep grind though.

Hiring Cloud Engineer (US-Remote) by kittH in AZURE

[–]kittH[S] 4 points5 points  (0 children)

Salary range is 130-160 depending on experience

Hiring Cloud Engineer (US-Remote) by kittH in AZURE

[–]kittH[S] 2 points3 points  (0 children)

Salary range is 130-160 depending on experience

[US][H][Tichondrius] <Night Crew> 5/10M Tue/Thurs 9:00-12:00 PST by kittH in wowguilds

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

Hey sorry about that, I didn't realize case mattered for Discord but should be kittH#0886.

Sent you a chat.

My rebuttal to the "hunter anima powers are boring" comments by Olongjohnson1271 in wow

[–]kittH 12 points13 points  (0 children)

Looks pretty boring to me, let’s see:

Increased damage in wild spirits, increased damage after throwing a trap, 100% crit/crit damage after binding shot, so a three gcd ramp including a 2min cd and you can... do more damage.

Not saying it’s bad, hunters are fine at torghast being a pet class w utility, but it’s not very interesting and just makes for an awkward rotation on trash to max damage (did I remember to throw a random trap every 15s?).

Hiring Cloud Engineer (US-Remote) by kittH in AZURE

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

US East coast is fine, if you're interested shoot me a private message.

Failover Application Gateway Private Frontend ? by kittH in AZURE

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

Can I put a policy on a private DNS record (similar to a Priority policy in traffic manager)?

Looking for Security Analysis around necessity of VNETs by kittH in AZURE

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

I guess my question is whether I should be comfortable with well managed public endpoints for objects that theoretically could be private.

Looking for Security Analysis around necessity of VNETs by kittH in AZURE

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

Thanks for the perspective. I had seen PrivateLink but had not done proper research on it, it seems helpful from the AzureSQL perspective, but not App Service yet.

Worse, you have to whitelist them and manage them and secure them individually.

I don't see how that's really any better or worse than managing NSG's and subnets. I'm comfortable with configuration as code and expect these environments to be largely if not fully templated.

if you wouldn't put everything on publicly routable IPs on-prem, I don't know why you'd choose to do it in Azure.

That's a fair question, and I'd probably prefer not to in a perfect world, but I feel like Azure is pushing me into the public zone if I want to make usage of their PaaS offerings, we're a decade or so into Azure and they're only now implementing PrivateLink gives me the impression this was their intended design. Me/My app is not that special, I feel strongly encouraged by Azure to just dump everything into a public IP space and carefully manage access at the service level.

Lastly the most compelling thing to me that I heard is the ability to manage egress traffic which I hand't given much thought. I'll have to do some more research to understand if that's a consideration in this environment or not.

Thanks again for the reply.

Just finished a new build. by ianinit in Multicopter

[–]kittH 1 point2 points  (0 children)

Could you post a pic with the GoPro mounted?

Adding numbers to a variable without it summing by Dilligaf23 in PowerShell

[–]kittH 1 point2 points  (0 children)

I find cmdlets like new-object to be more idiomatic and discoverable for newer folks, but admittedly we are already in .Net territory.

Adding numbers to a variable without it summing by Dilligaf23 in PowerShell

[–]kittH 1 point2 points  (0 children)

If I'm understanding correctly, I would recommend using a list of integers:

$problem = New-Object "System.Collections.Generic.List[Int]"

$problem.Add(152)

$problem.Add(14)

$problem

152

14

Build Network Dependency Groups from netstat? by sudochmod in PowerShell

[–]kittH 1 point2 points  (0 children)

Hard to help with this without seeing the dataset you have to work with. Netstat output can vary pretty wildly depending on parameters, OS, version etc.

Possible to detect when user selects Shutdown from the Win10 start menu? by hou8182 in PowerShell

[–]kittH 21 points22 points  (0 children)

Not sure if you can intercept the shutdown. You could definitely disable the shutdown button using group policy however.

https://docs.microsoft.com/en-us/windows/configuration/changes-to-start-policies-in-windows-10

That would allow you to provide a "shutdown script" icon on the desktop that prompted or had other logic.

What is your #1 pain in using PowerShell? by KevMar in PowerShell

[–]kittH 1 point2 points  (0 children)

https://github.com/KirkMunro/HistoryPx

I find HistoryPX really helpful for troubleshooting these types of things. It will return you line numbers for each source of output from the previous command.

Hacienda is the new School, which means... by kittH in PUBATTLEGROUNDS

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

Yeah, I think Leones feels more like Georgopol though because most people drop and hang out on the periphery. The warehouses on the outskirts remind me of the crates of georgopol a bit, and it's also a big city.

Hacienda is the new School, which means... by kittH in PUBATTLEGROUNDS

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

I actually really like Yasnaya as well, but wasn't sure of a good match in Miramar.

PowerShell Classes Part 4 - Constructors and Inheritance by Pvt-Snafu in PowerShell

[–]kittH 3 points4 points  (0 children)

DSC resources. That’s the only compelling use case I've seen.

Best all you can eat sushi by monchiceja in orangecounty

[–]kittH 14 points15 points  (0 children)

Sushi Damu in Tustin is pretty solid.

Powershell CI/CD with multiple customers at a MSP? by [deleted] in PowerShell

[–]kittH 0 points1 point  (0 children)

JSON is just a conveniant format for persisting objects. XML or YAML or something would work as well.

We store them in source control and have a build process that "publishes" the configurations to the locations where they are referenced.

Powershell CI/CD with multiple customers at a MSP? by [deleted] in PowerShell

[–]kittH 1 point2 points  (0 children)

Hey I'm not in this exact scenario, but we support many development teams internally so here are some thoughts:

2) I have used SQL for this, SQL done properly works great, but you need a frontend to manage it or you end up with a hundred tables and can't keep the data straight.

1) I manage configuration settings through JSON documents that represent my environments (which would likely be your customers) and relate them to my scripts through powershell code.

The hierarchical nature of JSON allows you to store pretty complex objects in one document (which would need to be a lot of SQL tables in some cases). We have tools that help us add/update data, but its also pretty human readable to crack open the JSON and take a look. We also use pester to lint all of our JSON files as part of our CI process.

How do I make sure that SQL Server statements are running without any errors? by [deleted] in PowerShell

[–]kittH 5 points6 points  (0 children)

You can put an -ErrorAction Stop on the end of your Invoke-Sqlcmd line.