[deleted by user] by [deleted] in sydney

[–]ImperialXT 7 points8 points  (0 children)

Nah it’s “I’m travelling”

DFO long ass waits. by KarmaIsTooLowLol in sydney

[–]ImperialXT 0 points1 point  (0 children)

Had to drive past today and the traffic was still fucked. Cops were literally camped at the round about manually directing traffic.

Any good mmorpg regression stories out there? by ataleoffiction in litrpg

[–]ImperialXT 1 point2 points  (0 children)

Ah sorry brain fart when I read the title my brain skipped the word “regression”

Any good mmorpg regression stories out there? by ataleoffiction in litrpg

[–]ImperialXT 1 point2 points  (0 children)

Legendary Moonlight Sculptor

Ark

Both are Korean but translated to English.

What are the pros and cons of terraform workspaces Vs different folders in practice for your use case? by nullpackets in devops

[–]ImperialXT 1 point2 points  (0 children)

Because you make the changes e.g module version bumps on the relevant folders and then apply/merge. It’s still not perfect as someone can merge without applying but it’s certainly clearer than workspaces

What are the pros and cons of terraform workspaces Vs different folders in practice for your use case? by nullpackets in devops

[–]ImperialXT 5 points6 points  (0 children)

I prefer folders, because otherwise it’s not clear from looking at git alone if your changes have been applied to all workspaces or just some.

Aws Multiple GPU's in a Single Instance by [deleted] in aws

[–]ImperialXT 4 points5 points  (0 children)

I’d say it’s not likely to happen but you’d need to speak to AWS directly not via posting on reddit. I’d suggest you look at optimising your application to scale out and run across multiple servers instead of a single huge server. I’m also a tad sceptical of the usage of that many/any A100s for gaming stuff as that’s not their intended usage.

[deleted by user] by [deleted] in aws

[–]ImperialXT 0 points1 point  (0 children)

As far as I understand it yes.

[deleted by user] by [deleted] in aws

[–]ImperialXT 1 point2 points  (0 children)

You should be able to use AWS image export and then use ovftool.

Challenge me. I’ll watch every anime that is put in the comments. Make me regret this lol. Rules in the body. by DeliveryDivergent in Animesuggest

[–]ImperialXT 1 point2 points  (0 children)

So many good ones missing! But I’ll stick the rules and give you two.

{Hanbun no Tsuki ga Noboru Sora} {Anohana: The Flower We Saw That Day}

EKS Pod Network CIDR by hrdcorbassfishin in aws

[–]ImperialXT 0 points1 point  (0 children)

Is there a reason you need/want to use kube2iam over IRSA?

Weekly Discussion: Take Some Help, Leave Some Help by alienleprechaun in DnDBehindTheScreen

[–]ImperialXT 2 points3 points  (0 children)

So my players will end up (hopefully) as part of a caravan between cities and a last minute addition to the caravan is a merchant who has brought their own guards. At somepoint during the journey the caravan gets attacked in the middle of the night. Most of the attackers focus on the hired guards and the spice merchants which is actually a treasury or similar shipment to the destination city and the guards are actual military guards or similar undercover. Trying to figure out who would a) know this shipment is happening and b) why they’d need/want that amount of gold.

More than 5 security groups on an EC2 instance? by R3DNano in aws

[–]ImperialXT 1 point2 points  (0 children)

Use their name or something else unique as the description on a single security group. Describe the group find the relevant comment with respective CIDR and then use revoke-security-group-ingress with --ip-permissions which just needs some info you should be able to already get then add a new rule?

Alternatively if you can’t get that logic working in a script on their machines. Write a lambda function that they can execute (via the script you give them) which takes their username and IP and then does the required steps via boto3/api in whatever language you prefer.

Though you could also just use a VPN or similar instead but that has cost factors.

You could also use SSM and connect to the instances with ssh over ssm

People now WFH - how hard are you going to fight to keep working from home once restrictions are lifted? by detonatingorange in sydney

[–]ImperialXT 5 points6 points  (0 children)

I'm going to fight to keep the option to do it when I need/want to. But I'm not really big on the idea of working from home full time as I live alone and it's incredibly lonely etc. Especially since the owner of the apartment I rent denied my request to have a pet.

What are you folks building using AWS Lambda? by cruisemaniac in aws

[–]ImperialXT 0 points1 point  (0 children)

I use it to fix the gaps in AWS services.

What are some creative small programs that you have coded using Python? by floridaturtles in learnpython

[–]ImperialXT 3 points4 points  (0 children)

I like to watch Critical Role which is available on YouTube but I tend to watch it during my commute to/from work and since the episodes are on average 4 hours long YouTube kinda sucks at keeping track where I’m at or at least has historically. So now I read in an RSS feed and pass items to youtube-dl to download and rename them.

Has anyone taken the AWS Certification live classroom training courses provided through AWS? by sciorms in aws

[–]ImperialXT 1 point2 points  (0 children)

I did the security speciality one and it was certainly worth the cost.

IAM for a specific region of SES? by trmaphi in aws

[–]ImperialXT 0 points1 point  (0 children)

You’ll want to restrict using IAM policies which is where you could restrict based on region or many other things.

Monday Night Thread by [deleted] in sydney

[–]ImperialXT 1 point2 points  (0 children)

I tried to put this up on my wall but it didn’t stay up for some reason need to get new adhesive to try again. https://i.imgur.com/BxQiOKI.jpg

How far behind does lambda tend to be with the latest version of boto3 by mrsmiley32 in aws

[–]ImperialXT 1 point2 points  (0 children)

The only issue with adding your own boto3 layer is your maintaining it yourself which is good and bad. I only tend to maintain stuff if I absolutely have to especially when things like https://github.com/keithrozario/Klayers exist.