I hereby claim:
- I am naereen on github.
- I am naereen (https://keybase.io/naereen) on keybase.
- I have a public key ASB0qooyut1iVIMM35DaR2wUiYQ-q4jMDNUPL_LGM_0DTwo
To claim this, I am signing this object:
| @import url('//fonts.googleapis.com/css?family=Tangerine'); | |
| /* The ribbons */ | |
| .corner-ribbon { | |
| font-family: "Tangerine",sans-serif; | |
| width: 400px; | |
| background: #e43; | |
| position: absolute; | |
| top: 50px; | |
| left: -100px; |
| def distance(s, t, cache=None): | |
| """Return minimum edit distance between s and t, where an edit | |
| is a character substitution, deletion, or addition. | |
| """ | |
| if not s: | |
| return len(t) | |
| if not t: | |
| return len(s) | |
| if cache is None: |
I hereby claim:
To claim this, I am signing this object:
| <body onload=z=c.getContext`2d`,setInterval(`c.width=W=150,Y<W&&P<Y&Y<P+E|9<p?z.fillText(S++${Y=`,9,9|z.fillRect(p`}*0,Y-=--M${Y+Y},P+E,9,W),P))):p=M=Y=S=6,p=p-6||(P=S%E,W)`,E=49) onclick=M=9><canvas id=c> |
| #!/usr/bin/env bash | |
| set -Eeuo pipefail | |
| trap cleanup SIGINT SIGTERM ERR EXIT | |
| script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P) | |
| usage() { | |
| cat <<EOF | |
| Usage: $(basename "${BASH_SOURCE[0]}") [-h] [-v] [-f] -p param_value arg1 [arg2...] |
Web-apps and Tips to Transform a .SVG to Shields; and some Examples of Shields with Custom Icons
| #!/usr/bin/env python3 | |
| ''' | |
| Filter to wrap Pandoc's CodeBlocks into minted blocks when using latex. | |
| Pandoc's `fence_code_attributes` can be used to provide: | |
| - the language (first class) | |
| - minted's argumentless options (following classes) | |
| - minted's options with arguments (attributes) | |
| ''' |
| # line 4370/10259 | |
| # DEBUG: @Naereen changed from this line, to that line | |
| # redo if grep $_, @toobig; | |
| redo if $_ && grep $_, @toobig; | |
| # https://github.com/squentin/gmusicbrowser/issues/253#issuecomment-2043706563 |