Skip to content

Commit

Permalink
story - limit the size of the table
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirill456Z committed Dec 19, 2024
1 parent 50c0487 commit be5e9aa
Showing 1 changed file with 105 additions and 0 deletions.
105 changes: 105 additions & 0 deletions src/story/Question_1.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,111 @@
"|Other|Doesn't align with any of the proposed archetype categories|\"George McFly\" in \"Back to the Future\"|\"Victor\" in \"John Wick\"|\"Mayor\" in \"Ghostbusters\"|\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<div style=\"max-height: 400px; overflow-y: auto;\">\n",
" <table>\n",
" <thead>\n",
" <tr>\n",
" <th>Archetype</th>\n",
" <th>Description</th>\n",
" <th>Example 1</th>\n",
" <th>Example 2</th>\n",
" <th>Example 3</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <td>Love Interest / Romantic Partner</td>\n",
" <td>A character involved in a romantic relationship with a main figure, influencing emotional arcs and sometimes motivating heroic action.</td>\n",
" <td>\"Rose DeWitt Bukater\" in \"Titanic\"</td>\n",
" <td>\"Elizabeth Swann\" in \"Pirates of the Caribbean\"</td>\n",
" <td>\"Rachel Dawes\" in \"Batman Begins\"</td>\n",
" </tr>\n",
" <tr>\n",
" <td>Caregiver / Healer</td>\n",
" <td>Provides nurture, comfort, or medical/spiritual healing; supports others’ well-being and stability.</td>\n",
" <td>\"Dr. Ellen Ripley\" in \"Aliens\"</td>\n",
" <td>\"Samwise Gamgee\" in \"The Lord of the Rings\"</td>\n",
" <td>\"Molly Weasley\" in \"Harry Potter series\"</td>\n",
" </tr>\n",
" <tr>\n",
" <td>Mentor / Wise Guide</td>\n",
" <td>Provides knowledge, training, or insight to help the hero or others grow and succeed.</td>\n",
" <td>\"Ms. Honey\" in \"Matilda\"</td>\n",
" <td>\"Mr. Miyagi\" in \"The Karate Kid\"</td>\n",
" <td>\"Obi-Wan Kenobi\" in \"Star Wars: A New Hope\"</td>\n",
" </tr>\n",
" <tr>\n",
" <td>Intellectual / Creative (Scholar/Artist/Inventor)</td>\n",
" <td>Values knowledge, innovation, or art; provides crucial insights, cultural depth, problem-solving, or visionary ideas.</td>\n",
" <td>\"Steve Jobs\" in \"Steve Jobs\"</td>\n",
" <td>\"Leonardo da Vinci\" in \"The Da Vinci Code\"</td>\n",
" <td>\"Ada Lovelace\" in \"The Imitation Game\"</td>\n",
" </tr>\n",
" <tr>\n",
" <td>Ruler / Politician</td>\n",
" <td>Holds formal power or influence; shapes policies, alliances, and social orders, whether for good or ill.</td>\n",
" <td>\"President Franklin D. Roosevelt\" in \"Hyde Park on Hudson\"</td>\n",
" <td>\"Selina Meyer\" in \"Veep\"</td>\n",
" <td>\"Duncan Idaho\" in \"Dune\"</td>\n",
" </tr>\n",
" <tr>\n",
" <td>Sidekick / Loyal Companion</td>\n",
" <td>A supportive ally, assisting the hero, offering loyalty, encouragement, and sometimes comic or emotional relief.</td>\n",
" <td>\"Ron Weasley\" in \"Harry Potter and the Philosopher's Stone\"</td>\n",
" <td>\"Dr. John Watson\" in \"Sherlock Holmes: A Game of Shadows\"</td>\n",
" <td>\"Robin\" in \"Batman: The Movie\"</td>\n",
" </tr>\n",
" <tr>\n",
" <td>Warrior / Vigilante</td>\n",
" <td>Skilled in combat and physical confrontation; may enforce justice or defend others, sometimes outside legal boundaries.</td>\n",
" <td>\"Batman\" in \"The Dark Knight\"</td>\n",
" <td>\"John Wick\" in \"John Wick\"</td>\n",
" <td>\"The Bride\" in \"Kill Bill\"</td>\n",
" </tr>\n",
" <tr>\n",
" <td>Rogue / Trickster / Con Artist</td>\n",
" <td>A cunning, rule-bending manipulator who achieves goals through deception, charm, or clever schemes.</td>\n",
" <td>\"Frank Abagnale Jr.\" in \"Catch Me If You Can (2002)\"</td>\n",
" <td>\"Irving Rosenfeld\" in \"American Hustle (2013)\"</td>\n",
" <td>\"Lawrence Jamieson\" in \"Dirty Rotten Scoundrels (1988)\"</td>\n",
" </tr>\n",
" <tr>\n",
" <td>Mystic / Seer</td>\n",
" <td>Offers spiritual guidance, foresight, or mystical understanding, often steering characters with visions or cryptic wisdom.</td>\n",
" <td>\"The Oracle\" in \"The Matrix\"</td>\n",
" <td>\"Yoda\" in \"The Empire Strikes Back\"</td>\n",
" <td>\"Galadriel\" in \"The Lord of the Rings: The Fellowship of the Ring\"</td>\n",
" </tr>\n",
" <tr>\n",
" <td>Outsider / Loner</td>\n",
" <td>Operates on the fringe of society, often misunderstood or self-isolated, bringing a unique perspective.</td>\n",
" <td>\"Edward Scissorhands\" in \"Edward Scissorhands\"</td>\n",
" <td>\"Rick Deckard\" in \"Blade Runner\"</td>\n",
" <td>\"Chuck Noland\" in \"Cast Away\"</td>\n",
" </tr>\n",
" <tr>\n",
" <td>Innocent / Vulnerable</td>\n",
" <td>Naive, inexperienced, or in need of guidance; prompts protection or mentoring, and highlights moral stakes.</td>\n",
" <td>\"Daniel LaRusso\" in \"The Karate Kid\"</td>\n",
" <td>\"Charlie Bucket\" in \"Willy Wonka & the Chocolate Factory\"</td>\n",
" <td>\"Newt\" in \"Aliens\"</td>\n",
" </tr>\n",
" <tr>\n",
" <td>Other</td>\n",
" <td>Doesn't align with any of the proposed archetype categories</td>\n",
" <td>\"George McFly\" in \"Back to the Future\"</td>\n",
" <td>\"Victor\" in \"John Wick\"</td>\n",
" <td>\"Mayor\" in \"Ghostbusters\"</td>\n",
" </tr>\n",
" </tbody>\n",
" </table>\n",
"</div>"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down

0 comments on commit be5e9aa

Please sign in to comment.