Skip to content

Instantly share code, notes, and snippets.

View robinmetral's full-sized avatar
🚂
Traveling, I may be slow to reply

Robin Métral robinmetral

🚂
Traveling, I may be slow to reply
View GitHub Profile
@robinmetral
robinmetral / gatsby-aws.md
Last active April 28, 2019 21:21
Deploying Gatsby to AWS

Deploying Gatsby to AWS

Deploy a Gatsby v2 website hosted on GitHub with Amazon Web Services.

AWS services used:

  • CodePipeline
  • CodeBuild
  • IAM
  • S3
  • CloudFront
@robinmetral
robinmetral / twemoji.graphql
Created April 21, 2019 12:47
Query Twemoji with GitHub GraphQL API V4
{
repository(owner: "twitter", name: "twemoji") {
... on Repository {
object(expression: "gh-pages:2/svg/1f310.svg") {
... on Blob {
text
}
}
}
}
@robinmetral
robinmetral / reset.css
Created April 8, 2019 10:44 — forked from Andy-set-studio/reset.css
Minimal CSS reset
/* Box sizing rules */
* {
box-sizing: border-box;
}
*:before,
*:after {
box-sizing: inherit;
}