Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,43 @@ import (
"github.com/S1ro1/popcorn-cli/src/cmd"
)

func displayAsciiArt() {
art := `
_ __ _ ______ _
| | / / | | | ___ \ | |
| |/ / ___ _ __ _ __ ___ | | | |_/ / ___ _| |_
| \ / _ \ '__| '_ \ / _ \| | | ___ \ / _ \| | __|
| |\ \ __/ | | | | | __/| | | |_/ /| (_) | | |_
\_| \_/\___|_| |_| |_|\___|_/ \____/ \___/|_|\__|
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is going to seem like trolling, but I really think this should be

\_| \_/\___|_|  |_| |_|\___|\_/ \____/  \___/|_|\__|

It looks to me like the bottom of the B is shifted left by one character.

Also, this kind of reads like "KernelBoit". Is there an extra i before the t?


POPCORN CLI - GPU MODE

┌───────────────────────────────────────┐
│ ┌─────┐ ┌─────┐ ┌─────┐ │
│ │ooOoo│ │ooOoo│ │ooOoo│ │▒
│ │oOOOo│ │oOOOo│ │oOOOo│ │▒
│ │ooOoo│ │ooOoo│ │ooOoo│ ┌────────┐ │▒
│ └─────┘ └─────┘ └─────┘ │████████│ │▒
│ │████████│ │▒
│ ┌────────────────────────┐ │████████│ │▒
│ │ │ │████████│ │▒
│ │ POPCORN GPU COMPUTE │ └────────┘ │▒
│ │ │ │▒
│ └────────────────────────┘ │▒
│ │▒
└───────────────────────────────────────┘▒
▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
`
fmt.Println(art)
}

func main() {

if os.Getenv("POPCORN_API_URL") == "" {
fmt.Println("POPCORN_API_URL is not set. Please set it to the URL of the Popcorn API.")
os.Exit(1)
}
displayAsciiArt()
cmd.Execute()
}
Loading