Song Title - Artist - Tuning - Singer
permalink https://github.com/gatsbyjs/gatsby/blob/ffd8b2d691c995c760fe380769852bcdb26a2278/packages/gatsby/src/bootstrap/index.js
- open and validate gatsby-config (get-config-file.js) 1.5 load themes (swyx added this note July 2019)
- load plugins (load-plugins/index.js) from the list given in
gatsby-config.js
- onPreBootstrap: runs
onPreBootstrap
if it is implemented in any plugins, for example gatsby-plugin-typography. Receives handy [apiCallArgs](https://github.com/gatsbyjs/gatsby/blob/ffd8b2d691c9
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
$magick = 'C:\Program Files\ImageMagick-7.0.3-Q16\magick.exe' | |
# Create the folder to store Next Gen images | |
$currentPath = Get-Location | |
New-Item -ItemType Directory -Force -Path "$($currentPath)\Images\JP2Files\" | |
New-Item -ItemType Directory -Force -Path "$($currentPath)\Images\WebPFiles\" | |
New-Item -ItemType Directory -Force -Path "$($currentPath)\Images\JXRFiles\" | |
New-Item -ItemType Directory -Force -Path "$($currentPath)\Images\JPXFiles\" | |
#jp2 |
- Plush - Paul sings - first song choice
- Cumbersome - Fidel helps sing chorus/ harmonize with Paul on Second chorus/ maybe on 2nd part "too black or too white"
- If you could only see - Paul
- Interstate Love song - Paul
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
var dwightSalary = (function() { | |
var salary = 60000; | |
function changeBy(amount) { | |
salary += amount; | |
} | |
return { | |
raise: function() { | |
changeBy(5000); | |
}, | |
lower: function() { |
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
function dwightJob(title) { | |
return function(prefix) { | |
return prefix + ' ' + title; | |
}; | |
} | |
var sales = dwightJob('Salesman'); | |
var manager = dwightJob('Manager'); | |
alert(sales('Top')); // Top Salesman |
- Big Me
- Plush
- Interstate Love Song
- My Own Worst Enemy - need to practice harmony for ending outro.
- My Hero - Break on Bridge and wait for 2 count on drumsticks to begin again.
- Summer of '69 - Fidel sings this song.
- Santa Monica - Focus on 2 chorus vocal at the end and then watch for cue from drums on how to end the song.
- Possum Kingdom - Repeat "Do you wanna die?" line -> Chorus -> End in E on guitars
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
// useSearch file | |
import React, { useEffect } from "react"; | |
import axios from "axios"; | |
import { useImmerReducer } from "./useImmerState"; | |
import { baseSelectedItems } from "../constants"; | |
export function useSearch(selectedItems) { | |
function reducer(draft, action) { | |
switch (action.type) { |
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
// Remove Duplicates from an array | |
const removeDuplicates = | |
arr => arr.filter((item, index) => index === arr.indexOf(item)); | |
const removeDuplicates1 = array => [...new Set(array)]; | |
const removeDuplicates2 = array => Array.from(new Set(array)); | |
// Flattens an array(doesn't flatten deeply). |
NewerOlder