this post was submitted on 07 Jan 2025
40 points (95.5% liked)

Sysadmin

7813 readers
24 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:
!lemmy@lemmy.ml
!lemmyworld@lemmy.world
!lemmy_support@lemmy.ml
!support@lemmy.world

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
[โ€“] ptz@dubvee.org 22 points 1 day ago* (last edited 1 day 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
[โ€“] oleorun@real.lemmy.fan 2 points 1 day ago* (last edited 1 day ago)