$ lsblk$ sudo mkfs -t xfs /dev/nvme1n1| { | |
| "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", |
| <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" |
| 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); |
| <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 }; | |
| } | |
| }) |
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
I hereby claim:
To claim this, I am signing this object:
| [ | |
| { "seq": 1, "name_first": "Christopher", "name_last": "Rivera", "age": 58, "street": "Rahop Park", "city": "Ozuaruavi", "state": "GA", "zip": 69322, "dollar": "$4192.07", "pick": "WHITE", "date": "07/23/2032", "seq_1": 1, "name_first_1": "Clarence", "name_last_1": "Webb", "age_1": 56, "street_1": "Vorbo Extension", "city_1": "Ahiireni", "state_1": "UT", "zip_1": 61595, "dollar_1": "$4936.89", "pick_1": "WHITE", "date_1": "05/20/1938" }, | |
| { "seq": 2, "name_first": "Ray", "name_last": "Barker", "age": 34, "street": "Peuk View", "city": "Kaebpi", "state": "OR", "zip": 13622, "dollar": "$1073.74", "pick": "YELLOW", "date": "08/26/2042", "seq_1": 2, "name_first_1": "Agnes", "name_last_1": "Cox", "age_1": 42, "street_1": "Ejehe Plaza", "city_1": "Batizku", "state_1": "NE", "zip_1": 5831, "dollar_1": "$7897.86", "pick_1": "RED", "date_1": "11/24/2047" }, | |
| { "seq": 3, "name_first": "Derek", "name_last": "Weber", "age": |