Skip to content

Instantly share code, notes, and snippets.

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-----|
Metric - Dead Disco Tab
Intro (played on a keyboard)
E|----11~---------8~-------------------|
B|----------9~-------------------------|
G|---------------------8~--------------|
D|-------------------------------------|
A|-------------------------------------|
E|-------------------------------------|
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;
-- 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'),
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|-----------------|-----------------|----------------|---------------|
@MarkyC
MarkyC / watching-over.tab
Created September 7, 2018 20:49
Greta van Fleet Watching Over tab
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):
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 {
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;
}
}
@MarkyC
MarkyC / nobody-guitar-harmony.tab
Created June 7, 2018 20:06
Guitar harmony section for Nobody by the Sheepdogs
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:
e|-----------------------------------------------------------
B|-----------------------------------------------------------
G|-----------------------------------------------------------
D|------------5---4------------------------------------------
A|-----4-5-7----7---7----------------------------------------
E|-5-5-------------------------------------------------------