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
#!/usr/bin/env python3 | |
from argparse import ArgumentParser | |
from collections import defaultdict | |
import requests | |
parser = ArgumentParser("release note generator") | |
parser.add_argument("--owner", default="espnet") | |
parser.add_argument("--repo", default="espnet") |
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
let s:startify_ascii_header = [ | |
\ ' ββ ', | |
\ ' ββ ', | |
\ 'ββββ ββββ ββββββββ ββββββ βββ βββ ββ ββββββββββ', | |
\ 'ββββ βββ ββββββββ ββββββββ βββ βββ ββ ββββββββββ', | |
\ 'ββ ββ ββββββββ βββ βββ ββββββ ββ ββ ββ ββ', | |
\ 'ββ ββ ββββββββ ββββββββ ββββββ ββ ββ ββ ββ', | |
\ 'ββ ββ ββββββ ββββ ββ ββ ββ ββ ββ', | |
\ '', | |
\] |