그들의 피고, 황금시대를 목숨을 것이다.1
얼마나 그들에게 대한 군영과 것이다.2
[@11ty/eleventy-upgrade-help] --- | |
[@11ty/eleventy-upgrade-help] This plugin will help you migrate from 1.0 to 2.0. | |
[@11ty/eleventy-upgrade-help] If you are migrating from 0.x, downgrade to the 1.0 version of this plugin! | |
[@11ty/eleventy-upgrade-help] --- | |
[@11ty/eleventy-upgrade-help] PASSED This project is not using the previously deprecated and disabled by default `dataTemplateEngine` configuration property. Read more at https://www.11ty.dev/docs/data-preprocessing/ | |
[@11ty/eleventy-upgrade-help] PASSED This project is not using the `--passthroughall` command line flag. Read more at https://www.11ty.dev/docs/copy/#passthrough-everything | |
[@11ty/eleventy-upgrade-help] NOTICE The `liquidjs` dependency was updated from 9.x to 10.x. This should not require action, but you can read the full release notes: https://github.com/harttle/liquidjs/releases/tag/v10.0.0 | |
[@11ty/eleventy-upgrade-help] NOTICE Markdown’s indented code blocks have been disabled by default in 2.0. Unfortunately, this plugin does *NOT* currently t |
# Moved to https://github.com/hyunbinseo/blog/blob/master/posts/setup-ssh.md | |
### Preparation ############################################################### | |
# macOS bundled OpenSSH does not support FIDO. | |
# https://developer.apple.com/forums/thread/698683 | |
# https://github.com/apple-oss-distributions/OpenSSH/pull/1 | |
brew install openssh |
# Moved to https://github.com/hyunbinseo/blog/blob/master/posts/setup-linux.md | |
### Remote Desktop ############################################################ | |
sudo apt install xfce4 xrdp | |
sudo systemctl enable xrdp | |
# Applications / Settings / Screensaver | |
# [ ] Enable Screensaver | |
# [ ] Lock Screen with Screensavera |
const { generateSgSendBody } = require('sendgrid-send'); | |
generateSgSendBody; |
import { generateSgSendRequest } from 'sendgrid-send'; | |
import { defineConfig } from 'vite'; | |
// Vite Conditional Config | |
// Reference https://vitejs.dev/config/#conditional-config | |
export default defineConfig(({ command }) => ({ | |
plugins: [ | |
{ | |
name: 'Build End Notification', | |
buildEnd: async (error) => { |
import { webcrypto as crypto } from 'node:crypto'; // Node.js only | |
/* Generate */ | |
const key = await crypto.subtle.generateKey( | |
{ | |
name: 'AES-GCM', | |
length: 256 | |
}, | |
true, |
import { asc, eq, gte, lte } from 'drizzle-orm'; | |
import { drizzle } from 'drizzle-orm/mysql2'; | |
import { createPool } from 'mysql2'; | |
import * as schema from './schema'; | |
import { comments, users } from './schema'; | |
const connection = createPool({ | |
host: '...', | |
user: '...', | |
password: '...', |
// Create .env file and add secret values. | |
// Run with node --env-file=.env index.mjs | |
// Requires Node.js 20+ (LTS as of 2023-10-24) | |
const { | |
NHN_SMS_APP_KEY, | |
NHN_SMS_SECRET, | |
NHN_SMS_SEND_NO, | |
SEND_TO, | |
TWILIO_ACCOUNT_SID, |
<script> | |
$: if (browser && data) { | |
chart.ref?.updateSeries(data.series); | |
} | |
</script> | |
<p>Hello, World</p> |