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

  • Synapse@lemmy.world
    link
    fedilink
    arrow-up
    6
    ·
    5 hours ago

    I think we should pass a law than mandates any product marketed as “Pro” or “Professional” shall include minimum 15 years of service, 15 years of spare parts and releases with repair guides and schematics.

  • Admiral Patrick@dubvee.org
    link
    fedilink
    English
    arrow-up
    22
    arrow-down
    1
    ·
    edit-2
    19 hours ago

    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