Skip to content

Instantly share code, notes, and snippets.

View NickFoden's full-sized avatar
🐯
I'm here live, i'm not a cat.

Nick Foden NickFoden

🐯
I'm here live, i'm not a cat.
View GitHub Profile
@NickFoden
NickFoden / database.rules.json
Created June 11, 2020 20:56 — forked from codediodeio/database.rules.json
Common Database Rules for Firebase
// No Security
{
"rules": {
".read": true,
".write": true
}
}
var voice;
for(v of window.speechSynthesis.getVoices()) {
if(v.name === 'Fred') {
voice = v;
break;
}
}
const utterance = new SpeechSynthesisUtterance('Fitter. Happier. More productive.');
utterance.voice = voice;
@NickFoden
NickFoden / PULL_REQUEST_TEMPLATE.md
Created March 27, 2020 17:10 — forked from alanbsmith/PULL_REQUEST_TEMPLATE.md
A template for helpful pull request documentation

Jira Ticket

Link to the Jira Ticket

Overview

Give a brief description of what this PR does.

Where Should the Reviewer Start?

e.g. /src/components/SomeComponent.js

Testing Manually