- PostgreSQL はオープンソースのリレーショナルデータベース。
- SQL に準拠し、高度な機能を備えている。
This file contains hidden or 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
| 1. OpenSSH サーバーのインストール | |
| 設定アプリから行う方法: | |
| 設定 → システム → オプション機能(Windows 10の場合は「アプリ」→「オプション機能」)を開く | |
| 「オプション機能を追加する」(または「機能を追加」)をクリック | |
| 一覧から 「OpenSSH サーバー」 を探してインストール | |
| PowerShell(管理者)から行う方法: | |
| powershellAdd-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0 | |
| 2. SSHサービスの起動と自動起動設定 |
| tag |
|---|
personal |
This file contains hidden or 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
| arb-dir: lib/l10n | |
| template-arb-file: app_en.arb | |
| # `synthetic-package: false` に設定することで、ローカライズコードが特定のディレクトリに生成され、 | |
| # 生成されたコードを使ってローカライズされた文字列にアクセスできるようになります。 | |
| synthetic-package: false | |
| output-dir: lib/localization/intl | |
| output-localization-file: app_localizations.dart |
This file contains hidden or 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 re | |
| import shutil | |
| import os | |
| import sys | |
| import yaml | |
| def ensure_directories(zenn_articles_dir, zenn_images_dir): | |
| """必要なディレクトリが存在するか確認し、なければ作成する。""" | |
| os.makedirs(zenn_articles_dir, exist_ok=True) | |
| os.makedirs(zenn_images_dir, exist_ok=True) |
This file contains hidden or 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
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "type": "node", | |
| "request": "attach", | |
| "name": "Attach to Functions", | |
| "port": 9229 | |
| } | |
| ] |
This file contains hidden or 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 * as admin from "firebase-admin" | |
| import * as functions from "firebase-functions" | |
| import * as logger from "firebase-functions/logger" | |
| import * as firestore from "@google-cloud/firestore" | |
| // This file: https://gist.github.com/1206yaya/06cb8603ffd831f78ef572df7474e008 | |
| // const SECRET_NAME = defineString('SECRET_NAME'); | |
| // https://firebase.google.com/docs/functions/typescript | |
| export const helloWorld = functions.https.onRequest((request, response) => { |
This file contains hidden or 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 'package:flutter/material.dart'; | |
| /// Container: デフォルトでは幅や高さを持たず、子要素の装飾ができる。 | |
| /// Column: childrenを垂直に配置。 | |
| /// Wrap: childrenにフィット。 | |
| /// Center: widthFactorを指定しなければ全体に広がる | |
| /// | |
| void main() { | |
| runApp(const MyApp()); | |
| } |
NewerOlder