A Pen by William Whitaker on CodePen.
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | const baseUrl = "https://litipsum.com/"; | |
| const apiUrl = baseUrl.concat("api"); | |
| const books = ["evelina", "adventures-sherlock-holmes", "dr-jekyll-and-mr-hyde", "dracula", | |
| "life-of-samuel-johnson", "picture-of-dorian-gray", "pride-and-prejudice"]; | |
| const invalid = () => { | |
| // thanks JetBrains AI! | |
| let bookList = books.map((item, i) => { | |
| if (i !== books.length - 1) { | |
| return `"${item}", \n`; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <form action="/form/submit" method="get"> | |
| <label for="search" class="sr-only">Search</label> | |
| <div class="search-form"> | |
| <input type="search" id="search" placeholder="Search" aria-label="search"> | |
| <button> | |
| <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 18" preserveAspectRatio="xMidYMid meet"> | |
| <path d="M6.943 0a6.943 6.943 0 015.66 10.966l4.333 4.334-1.636 1.636-4.334-4.334A6.943 6.943 0 116.943 0zm0 2.314a4.629 4.629 0 100 9.257 4.629 4.629 0 000-9.257z" /> | |
| </svg> | |
| </button> | |
| </div> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |