View settings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"people": { | |
"host": "Lucie @li_hbr", | |
"guest": "Alex @trostcodes" | |
}, | |
"timer": { | |
"end": 1643652128711 | |
}, | |
"segments": [ | |
{ |
View SmartLink.Vue3.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Vue 3 Render Function: https://v3.vuejs.org/guide/render-function */ | |
// Import utilities from Vue | |
import { h, resolveComponent } from "vue"; | |
import getLinkTag, { ANCHOR_TAG, FRAMEWORK_LINK } from "./getLinkTag"; | |
const SmartLink = { | |
props: { | |
href: { | |
type: String, | |
default: "" |
View google.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body{ | |
cursor: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAYAAAA5ZDbSAAAWv0lEQVR4nO1dCXRV1bn+zrnJTW7mkYRMJCEjJAQyKIZZfE+hlbJURFscqsIT2woKaPv61qu0tdQ+p7bSIg6IoogtKFAUEEiZHUCCCBIIBJKQEJJAAhnuTe49/1v/vvtiCAkkEDCQ/a11hEtyzzl7f/v/9z9uoaCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoNDjoaCgoNB9oSluAFM3eIeuRhSA2QB+DMAOoBAAXV9D7LmIAPARE6pBY1KrANzb0yflesFZcrMys+i+n9xHZnczSQnO6umTc63jLLmpKam0dctWqjlVQz++98ck1fMKAL16+iRdqwgA8E8mMiU5hfI25JELhQcK6YacG5jgZgCvALD09Mm61sCEzWECmdyNeRuJDCJyyIuI1q1dR5ERkUyyDcCMnj5h1xKY3D8wcX3j+9K6T9c5GXWcexkOg16d9yr5ePswyZUAxvf0ibtWMAVAY1RkFK1auepcyW15GUTWRivNnDGTdF1nkr8CEN3TJ687wgvAAAAPA3iHpdHby5tef+11Mtoi1nGuqi4vK6fhw4YzwQaAX3mK2yl833AHkADg5wA+lSrWzuo2JzuHZj8zm+rr6tuX3lYkL3hzAbm7ubtU9QtSXafJxaNwFcHEDgGwAECJi9TsrGyaNXMWrflkDVWdqCJ7s/3ixLoug6iqsooefuhhYsmX7hMbXicArAfwDIDM683S7m7xWib2BgCTAdxu0k1Bffv2xdgxYzB27A8wcOBAhISGQNM1Jz2dDUBqQF1dHTZu3IitW7ciPz8f3377LcrLy2FrsvHdTgLYBWApgA+lpBtXaKw9CrzQUgC8BqCajaH0tHR6/v+ep0MHD5Hdbnfq2I6o4g5IsuterN4PFByg9xa9R/ffdz/1ielDJt3ERDdIotlKHygXn |
View buildIndices.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Import | |
*/ | |
require("dotenv").config(); | |
const algoliasearch = require("algoliasearch"); | |
const cheerio = require("cheerio"); | |
/** | |
* Check for environmnent variables | |
*/ |