Skip to content

Instantly share code, notes, and snippets.

View joshmobley's full-sized avatar

Josh Mobley joshmobley

View GitHub Profile
@joshmobley
joshmobley / cookie-alert.js
Created May 7, 2019 15:50
Simple cookie banner logic
@joshmobley
joshmobley / DNS Checklist
Created March 1, 2017 19:29
Checklist for migrating DNS to a new host
- [ ] Prepare hosting to receive traffic from domain name
- [ ] Add all variations of domains (www, no-www, etc.)
- [ ] Set up SSL cert
- [ ] Redirect all variations to one primary domain (https?)
- [ ] Create DNS record for old site on sub-domain (e.g. oldsite.domain.com)
- [ ] Ensure MX records are pointing to appropriate destination
- [ ] Ensure any subdomains are accounted for post-migration
- [ ] Update DNS record for domain to point to new host
@joshmobley
joshmobley / grid-list.scss
Last active March 21, 2016 20:12
Flexbox Styled Grid List
.grid-list{
display: flex;
width: 100%;
&:nth-child(even){
flex-direction: row-reverse;
}
.h4{
background: $color-p1;