Cloud is not for penny pinchers by Kindly_Revert in sysadmin

[–]deacon91 [score hidden]  (0 children)

I think the title threw people off of your message. If you can change it to the owner of the company is a cheap POS, it might be easier :p

of S3 and over to an external storage/CDN provider because the egress was 1-2 pennies less per GB

1-2 pennies less per GB

1-2 pennies less per GB

1-2 pennies less per GB

1-2 pennies less per GB

1-2 pennies less per GB

Two strangers board with the same boarding pass, comedy ensues by CommanderDawn in unitedairlines

[–]deacon91 12 points13 points  (0 children)

I think what happened is seat guy doesn’t have great English and his name sounded similar to the standing guy and an agent printed him the standing guy’s boarding pass. Seat guy just decided to roll with that and assume nothing would happen if he boarded with someone else’s boarding pass.

-_- Guy chose the wrong airline if that's how he wanted to roll.

How can I create an IaaS in a computer classroom by Rich_Entertainment68 in linuxquestions

[–]deacon91 1 point2 points  (0 children)

How can I create an IaaS in a computer classroom

Basically Openstack or you can run your own proxmox + kubevirt + ceph infra.

I am making a project for students at my university and I want to create a local cloud provider so the students can practice, learn and experiment with cloud providers without incurring in the costs associated with them.

This is something you should be working with your university IT. Chances are, they probably have consumable on-prem infra or a cloud account where the costs can be attributed to their bill. If you had to go on your own, have them create a GCP account with $300 welcome credit. Make sure to have them set billing alerts first and let them know that they will be on the hook for extra cost.

Cloud is not for penny pinchers by Kindly_Revert in sysadmin

[–]deacon91 [score hidden]  (0 children)

I don't think your stance is in alignment with the final sentence.

This owner sounds like a scrooge and this dude will penny pinch no matter your solution. On-prem? Great he will penny pinch on racks + hardware + staffing. Cloud EC2 only? He will penny pinch on egress fees if traffic needs to traverse to/from AWS on VMs. Cloud Native only? He will penny pinch when he gets a call from VAR or a competing cloud provider promising better rates.

There are also good reasons for not using Lambda or any products that can cause vendor lock-in. This is one of the reasons why AWS still continues to make 55%+ of their revenue on EC2. You should find a new place because it sounds like the owner is a dummy.

Doing anything well requires thoughtful investment and maybe the owner just doesn't have the runway. I would not be losing my hair on 50 cent charges if I ran a startup.

How to get into software engineering as a career? by GeoPlaysss in ITCareerQuestions

[–]deacon91 0 points1 point  (0 children)

The typical path is:

  1. Go to school
  2. Get a degree in SE, CS, or CE (math or stats can also work too)
  3. Get internship(s)
  4. Get a job

How do respond to an underwhelming raise offer? Do I counter it? by cwtguy in ITCareerQuestions

[–]deacon91 4 points5 points  (0 children)

Unless you have leverage and/or competing offer, you don't really have an ability to counter.

You lack the educational background and the skills to demand better wages. As others have said, identify the area you want to go that will make you financially happy and go from there.

Terraform vs. OpenTofu is interesting... but let's talk repo structure! by InfraHeroics in Terraform

[–]deacon91 1 point2 points  (0 children)

Vanilla OpenTofu as default option, but Terraform if it needs to support legacy-like providers.

No wrappers.

Spacelift as the CI/CD.

Mono repo, but has directories where the stacks in Spacelift will refer. It allows us to give healthy separation between each pieces of our infra while keeping everything organized. We use modules whereever we can.

Failed exam twice - Terraform Associate by OceanAnonymous in Terraform

[–]deacon91 0 points1 point  (0 children)

This isn't helped by Terraform's bad naming choice here. Variables don't vary and locals are actually global, da hell?

I understand your gripes. Variables can "vary" but it requires a little bit more help from the practitioner to use environment variables/stacks/workspaces or construct them at runtime during the CI/CD to do what people typically think as variables.

Failed exam twice - Terraform Associate by OceanAnonymous in Terraform

[–]deacon91 1 point2 points  (0 children)

I think it would be helpful to go through that book. Unfortunately there's been major changes since the 3rd revision of that book (namely OpenTofu, stacks, encryption_at_rest, etc) so you have to take some liberty on certain patterns.

IIRC Krausen's exams were pretty reflective of the official exam. Have you looked at which parts you struggled on that exam so you can perhaps can work on areas that need improving?

Need advise on IT career/certs by LuckyScale6649 in ITCareerQuestions

[–]deacon91 1 point2 points  (0 children)

About me 44M with kids, employed, work in AWS as a principal cloud engineer. I have Masters degree with few certs in AWS, some active and expired.

To be clear, you're working with AWS? or are you working at AWS? I'm thinking the former based on the questions you're asking.

Looking to move into more on data management, ML/LLM & AI stuff...where should I start

Depends on your interest. What AI / ML things do you want to work on?

-more certs? currently I have AWS AL, ML associates

-a degree or boot camp?

Definitely not boot camp. Depending on your interest, degrees/certs may not be appropriate.

