Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sub-zero ascii font #3463

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
12 changes: 6 additions & 6 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
"github.com/ava-labs/avalanchego/utils/ulimit"
)

const Header = ` _____ .__ .__
/ _ \___ _______ | | _____ ____ ____ | |__ ____ ,_ o
/ /_\ \ \/ /\__ \ | | \__ \ / \_/ ___\| | \_/ __ \ / //\,
/ | \ / / __ \| |__/ __ \| | \ \___| Y \ ___/ \>> |
\____|__ /\_/ (____ /____(____ /___| /\___ >___| /\___ > \\
\/ \/ \/ \/ \/ \/ \/`
const Header = `
Copy link
Contributor

Choose a reason for hiding this comment

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

The skier must stay - for significant UX reasons.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

dnlgtm

_______ ______ ______
___ |__ _______ ___ /_____ ________________ /______ ,_ o
__ /| |_ | / / __ `/_ /_ __ `/_ __ \ ___/_ __ \ _ \ / //\,

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / Upgrade

syntax error: unexpected __ after top level declaration

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / e2e_pre_etna

syntax error: unexpected __ after top level declaration

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / Build Antithesis avalanchego images

syntax error: unexpected __ after top level declaration

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / e2e_post_etna

syntax error: unexpected __ after top level declaration

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / e2e_existing_network

syntax error: unexpected __ after top level declaration

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / Build Antithesis xsvm images

syntax error: unexpected __ after top level declaration

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / Lint

syntax error: unexpected __ after top level declaration (typecheck)

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / Lint

expected ';', found __ (typecheck)

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / Lint

syntax error: unexpected __ after top level declaration) (typecheck)

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / Lint

syntax error: unexpected __ after top level declaration (typecheck)

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / Lint

expected ';', found __ (typecheck)

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / Lint

syntax error: unexpected __ after top level declaration (typecheck)

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / Lint

expected ';', found __ (typecheck)

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / Lint

syntax error: unexpected __ after top level declaration) (typecheck)

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit (ubuntu-24.04)

syntax error: unexpected __ after top level declaration

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit (ubuntu-20.04)

syntax error: unexpected __ after top level declaration

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit (macos-14)

syntax error: unexpected __ after top level declaration

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit (ubuntu-22.04)

syntax error: unexpected __ after top level declaration

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit (windows-2022)

syntax error: unexpected __ after top level declaration

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit (custom-arm64-jammy)

syntax error: unexpected __ after top level declaration

Check failure on line 26 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit (custom-arm64-noble)

syntax error: unexpected __ after top level declaration
_ ___ |_ |/ // /_/ /_ / / /_/ /_ / / / /__ _ / / / __/ \>> |
/_/ |_|____/ \__,_/ /_/ \__,_/ /_/ /_/\___/ /_/ /_/\___/ \\`

var _ App = (*app)(nil)

Expand Down
Loading