$ nc -C localhost 1025220 a2baad3a9a5a Mailpit ESMTP Service readyEHLO mikoto2000.example.com250-a2baad3a9a5a greets mikoto2000.example.com250-SIZE 52428800250-ENHANCEDSTATUSCODES250-8BITMIME250 SMTPUTF8MAIL FROM: <mikoto2000@mikoto2000.example.com>250 2.1.0 OkRCPT TO: <mikoto2000@mikoto2000.example.com>250 2.1.5 OkDATA354 Start mail input;end with <CR><LF>.<CR><LF>Subject: THIS IS A TEST MAILThis is a test mail..250 2.0.0 Ok: queued as 6LRwlqUzQIvOiY33VSVRu3QUIT221 2.0.0 a2baad3a9a5a Mailpit ESMTP Service closing transmission channel
node ➜ /workspaces/TIL/Rspress/firststep (rspress-firststep)$ npm create rspress@latestNeed to install the following packages:create-rspress@1.47.0Ok to proceed?(y)y> npx> create-rspress◆ Create Rspress Project│◇ Project name or path│ rspress-firststep-project│◇ Select additional tools (Use<space> to select, <enter> to continue)│ Add Biome for code linting and formatting, Add ESLint for code linting, Add Prettier for code formatting│◇ Next steps ───────────────────╮│ ││ cd rspress-firststep-project ││ npm install ││ npm run dev ││ │├────────────────────────────────╯│└ Done.npm noticenpm notice New major version of npm available! 10.9.2 -> 11.7.0npm notice Changelog: https://github.com/npm/cli/releases/tag/v11.7.0npm notice To update run: npm install -g npm@11.7.0npm noticenode ➜ /workspaces/TIL/Rspress/firststep (rspress-firststep)$ cd rspress-firststep-project/
diff --git a/tmk_core/common/command.h b/tmk_core/common/command.hindex d9d89ba0f1..f44b3f7bc3 100644--- a/tmk_core/common/command.h+++ b/tmk_core/common/command.h@@ -16,7+16,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.*/#ifndef COMMAND_H-#define COMMAND+#define COMMAND_H/* FIXME: Add doxygen comments for the behavioral defines in here. */
rules.mk の編集
diff --git a/rules.mk b/rules.mkindex 084b5db..3fb420c 100644--- a/rules.mk+++ b/rules.mk@@ -30,7 +30,7 @@ endef# you can edit follows 7 Variables# jp: 以下の7つの変数を必要に応じて編集します。HELIX_ROWS= 5 # Helix Rows is 4 or 5-OLED_ENABLE= yes # OLED_ENABLE+OLED_ENABLE= no # OLED_ENABLELOCAL_GLCDFONT= no # use each keymaps "helixfont.h" insted of "common/glcdfont.c"LED_BACK_ENABLE= no # LED backlight (Enable WS2812 RGB underlight.)LED_UNDERGLOW_ENABLE= no # LED underglow (Enable WS2812 RGB underlight.)
mikoto@kubernetes:~$ sudo docker run -it--rm hello-worldHello from Docker!This message shows that your installation appears to be working correctly.To generate this message, Docker took the following steps:1. The Docker client contacted the Docker daemon.2. The Docker daemon pulled the "hello-world" image from the Docker Hub.(amd64)3. The Docker daemon created a new container from that image which runs theexecutable that produces the output you are currently reading.4. The Docker daemon streamed that output to the Docker client, which sent itto your terminal.To try something more ambitious, you can run an Ubuntu container with:$ docker run -it ubuntu bashShare images, automate workflows, and more with a free Docker ID:https://hub.docker.com/For more examples and ideas, visit:https://docs.docker.com/get-started/
-- テーブル作成createtable instruments (id bigint primarykeygenerated always as identity, name text notnull);-- テストデータ挿入insertinto instruments (name)values ('violin'), ('viola'), ('cello');-- row level security 有効化altertable instruments enablerowlevel security;
RLS ポリシーの作成
テーブル内のデータを、アノニマスユーザーが読み取り可能に設定。
create policy "public can read instruments"onpublic.instrumentsforselectto anonusing (true);
anon: アノニマスユーザー
Vite プロジェクトの作成
プロジェクト作成
node ➜ /workspaces/TIL/supabase (supabase-firststep)$ npm create vite@latest firststepNeed to install the following packages:create-vite@7.0.3Ok to proceed?(y)y> npx> create-vite firststep│◇ Select a framework:│ Vanilla│◇ Select a variant:│ TypeScript│◇ Scaffolding project in /workspaces/TIL/supabase/firststep...│└ Done. Now run:cd firststepnpm installnpm run dev
vscode ➜ .../TIL/js/nuxtjs/firststep (master)$ npx nuxi@latest init firststepNeed to install the following packages:nuxi@3.20.0Ok to proceed?(y)y✔ Which package manager would you like to use?npm◐ Installing dependencies...npm warn deprecated inflight@1.0.6: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.npm warn deprecated glob@7.2.3: Glob versions prior to v9 are no longer supported> postinstall> nuxt prepare✔ Types generated in .nuxtadded 671 packages, and audited 673 packages in 1m130 packages are looking for fundingrun`npm fund` for detailsfound 0 vulnerabilities✔ Installation completed.✔ Initialize git repository?No✨ Nuxt project has been created with the v3 template. Next steps:› cd firststep› Start development server with npm run devnpm noticenpm notice New major version of npm available! 10.9.2 -> 11.0.0npm notice Changelog: https://github.com/npm/cli/releases/tag/v11.0.0npm notice To update run: npm install -g npm@11.0.0npm notice