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
| Fleetwood Mac - Dreams Vocal Harmonies | |
| inspiration/sources: | |
| * https://www.youtube.com/watch?v=1FNu8JnCDiE | |
| * https://www.youtube.com/watch?v=t0lEdY2XniE | |
| * https://musescore.com/user/12635401/scores/5028267 | |
| ======================== | |
| Pre Chorus (main vocals) | |
| ======================== |
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
| Her - Shuggie tab | |
| ============ | |
| Intro/Chorus | |
| ============ | |
| E|------------|-----------|-6--------1-----| | |
| B|-10---------|-6----8----|-6--------2-----| | |
| G|-10---------|-6----8----|-6--------1-----| | |
| D|-10---------|-6----8----|-6---(or)-3-----| |
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
| Metric - Dead Disco Tab | |
| Intro (played on a keyboard) | |
| E|----11~---------8~-------------------| | |
| B|----------9~-------------------------| | |
| G|---------------------8~--------------| | |
| D|-------------------------------------| | |
| A|-------------------------------------| | |
| E|-------------------------------------| |
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
| SELECT ST_CONTAINS(foo.area, st_makepoint(0.5, 0.5)) | |
| FROM ( | |
| SELECT st_makepolygon(ST_GeomFromText('LINESTRING(0 0,0 1,1 1,1 0,0 0)')) as area) As foo; |
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
| -- http://sqlfiddle.com/#!17/9ba87/5 | |
| CREATE TABLE order_event( | |
| id int, | |
| order_id text, | |
| event_name text, | |
| created timestamp default CURRENT_TIMESTAMP | |
| ); | |
| INSERT INTO order_event(id, order_id, event_name) VALUES | |
| (1, 123, 'event 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
| I'm giving full triads here, but I'm pretty sure they just play them as power chords | |
| Intro | |
| e|-8---8---8---8---|-8---8---8---8---|-8---8---8--8---|-8---8---8-----| | |
| B|---8---8---8---8-|---6---6---6---6-|---5---5---5--5-|---------------| | |
| G|-----------------|-----------------|----------------|---7---7---5-5-| | |
| D|-----------------|-----------------|----------------|---------------| | |
| A|-----------------|-----------------|----------------|---------------| | |
| E|-----------------|-----------------|----------------|---------------| |
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
| Artist: Greta van Fleet | |
| Song: Watching Over | |
| Key: Am (Dorian Mode - A B C D E F# G) | |
| verse: | |
| Am C D | |
| on the D he plays around with Dsus2 and Dsus4 | |
| pre chorus (played as octaves): |
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
| package com.bell.arc.rerateorchestrator.service; | |
| import com.bell.arc.rerateorchestrator.model.dto.request.RerateUsageRequestWrapper; | |
| import com.bell.arc.rerateorchestrator.model.dto.request.StateHistory; | |
| import org.slf4j.Logger; | |
| import org.slf4j.LoggerFactory; | |
| public class StateMachine { | |
| static RerateUsageRequestWrapper wrapper = new RerateUsageRequestWrapper(); | |
| static { |
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
| public static <T> T nullSafe(Supplier<T> supplier, T fallback) { | |
| try { | |
| T result = supplier.get(); | |
| return result != null | |
| ? result | |
| : fallback; | |
| } catch (NullPointerException npe) { | |
| return fallback; | |
| } | |
| } |
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
| Ewan: | |
| A E | |
| e|--10-9--------9-10-12-10-9--(x2)|--5-4------4-5-7-5-4---(x2) | |
| B|-------10-----------------------|------5-------------------- | |
| G|----------9~--------------------|--------4~----------------- | |
| D|--------------------------------|--------------------------- | |
| A|--------------------------------|--------------------------- | |
| E|--------------------------------|--------------------------- | |
| Jimmy: |