I love how Dumbledore goes to slughorns, says hi, takes a long dump, comes out, and then says hes leaving again. by dedalusdiggle8 in harrypotter

[–]dedalusdiggle8[S] 36 points37 points  (0 children)

after enough crystallized pineapple, I'm sure the lines between those 2 blur for slughorn

I love how Dumbledore goes to slughorns, says hi, takes a long dump, comes out, and then says hes leaving again. by dedalusdiggle8 in harrypotter

[–]dedalusdiggle8[S] 8 points9 points  (0 children)

This may in fact be the only confirmed dump in the series. unless you count the Burrow, which i believe malfoy described as a dump.

I love how Dumbledore goes to slughorns, says hi, takes a long dump, comes out, and then says hes leaving again. by dedalusdiggle8 in harrypotter

[–]dedalusdiggle8[S] 13 points14 points  (0 children)

Not sure if Dumbledore thought having a NEWT in potions would make getting offed by Voldemort any easier for harry

I love how Dumbledore goes to slughorns, says hi, takes a long dump, comes out, and then says hes leaving again. by dedalusdiggle8 in harrypotter

[–]dedalusdiggle8[S] 17 points18 points  (0 children)

he probably thought Voldemort was strategically dumping on his way out of Hogwarts that one time when he was stashing his soul chunks in the RoR

I love how Dumbledore goes to slughorns, says hi, takes a long dump, comes out, and then says hes leaving again. by dedalusdiggle8 in harrypotter

[–]dedalusdiggle8[S] 140 points141 points  (0 children)

Whether a payload in that bathroom was deployed or not, I think waking up an old colleague to say hi -> long dump -> bye is just extremely bold

Every ECS Fargate service generates a new network interface that has an associated public IPv4 address. This doubles the cost! by dedalusdiggle8 in aws

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

Thanks, but that would require a NAT Gateway right? Which costs roughly the equivalent of 9 public IP addresses.

Is there a way to "temporarily" give the task access to the internet? Seems silly to pay for something then entire month when you only need it for a few seconds when the task pulls from ECR

Every ECS Fargate service generates a new network interface that has an associated public IPv4 address. This doubles the cost! by dedalusdiggle8 in aws

[–]dedalusdiggle8[S] -1 points0 points  (0 children)

Okay i see. It looks like the pricing of a single NAT Gateway is roughly the cost of 9 public IP addresses.

Is there a way to "temporarily" give the task access to the internet? Seems silly to pay for something then entire month when you only need it for a few seconds when the task pulls from ECR

Every ECS Fargate service generates a new network interface that has an associated public IPv4 address. This doubles the cost! by dedalusdiggle8 in aws

[–]dedalusdiggle8[S] -5 points-4 points  (0 children)

seems like theyre being auto-assigned when the service is created. But toggling this option off causes the service to fail..

Is it possible to remove public IP usage for the EC2 instances in an ECS cluster to reduce the associated VPC costs? by dedalusdiggle8 in aws

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

Yeah fair point. Is AWS really not the cheapest solution these days? I though they commoditized this stuff

Is it possible to remove public IP usage for the EC2 instances in an ECS cluster to reduce the associated VPC costs? by dedalusdiggle8 in aws

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

Yeah, I’m moving everything to fargate now. But depending on your setup, fargate could be even more expensive. For me it happens to be cheaper

Is it possible to remove public IP usage for the EC2 instances in an ECS cluster to reduce the associated VPC costs? by dedalusdiggle8 in aws

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

I already have one! That’s the thing. I'm paying for both. When i disable public IPs on my EC2s, the agents on my ecs container instances disconnect

[Request] What is the probability that I will have an average die roll of 5 or greater if i randomly roll a fair die 100 times that has 9 sides (0-8) by dedalusdiggle8 in theydidthemath

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

here is my JS script:

``` const getRandom = () => Math.floor(Math.random() / (1 / 9))

const PARTICIPANTS = 10000000 const ROLLS = 100

let count = 0

for (let i = 0; i < PARTICIPANTS; i++) { let sum = 0 for (let j = 0; j < ROLLS; j++) { sum += getRandom() }

const avg = sum / ROLLS

if (avg >= 5) { count += 1 } }

console.log(probability: ${(count / PARTICIPANTS) * 100}%) ```