thelastknowngod

joined 1 year ago
[–] thelastknowngod@lemm.ee -1 points 1 year ago
[–] thelastknowngod@lemm.ee 32 points 1 year ago

Enjoy it. A night out is now cheaper.

[–] thelastknowngod@lemm.ee 3 points 1 year ago

In Turkey, tobacco counts as a vegetable.

[–] thelastknowngod@lemm.ee 3 points 1 year ago* (last edited 1 year ago)

I have a function called up. I do up X where X is the number of directories I want to go up.

up() {
  if [[ $# -eq 0 ]]; then
    cd ..
    return 0
  fi
  local path i
  for (( i=0; i < $1; i++ )); do
    path+=../
  done
  cd "$path"
}

EDIT: Don't know if it's just me but if you see < it should be the less than character.

[–] thelastknowngod@lemm.ee 17 points 1 year ago (1 children)

Don't overthink this. Just start using something.

[–] thelastknowngod@lemm.ee 11 points 1 year ago

That guy and his entourage in Shibuya every year dressed as Xi Jinping.

https://youtu.be/TBchtibgPEo

[–] thelastknowngod@lemm.ee 2 points 1 year ago

My mom did this. When she told me about it I thought that it was a great idea. I'm planning on doing the same.

[–] thelastknowngod@lemm.ee 3 points 1 year ago

We had a service that compiles a dataset once per quarter. The total size is ~30gb. We were starting a container, storing it on an EFS volume, and mounting like any other disk.

Every time a pod started it would need to read this data into memory so we would get quick initial start-up time but the time to be ready for traffic still took a while.

Since we didn't need to update it very often, we decided to just package the compiled dataset into the container and skip the EFS volume. We updated the image pull policy to ifNotPresent so it cut egress traffic pricing from EFS to zero. Now there is a cost to pull the image from ECR but that's only if the pod is being scheduled onto a node it hasn't been run on before. There was no noticable change in behavior or performance and we saved a bunch on cost.

Sometimes the big, dumb option is the right choice.

[–] thelastknowngod@lemm.ee 1 points 1 year ago

Should get out of that habit.. Hopefully this is better.

https://pixelfed.social/p/thelastknowngod/624885702810365387

[–] thelastknowngod@lemm.ee 2 points 1 year ago (3 children)

NPRs top 100 scifi and fantasy books.

https://imgur.com/a/zHxdYSF

[–] thelastknowngod@lemm.ee 8 points 1 year ago

My partner is Turkish. She said that this is how America looks in her brain.

view more: ‹ prev next ›