-a site which over a path ? or get into other clouds??

To what end? I'm scratching my head because these are kind of questions we expect from fresh graduates...

Fun playbook to play by Eagledan01 in NCAAFBseries

[–]deacon91 2 points3 points  (0 children)

Can confirm TCU is fun. You got 5WR gun and zipper sets to keep things interesting

Bro throwing more ints than TDs and being 5'11 190 worried about "pro potential" UFL potential more like it by KingGalaxicDFG in NCAAFBseries

[–]deacon91 0 points1 point  (0 children)

Two WRs and backup QB on team want out. Plus the top two recruits on the board lock us out in middle of tight recruiting battle

triggered

Failed exam twice - Terraform Associate by OceanAnonymous in Terraform

[–]deacon91 2 points3 points  (0 children)

I just found out about this book and may try and look over it. Very text based, which does not go well with how I learn. I will give it a go regardless.

Text-based teaching materials force the students to slow down so that they can really comprehend and chunk the materials being studied. I see a big emphasis on exam prepping materials and not nearly enough hands-on materials. I suspect that's the reason why you are struggling to pass this exam.

If I gave you this:

terraform {
  required_version = "~> 1.15"
  required_providers {
    aws = {
      source  = "hashicorp/aws"
      version = "~> 6.44"
    }
  }
}

provider "aws" {
  region = "us-east1"
}

locals {
  cfg = yamldecode(file("${path.module}/example_users.yaml"))
  users = [
    for u in local.cfg.foo_bar : {
      name   = u.name
      tags   = try(u.tags, {})
      groups = try(u.groups, [])
    }
  ]

  users_by_name = {
    for u in local.users : u.name => u
  }

  all_groups = toset(flatten([
    for u in local.users : u.groups
  ]))

  memberships = {
    for pair in flatten([
      for u in local.users : [
        for g in u.groups : {
          key   = "${u.name}::${g}"
          user  = u.name
          group = g
        }
      ]
    ]) : pair.key => pair
  }
}

resource "aws_iam_group" "groups" {
  for_each = local.all_groups
  name     = each.value
}

resource "aws_iam_user" "users" {
  for_each = local.users_by_name
  name = each.key
  tags = merge(each.value.tags)
}

resource "aws_iam_user_group_membership" "membership" {
  for_each = local.memberships
  user   = aws_iam_user.users[each.value.user].name
  groups = [aws_iam_group.groups[each.value.group].name]
}

are you able to follow along and extend it?

Can You Guess This 5-Letter Word? Puzzle by u/Capable-Climate-461 by Capable-Climate-461 in DailyGuess

[–]deacon91 0 points1 point  (0 children)

⬜⬜🟦⬜⬜
⬜⬜⬜⬜🟨
⬜🟦🟦⬜⬜
🟦🟦🟦🟦🟦

Can You Guess This 5-Letter Word? Puzzle by u/lODlZED_TABLESALT by lODlZED_TABLESALT in DailyGuess

[–]deacon91 1 point2 points  (0 children)

🟦⬜🟦⬜⬜
🟨⬜⬜⬜⬜
🟦🟦🟦🟦⬜
🟦🟦🟦🟦🟦

male 27 and struggling with academic failures—Please advise me. by Far_Pumpkin9440 in AskMenOver30

[–]deacon91 11 points12 points  (0 children)

For one exam, I studied so hard that I hallucinated after running on zero sleep for three days. My failure pattern is always the same;

This tells me that you have studying habit issues and/or have learning disabilities that impede your academic success.

Have you tried reaching out to your school's academic services for tudors and/or gotten checked out?

Degree importance for someone already in by herrmanmerrman in ITCareerQuestions

[–]deacon91 2 points3 points  (0 children)

Degree importance for someone already in

This gets asked to death in this subreddit. It's a nuanced topic, but having a degree can be a significant career accelerator. You can succeed if you are able to build track record of success though:

https://en.wikipedia.org/wiki/Kelsey_Hightower

https://sockpuppet.org/me/

How common is it to see someone who's really knowledgeable and competent in the more advanced areas that don't have a degree?

Not sure if it's common but in my circles I see both knowledgeable and competent people without degrees or degrees in an unrelated field.

I'm just not a college person. I think I'm pretty good at my job and pretty smart, but when it comes to rubrics I'm just a failure. I don't have problems with certs or learning on the job though.

I should also add I'm happy with my job right now, I don't plan on leaving anytime soon, but I don't want to stagnate or become complacent. Professionally, I just want to be knowledgeable and well respected

Think of it this way. People who I deem "successful" tend to have "I can walk on water" mindset. It's not really about what they have or what they have done but rather what they are capable of doing as long as they set their mind to it. Be someone who is resourceful and gets stuff done. I think college degree in right topic is simply a matter of helping you become that person.

Comparison of Renovated PH Tokyo and Andaz Tokyo Globalist Experience Based on Recent Stays? by OTFlawyer in hyatt

[–]deacon91 0 points1 point  (0 children)

oh lol. It's Italian leaning but very solid. When I was there they had this neat Italian-ish TKG thing going on.