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
| Matthew Good Band - Rico | |
| Intro/Verse | |
| E5 B5 C#5 G#5 F#5 | |
| e|--0--0------0-------0------------| | |
| B|---------------------------------| | |
| G|-9--8---8-6-----6-5---9/11/9-----| | |
| D|---------------------------------| | |
| A|---------------------------------| |
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
| Mary Janes Last Dance | |
| Verse: Am7 G D Am7 | |
| Chorus: Em A (G) | |
| Twist And Shout | |
| Verse: D G A | |
| Bridge (aah): A | |
| What I Got | |
| D G |
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
| New Orleans is Sinking | |
| Verse (12 bar blues form) | |
| Em | |
| G|----------------| | |
| D|----------------| | |
| A|----------------| | |
| E|-0-0-0--3-3-5-3-| | |
| Am |
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
| Back to Black | |
| Dm7 Gm7 Bb A | |
| G|-------------------------------------------------------------------------------| | |
| D|-------------------------------------------------------------------------------| | |
| A|-5-5-5-5-5-5--5-3--------------------0-1--1-1-1-1-1---1-1-0--0-0-0-0-0---0-3-4-| | |
| E|-------------------5-3--3-3-3-3-3--3-------------------1-----------------------| |
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
| What's My Age Again | |
| Verse | |
| B F# C# D# | |
| G|-----------------------------------| | |
| D|-----------------------------------| | |
| A|-2-2-2-2---------4-4-4-4--6-6-6-6--| | |
| E|---------2-2-2-2-------------------| | |
| Pre Chorus |
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
| Teenage Dirtbag | |
| Verse | |
| E Bsus4 E Asus2 | |
| G|----------------------------------------| | |
| D|----------------------------------------| | |
| A|----------------------------------------| | |
| E|-0-0-----0-7-7-----7-0-0-----0-5-5--5-7-| | |
| Pre Chorus |
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
| Piano Man | |
| Tag | |
| C F C F C/E D | |
| G|-------5-----|---------------| | |
| D|-------------|-------3--2--0-| | |
| A|-3-----------|-3-------------| | |
| E|-------------|---------------| | |
| Verse |
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
| .withCapabilities(Capabilities.chrome().set("mobileEmulation", { | |
| deviceMetrics: { | |
| width: 320, | |
| height: 568, | |
| pixelRatio: 2, | |
| } | |
| })) |
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
| FROM node:12 | |
| # Setting working directory. All the path will be relative to WORKDIR | |
| WORKDIR /usr/src/app | |
| # Installing dependencies | |
| # We re-run npm install here since the build environment could be different from the runtime env | |
| COPY package*.json ./ | |
| RUN npm install |
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
| WITH points(point) as | |
| (VALUES | |
| (st_makepoint(-79.27436958, 43.78822902)), | |
| (st_makepoint(-79.27384777, 43.78834572)), | |
| (st_makepoint(-79.2741961, 43.78826694)), | |
| (st_makepoint(-79.27402261, 43.78830584)), | |
| (st_makepoint(-79.27471885, 43.78837437)), | |
| (st_makepoint(-79.36940737, 43.78104482)), | |
| (st_makepoint(-79.36920626, 43.7810446)), | |
| (st_makepoint(-79.36960369, 43.78104273)), |
NewerOlder