I hereby claim:
- I am vinayakkulkarni on github.
- I am vinayak (https://keybase.io/vinayak) on keybase.
- I have a public key ASCxgMkTIndvwScAt_z3yUKxx2JAbkCpJoWNOx2ft4W_Ogo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
These are the steps I went through to set up an SSL cert. Purchase the cert
Prior to purchasing a cert, you need to generate a private key, and a CSR file (Certificate Signing Request). You’ll be asked for the content of the CSR file when ordering the certificate:
openssl req -new -newkey rsa:2048 -nodes -keyout example_com.key -out example_com.csr
<script lang="ts"> | |
import { useProfile } from '@/hooks/profile'; | |
import { useContext } from '@nuxtjs/composition-api'; | |
export default defineComponent({ | |
setup() { | |
const { $axios } = useContext(); | |
const { getUser, profile } = useProfile($axios); | |
return { profile }; | |
} | |
}) |
import { csvParse } from 'd3-dsv'; | |
import { Feature, FeatureCollection, Point } from 'geojson'; | |
function snooze(ms: number): Promise<void> { | |
return new Promise((resolve) => setTimeout(resolve, ms)); | |
} | |
addEventListener('message', async (event: MessageEvent) => { | |
const { payload, sleep } = event.data.message; | |
await snooze(sleep); |
<template lang="pug"> | |
.vm-gallery | |
div( | |
:style="{ transitionDuration: transitionDuration, transform: translate3DPosition }" | |
ref="galleryItems" | |
).vm-gallery-items | |
div(v-for="imageItem in imageNodes").vm-gallery-item | |
img( | |
:src="imageItem.src" | |
:key="imageItem.src" |
{ | |
"editor.accessibilitySupport": "off", | |
"editor.tabSize": 2, | |
"editor.fontSize": 15, | |
"terminal.integrated.fontFamily": "Dank Mono, Monaco, 'Courier New', monospace", | |
"editor.fontFamily": "Dank Mono, Monaco, 'Courier New', monospace", | |
"editor.lineHeight": 26, | |
"editor.fontLigatures": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", |
{ | |
"editor.accessibilitySupport": "off", | |
"editor.tabSize": 2, | |
"editor.fontSize": 15, | |
"terminal.integrated.fontFamily": "Dank Mono, Monaco, 'Courier New', monospace", | |
"editor.fontFamily": "Dank Mono, Monaco, 'Courier New', monospace", | |
"editor.lineHeight": 26, | |
"editor.fontLigatures": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", |