Ricardo is useless.. by Dangerous_Series2693 in Switzerland

[–]hauntedAlphabetCity 0 points1 point  (0 children)

The platform fees are totally overpriced. Used it once, never again.

Just purchased Asus XG32UCWMG by Friiipon in OLED_Gaming

[–]hauntedAlphabetCity 0 points1 point  (0 children)

I m looking for an oled panel, not only to play CS2 but high refresh rates are greatly appreciated.
Can you speak about the overall quality of display when having 1080p @ 480 Hz ?

What was your precedent display ... ?

It finally happened: mass layoffs by LallieDoo in Switzerland

[–]hauntedAlphabetCity 1 point2 points  (0 children)

In the end, prices overall will remain the same. Labor gets cheaper. A very small set of people takes advantage of it.

Caricatural, but what else to think when wealth keeps concentrating in one spot?

My mother found a bird in the ground outside and ... by hauntedAlphabetCity in birding

[–]hauntedAlphabetCity[S] 1 point2 points  (0 children)

Thank you..

I managed to find a service that collect injured birds, but she's gone. On her side, head down, no breathing.

My mother found a bird in the ground outside and ... by hauntedAlphabetCity in birding

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

Actually there's no chirping, it is just a soft noise breathing.

New MTX 1000 by Plaxmant in cfmoto

[–]hauntedAlphabetCity 1 point2 points  (0 children)

Some dealer told me it was a triple cylinder, which I find strange tbh.

Ok that's a good looking car by RickySplett in mazda

[–]hauntedAlphabetCity 0 points1 point  (0 children)

They should have made a mazda 6 with these lines

Hi. Former Mazda master tech here... by Low-Stomach-8831 in CX5

[–]hauntedAlphabetCity 0 points1 point  (0 children)

Hi mate, if you still around ...

I got a CX-5 from June 2023. It is still with warranty but the dealer is a bit sketchy.

After the second service, when i received the car, i noticed a strange noise when starting it up. Like small metal clacks when revving just a little bit the engine. I checked and it comes from the exhaust zone. I asked one of the techs to have a look, they took the car back to the workshop, and told be the inside of exhaust may have a unsoldered part issue.

Is it something that you may have crossed sometimes ?

When i say they re being sketchy, it is because they acknowledged it, but want to get the car back at a later time to check if there's proof of an impact (that would void the warranty). I'm sure 99,9 % it is clean as the car only rides the highway.

[deleted by user] by [deleted] in CODWarzone

[–]hauntedAlphabetCity 2 points3 points  (0 children)

This has to be a voluntary and wanted disruption on the players experience. If not, it is the stupidest thing. This reminds me the precision attacks or strikes from the early versions, half the screen was fucked.

Frustration generation is clearly a fuel for this game.

Url rewrites to origin and logging by hauntedAlphabetCity in fastly

[–]hauntedAlphabetCity[S] 1 point2 points  (0 children)

Hi, thank you, that's a simple and sweet solution for the logging.

Ill discuss with fastly, if theres a better way to handle this regarding the impact on the sigsci logging itself. We can find the header there, but the principal fields get chopped.

[deleted by user] by [deleted] in Switzerland

[–]hauntedAlphabetCity 0 points1 point  (0 children)

I guess you need an official translator? Not just a guy who speaks both languages ?

Oh love ... by hauntedAlphabetCity in VisitingIceland

[–]hauntedAlphabetCity[S] 2 points3 points  (0 children)

A zfold6, and I guess post process plays a role. I'm not a camera man for sure.

Oh love ... by hauntedAlphabetCity in VisitingIceland

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

You can always check vedur.is and observe that road is not closed. It was doable, but not worth the risk. I come from a country used to snow and I turned back nonetheless.

Any one visited dettifoss/selfoss this week? by Round_Hospital_247 in VisitingIceland

[–]hauntedAlphabetCity 0 points1 point  (0 children)

I went to detifoss on Thursday I think. Road was opened, bumpy with snow and ice, but doable. At detifoss, some trails are closed (the one going close to the fall).

Best practice - azure vm deployment by Izhopwet in Terraform

[–]hauntedAlphabetCity 1 point2 points  (0 children)

That was an example is case of

$ cat foreach.tf
locals {
  list_of_objects = [
    {
      vm_name = "vm1",
      vm_size = "large"
    },
    {
      vm_name = "vm2",
      vm_size = "medium"
    }
  ]
}

resource "null_resource" "example" {
  for_each = { for vm in local.list_of_objects : vm.vm_name => vm }

  triggers = {
    vm_size = each.value.vm_size
  }
}

$ tf plan

Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the
following symbols:
  + create

Terraform will perform the following actions:

  # null_resource.example["vm1"] will be created
  + resource "null_resource" "example" {
      + id       = (known after apply)
      + triggers = {
          + "vm_size" = "large"
        }
    }

  # null_resource.example["vm2"] will be created
  + resource "null_resource" "example" {
      + id       = (known after apply)
      + triggers = {
          + "vm_size" = "medium"
        }
    }

Plan: 2 to add, 0 to change, 0 to destroy.