Skip to content

Instantly share code, notes, and snippets.

@jasonrahm
Created February 3, 2022 19:10
Show Gist options
  • Save jasonrahm/7819f5256575c517dd582fdb6c093ce4 to your computer and use it in GitHub Desktop.
Save jasonrahm/7819f5256575c517dd582fdb6c093ce4 to your computer and use it in GitHub Desktop.
Alternative titles for those who can't stand being called "Fearless Leader"
import random
wl_fearless = ['assured', 'aweless', 'bodacious', 'bold', 'cheeky', 'cocky', 'confident', 'cool hand', 'courageous',
'daring', 'dashing', 'dauntless', 'doughty', 'gallant', 'game', 'gritty', 'gutsy', 'heroic', 'intrepid',
'icy', 'indomitable', 'lionhearted', 'nervy', 'plucky', 'salty', 'sanguine', 'sassy', 'smart', 'spunky',
'sure', 'temerarious', 'unabashed', 'undaunted', 'unflinching', 'valiant', 'valorous']
wl_leader = ['chief', 'commander', 'director', 'head', 'manager', 'officer', 'ruler', 'President', 'boss', 'captain',
'chieftain', 'conductor', 'controller', 'counsellor', 'dean', 'dignitary', 'doyen', 'eminence', 'exec',
'forerunner', 'general', 'governor', 'guide', 'harbinger', 'herald', 'lead', 'lion', 'luminary',
'notable', 'pacesetter', 'pilot', 'pioneer', 'precursor', 'principal', 'rector', 'ringleader', 'shepard',
'skipper', 'superintendent', 'superior']
print(f"Today's fearless leader alternative is: {random.choice(wl_fearless)} {random.choice(wl_leader)}!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment