paequ2

joined 1 month ago
[–] paequ2 16 points 1 week ago

How many times do we have to teach you this lesson, old man!

[–] paequ2 7 points 1 week ago (1 children)

Check your ceiling and walls.

[–] paequ2 7 points 1 week ago

I've been using Vim for over 10 years. The first few years I used it badly. Later I took time to really learn it. Now I can use it fairly decently, but I still learn new things every now and then.

It feels like a really good investment. It's been around forever, it's gonna be around forever, it's installed on almost all computers, and you're going to be forced to use it at some point or another.

I really enjoy being able to go to any computer and starting up a familiar editor, without installing or configuring stuff. I also use a very vanilla Vim. If a coworker's laptop or some server has a different Vim config than mine, I can usually do vim -u NONE to get back to a familiar place.

[–] paequ2 12 points 1 week ago (8 children)

Grammy has been giving farmers baths

What's a farmer bath?

[–] paequ2 1 points 1 week ago

Because ... well ... wait, not a bad idea. Although, this would get rid of comments. Which in my case, I didn't have too many, so I could have manually added them back.

[–] paequ2 2 points 1 week ago
[–] paequ2 3 points 1 week ago (1 children)

if I choose to store them online/cloud encrypted / (edit: encrypt first then upload it) ... there’s always the potential for a very near future breaches or compromises

Does this matter? Say you upload your encrypted photo backup to Mega Upload (or whatever) and some unauthorized person gets a copy of your encrypted data. So? It's encrypted? They can't read or see the data?

Are you worried about state actors breaking the encryption?

[–] paequ2 2 points 1 week ago
[–] paequ2 6 points 1 week ago (3 children)

Kendrick calling Drake a pedophile

OH SHIT! That's right! I forgot! Kendrick was doing the half time show! 😂

Thank you for posting this! I gotta watch the half time show now!

[–] paequ2 15 points 1 week ago (1 children)

They can read what the AI suggests and see if it is correct or not.

What's this process look like? Or are there any rails that prevent the new employee from blinding trusting what the AI is suggesting?

[–] paequ2 21 points 1 week ago* (last edited 1 week ago) (5 children)

Yeah, I've definitely grown to like TOML, especially after spending hours trying to edit a giant (nested) YAML file...

I didn't realize the indentation in TOML was purely aesthetic.

This

[servers]
  [servers.alpha]
  ip = "10.0.0.1"
  dc = "eqdc10"

  [servers.beta]
  ip = "10.0.0.2"
  dc = "eqdc10"

equals this

[servers]
[servers.alpha]
ip = "10.0.0.1"
dc = "eqdc10"

[servers.beta]
ip = "10.0.0.2"
dc = "eqdc10"

which equals this

{
  "servers": {
    "alpha": {
      "ip": "10.0.0.1",
      "dc": "eqdc10"
    },
    "beta": {
      "ip": "10.0.0.2",
      "dc": "eqdc10"
    }
  }
}
view more: ‹ prev next ›