Skip to content

Instantly share code, notes, and snippets.

View brettdewoody's full-sized avatar

Brett DeWoody brettdewoody

View GitHub Profile
<!--- Provide a general summary of the issue in the Title above -->
## Detailed Description
<!--- Provide a detailed description of the change or addition you are proposing -->
## Context
<!--- Why is this change important to you? How would you use it? -->
<!--- How can it benefit other users? -->
## Possible Implementation
@brettdewoody
brettdewoody / .github--workflows--lint.yml
Created September 17, 2020 16:23
StandardJS Github Action
name: Lint
on: [push]
jobs:
StandardJS:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12.x
@brettdewoody
brettdewoody / Comment as Answer
Last active March 22, 2018 18:48
Stackoverflow Comments
This does not provide an answer to the question. Once you have sufficient [reputation](https://stackoverflow.com/help/whats-reputation) you will be able to [comment on any post](https://stackoverflow.com/help/privileges/comment); instead, [provide answers that don't require clarification from the asker](https://meta.stackexchange.com/questions/214173/why-do-i-need-50-reputation-to-comment-what-can-i-do-instead).
@brettdewoody
brettdewoody / comment.txt
Created November 13, 2017 21:46
Stackoverflow MCVE Comment
Please provide a [minimal, complete and verifiable example](https://stackoverflow.com/help/mcve) and the SO community will likely give several answers.
@brettdewoody
brettdewoody / ghost
Created July 10, 2017 21:30
Nginx configuration for Ghost with l
upstream ghost_upstream {
server 127.0.0.1:2368;
keepalive 64;
}
proxy_cache_path /var/run/cache levels=1:2 keys_zone=STATIC:75m inactive=24h max_size=512m;
server {
listen 80;
server_name www.brettdewoody.com brettdewoody.com;