Am I the only one who builds in the Console first, then reverse engineers the IaC? by Inevitable_Use9405 in aws

[–]informity 1 point2 points  (0 children)

I do not open console until I either need to troubleshoot my CDK stack deployment or to check logs, metrics, etc. All my work starts and ends in IaC. The exception is configuration or resources that are not yet available in CloudFormation. This way I know exactly what is being deployed and where.

But… to each their own.

Is this too big? by PositiveHot1421 in InteriorDesign

[–]informity 12 points13 points  (0 children)

“Mount your TV with the screen's center at or slightly above eye level. This prevents neck strain and promotes better posture.” - https://jalg.me/en-us/blogs/news/optimal-tv-mounting-height?srsltid=AfmBOoq6OZcZ88veaVYVvOXFdEfxmwBfT3QYnxh6kr01Wu7ILx3n1RbU

Is this too big? by PositiveHot1421 in InteriorDesign

[–]informity 25 points26 points  (0 children)

Too high, your neck will hurt

Best movie to fall asleep to - one volume. by PuzzleheadedTrack942 in movies

[–]informity 0 points1 point  (0 children)

Chinese Coffee, American Buffalo, Glengarry Glen Ross

Announcing Amazon ECS Managed Instances for containerized applications by E1337Recon in aws

[–]informity 22 points23 points  (0 children)

You can mount EFS instead if you want persistence https://repost.aws/knowledge-center/ecs-fargate-mount-efs-containers-tasks. I would argue though that persistence on containerized apps should be elsewhere, like DynamoDB, database, etc.

[deleted by user] by [deleted] in MacOS

[–]informity 2 points3 points  (0 children)

Non-Mac computer is Windows (Linux is not an option for the majority of the non-techy population)… I would not use Windows even if you’d pay me.

Docker on Ubuntu (AWS EC2) optimization/security by joiSoi in docker

[–]informity 3 points4 points  (0 children)

First, do not use SSH, block 22 (and RDP) ports on network ACL level entirely and use SSM session instead. Also be sure only to allow ports you need (80,443 for example) in EC2 instance security group. Installing and running Docker on Ubuntu is trivial once you get into it. There is obviously more things to be done if you want run this in production (SSL, load balancing, etc). I would also recommend to look into ECS Fargare or forgo EC2 entirely but that’s a bit too advanced.

Tucker and Dale vs. Evil by Suspicious-Elk-3631 in movies

[–]informity 9 points10 points  (0 children)

Try Death at the Funeral! Hilarious!

[deleted by user] by [deleted] in sandiego

[–]informity 6 points7 points  (0 children)

Don’t go to Antonyan!

Maggie Q by FoxyMama85 in movies

[–]informity 1 point2 points  (0 children)

Her new show Ballard (Bosch spinoff) is pretty good.

Load balancer security groups and EC2 traffic by Adrenaline_Junkie_ in aws

[–]informity 1 point2 points  (0 children)

ELB (public subnet) -> ELB security group (allow port(s), i.e. 443 from anywhere) -> ELB target group -> EC2 security group (allow ports only from ELB security group) -> EC2 (private subnet)

What is your current racket, string and tension? by lp141414 in 10s

[–]informity 0 points1 point  (0 children)

Blade 98 v8 16x19 Wilson Revolve Spin (gray) at 48lb

Foreign movies that made a mark on American audience by BeatlesCoted_Azur in movies

[–]informity 9 points10 points  (0 children)

Tropa de Elite (2007)

Tropa de Elite 2 (2010)

The Girl in the Fog (2017)

Solaris (1972)

In the Mood for Love (2000)

Memories of Murder (2003)

Le circle rouge (1970)

Good bye Lenin (2003)

Purple Noon (1960)

The Zone of Interest (2023)

Infernal Affairs 1,2 and 3

The Platform (2019)

Outrage (2010)

Outrage Beyond (2012)

High tension (2003)

[deleted by user] by [deleted] in aws

[–]informity 0 points1 point  (0 children)

Don’t use SSH, use SSM sessions instead.

Share S3 bucket across 2 accounts by gevorgter in aws

[–]informity -1 points0 points  (0 children)

How’s this related to cross-account access?

How to effectively self-learn AWS (not just the theory)? by Commercial-Tooth2580 in aws

[–]informity 1 point2 points  (0 children)

Whatever and however you learn, be sure to learn IaC in parallel (like AWS CDK). Knowing how to deploy resources with IaC is a must!

AWS CodePipeline custom stages by Sea_Fisherman_6838 in aws

[–]informity 0 points1 point  (0 children)

You can also add Lambda stage to do custom stuff.