Skip to content

Instantly share code, notes, and snippets.

View frontalex's full-sized avatar
🚀
awesome

Alex Front frontalex

🚀
awesome
View GitHub Profile
@frontalex
frontalex / notion2blog.js
Created June 20, 2023 06:29 — forked from mayneyao/notion2blog.js
Notion.so > Personal Blog | custom domain + disqus comment
const MY_DOMAIN = "agodrich.com"
const START_PAGE = "https://www.notion.so/gatsby-starter-notion-2c5e3d685aa341088d4cd8daca52fcc2"
const DISQUS_SHORTNAME = "agodrich"
addEventListener('fetch', event => {
event.respondWith(fetchAndApply(event.request))
})
const corsHeaders = {
"Access-Control-Allow-Origin": "*",
@frontalex
frontalex / react-terminology.md
Last active August 29, 2015 14:25 — forked from sebmarkbage/react-terminology.md
React (Virtual) DOM Terminology
.
├── actions
├── stores
├── views
│   ├── Anonymous
│   │   ├── __tests__
│   │   ├── views
│   │   │   ├── Home
│   │   │   │   ├── __tests__
│   │   │   │   └── Handler.js