Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

buzzphrase

atomantic328ISC3.2.1

Get a Buzzword Phrase. Because sometimes you need enhanced didactic mobility, liberating syndicated transitional projections

argot, balderdash, buzzwords, buzz, buzzphrase, cant, corporate, doublespeak, english, fuzzword, gibberish, jargon, language, lingo, mediaspeak, neologisms, newspeak, parlance, phrases, phraseology, policyspeak, prattle, slang, speech, synergy, twaddle, vernacular, words, wordsmithing

readme

buzzphrase

Get a Buzzword Phrase

Since I like to synergize backward overflow for upward mobility (thank you 30 Rock) as much as the next person, I figured this could make a fun if not at all useful node module. This is also a module I use for educational purposes and the occasional private git commit message:

# ¯\_(ツ)_/¯ don't do this to people you work with
git commit -m "$(npx buzzphrase 2)"

As of 2.0.0, this module splits up the word groups into verb + adjective + noun and allows combining multiple phrases with a continuation phrase. It also now has logic to make each word mostly unique in the overall phrase. See below when called with 15 joined phrases.

Usage

Command Line

You can run buzzphrase directly from the command line. Specify the number of joining iterations (default 1) and a format (default '{a} {v} {N}').

npx buzzphrase {iterations} {format}
# or
npx buzzphrase {format}
# e.g.
npx buzzphrase '{a} {v} {N}'
# or
npx buzzphrase 2 '{a} {v} {N}'

Examples

Default usage:

npx buzzphrase
# same as: npx buzzphrase 1 '{a} {v} {N}'

synthesized transitional alignments

Custom format:

npx buzzphrase 1 '{v} {a} {n}'

lobotomized bleeding-edge community

Test a new word with random counterparts:

npx buzzphrase 1 '{v} {a} consumption'

repurposed organizational consumption

Multiple joined phrases:

npx buzzphrase 2

intermediated 24/7 convergence, leveraging distributed anti-fragile paradigm-shifts

npx buzzphrase 3

enhanced incremental initiatives independent of reinvigorated extensible channels, which revolutionizes mesh didactic partnerships

npx buzzphrase 15

concealed compatible paradigm-shifts, in contrast to emitted unique convergence, in preparation for serialized innovative abstractions, which revolutionizes e-enabled acoustic singularity, anticipating filtered didactic policies, independent of printed-out best-of-breed hardware, liberating leveraged reciprocal management, enhanced by branded digital pooling on behalf of virtualized zero-downtime #DevOps, which foreshadows upheld extravehicular normalization for facilitated polymorphic markets, which will enable printed multilayered communities, protecting against scanned organizational clusters, forging offloaded 24/7 virtualization, pioneering clicked asynchronous partnerships

** Other Interesting Formats **

npx buzzphrase '{a} {v} {n}'

unique routed projection

sustainable filed touchpoint

quantum initialized programming

npx buzzphrase '{V} {a} {n} {f}'

incentivizing B2B value-add as code

popping-up frictionless partnership at scale

evolving third-generation projection for people

npx buzzphrase '{i} {v} {a} {N}'

deliver merged immersive channels

syndicate engineered all-purpose interfaces

grow architected adversarial mobility

npx buzzphrase '{i} the {n} to {d} {V} the {j}'

incentivize the platform to strategically streamline the low-hanging fruit

npx buzzphrase '{V} {a} {N} is how we {d} {j}'

leveraging scalable methodologies is how we dynamically circle back

npx buzzphrase 'Our {j} is to {d} {i} {a} {N}'

Our paradigm shift is to holistically deploy cutting-edge infrastructures

npx buzzphrase 'To achieve {j}, we must {d} {i} our {a} {N}'

To achieve a win-win situation, we must completely deploy our best-of-breed solutions.

npx buzzphrase "It's not about {j}, it's about {V} {a} {N}"

It's not about the elephant in the room, it's about empowering proactive methodologies.

npx buzzphrase 'Our {a} {n} is the key to unlocking the {j}'

Our collaborative alignment is the key to unlocking the voice of the customer.

npx buzzphrase 'We need to be {d} {a} in our {N}'

We need to be uniquely collaborative in our partnerships.

npx buzzphrase '{d} {V} our {N}'

Conveniently streamlining our deliverables.

npx buzzphrase '{d} {v}'

Globally synergized.

The "Ultimate Synergy" Format

npx buzzphrase "It's not about {j}, it's about {d} {V} our {a} {N}, {c} we must {i} the {n} to {d} {V} the {j}, {c} which enables a more {a} and {a} {n}, {c} ensuring our {N} are {d} {v}, all while we {i} our {j} {f}."

It's not about the long pole in the tent, it's about completely architecting our B2B infrastructures, in preparation for us to streamline the network to competently incentivize our core competency, which enables a more human-centric and frictionless paradigm, ensuring our deliverables are uniquely re-purposed, all while we synergize our heavy lifting for the win.

As a Module

You can also use buzzphrase as a module in your JavaScript projects:

import buzzphrase from "buzzphrase";
// OR
// const buzzphrase = require("buzzphrase");

