this post was submitted on 07 Jan 2025
47 points (100.0% liked)

Sysadmin

8451 readers
27 users here now

A community dedicated to the profession of IT Systems Administration

No generic Lemmy issue posts please! Posts about Lemmy belong in one of these communities:
[email protected]
[email protected]
[email protected]
[email protected]

founded 2 years ago
MODERATORS
 

Here it is:

  • Dell Base
  • Dell Plus
  • Dell Premium
  • Dell Pro Base
  • Dell Pro Plus
  • Dell Pro Premium
  • Dell Pro Max Base
  • Dell Pro Max Plus
  • Dell Pro Max Premium

What a time to be alive

you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 25 points 2 months ago* (last edited 2 months ago) (1 children)

It's like their entire product line can be named with a script seeded with random buzzwords:

function generateProductName() {
  const baseName = 'Dell'
  const buzzwords = ['Base', 'Plus', 'Premium', 'Pro', 'Max']
  let modelName = ''

  for (let i = 0; i < 1+ Math.ceil(Math.random() * buzzwords.length); i++) {
    modelName +=  ` ${buzzwords[Math.floor(Math.random() * buzzwords.length)]}`
  }
  return baseName + modelName
}

for (let i=0; i<6; i++) {
    console.log(generateProductName())
}

Dell Premium Pro Plus Pro Max
Dell Base
Dell Max Plus
Dell Pro Pro Pro
Dell Plus
Dell Base Plus
[โ€“] [email protected] 5 points 2 months ago* (last edited 2 months ago)