Skip to content

Instantly share code, notes, and snippets.

View ekafyi's full-sized avatar

Eka ekafyi

View GitHub Profile
@ekafyi
ekafyi / machine.js
Last active July 21, 2020 17:10
Generated by XState Viz: https://xstate.js.org/viz
const handWashMachine1 = Machine({
id: 'handwash',
initial: 'unwashed',
states: {
unwashed: {
on: {
START_WASH: 'washing'
}
},
washing: {

How I made the basic (blog) example site with Gatsby Theme Web Monetization

In this site, I combine gatsby-theme-web-monetization with Gatsby’s official blog and note themes. I use the official Gatsby starter, plugins, and component shadowing from this tutorial. Then I continue with the steps below.

  1. Install the theme.
yarn add gatsby-theme-web-monetization
# or npm install --save gatsby-theme-web-monetization
@ekafyi
ekafyi / gtwm-example-portfolio-site.md
Last active June 12, 2020 19:18
How I made the example portfolio site for Gatsby Theme Web Monetization

How I made the example portfolio site with Gatsby Theme Web Monetization

In this site, I combine gatsby-theme-web-monetization with the excellent Emilia Theme by LekoArts using its starter site. Then I continue with the steps below.

  1. Install the theme.
yarn add gatsby-theme-web-monetization
# or npm install --save gatsby-theme-web-monetization