// Get a phrase as a building block
console.log("we are building " + buzzphrase.get());
// -> we are building marshalled retroactive applications

// Custom phrase
console.log(
    buzzphrase.get({
        format: "{i} {a} {n} {f}",
    })
);
// -> embrace digital #DevOps for dummies

// Log a joined series of 2 phrases to the console
buzzphrase.log({ iterations: 2 });
// -> initialized cognitive paradigm-shifts, in preparation for iterated ubiquitous architectures

API

  • get(config): Get a phrase, with config options
    • default config:
      {
      format: '{a} {v} {N}',
      iterations: 1
      }
    • format: This is a string template that will replace the following with random words
      • {a} adjective
      • {c} continuation
      • {d} adverb
      • {f} final (e.g. "for dummies")
      • {i} imperative verb
      • {j} jargon
      • {N} plural noun
      • {n} singular noun
      • {v} past-tense verb (e.g. initialized)
      • {V} present participle verb (e.g. clustering)
    • iterations: specify how many times the format should be joined together with continuations ('{c}'). For example, specifying get({iterations: 2}) will conjoin the default format into {a} {v} {N} {c} {a} {v} {N}
  • getImperative(iterations)

    • DEPRECATED: instead use
    buzzphrase.get({
        format: "{i} {a} {v} {N}",
        iterations: iterations,
    });
  • getPhrase(iterations)

    • DEPRECATED: instead use
    buzzphrase.get({
        iterations: iterations,
    });
  • buzz(iterations)

    • DEPRECATED: instead use
      buzzphrase.log({
      iterations: iterations,
      });
  • log(config): same as get(config) but also uses console.log to spit this out into STDOUT

Testing

npm test

Testing all supported node.js versions

  1. install docker | Docker for Mac | Docker for Windows
  2. run tests
npm run nodeversions

Author

Adam Eivy is a Principal Software Engineer at a large media company by day and a drawing dad by night. Find him here on the interwebs

follow

Related

If you like this module, check out antic or BuzzphraseBot for lulz!

changelog

3.1.3

  • linear/collinear/multivariate orthogonality

3.1.2

  • grown -> homegrown

3.1.1

  • Thanks to the Polkadot whitepaper: validate applied heterogenous multi-chain incentivisation accessible with buzzphrase 1 '{i} {v} {a} {a} {n}'

3.1.0

  • split cli (bin) and module (main) into two entrypoints so webpack loaders don't have to write a custom loader or use a shebang loader module :)

3.0.3

  • harmonize cross-pillar, human-centric, end-of-life, mission-critical strategies
  • enact decentralized scalable continuous-improvement

3.0.2

  • amplify greenfield storytelling

3.0.0

  • moving to node 14 as baseline
  • coherent high-CPM lean-in

2.5.5

  • no more module dependencies (lodash.sample, lodash.merge)

2.5.1

  • non-linear regressive

2.5.0

  • present participle verbs with "{V}"
    • e.g. node . 1 '{V} {a} {N}' => omitting deep convolutional mobility

2.4.1

  • adaptive differentiated matrix as a service
  • configurable algorithms
  • ergonomic analytics
  • heuristic blockchain
  • hyperlocal empowerment
  • immersive parallelism
  • intuitive realigned collaboration
  • modular groupware
  • seamless artificial intelligence
  • tangible alliance
  • variable superstructures

2.4.1

  • just cleaning up docs

2.4.0

  • added new get(config) API
  • added format option, defaults to '{a} {v} {N}'
  • added final endings to make book title type phrases (deep convolutional stochastic pooling for dummies)
  • increased randomness to prevent duplicates in up to 25 joined phrases (using default format)
  • added distinction between plural nouns {N} and singular nouns {n}
  • deprecating getImperative in favor of using get({format:'{i} {a} {v} {N}'})
  • deprecating getPhrase in favor of using get({format:'{a} {v} {N}'})`
  • deprecating buzz in favor of log

2.3.1 - 2.3.4

  • remove some verbs that aren't working well
  • added more words:
    • unsupervised deep convolutional networking
    • supervised deconvolutional networks
    • incentivized acoustic layers
    • iterated residual normalization
    • recontextualized adversarial pooling
    • revolutionized stochastic singularity
  • adding experimental finally
    • iterated residual normalization "as code"

2.3.0

  • added getImperative method

2.2.4

  • remove erroneous npm-shrinkwrap.json

2.2.3

  • spellcheck

2.2.2

  • freezed->frozen

2.2.1

  • fixed some words (codeed->coded, backed up->backed-up, start up->start-up)

2.2.0

  • merged verbs from @earthbound19/master

2.1.11

  • cohesive megathreaded hyperconvergence

2.1.10

  • on-demand containerized clusters, allowing unique hyper-converged availability

2.1.9

  • fix support for stdlib

2.1.8

  • update mocha dep

2.1.7

  • update mocha dep

2.1.6

  • right-sized extravehicular team-players

2.1.5

2.1.4

  • npm shrinkwrap with deps
  • prefer node 4.4.7 in .nvmrc

2.1.3

  • enterprise native #DevOps, pioneering connected policy-driven cloud

2.1.2

  • switch to using const
  • add support for node >= 0.10.41