例文を組み込んだAlfred Workflowを作りました: Alfred Git Commit Message Example
以下転載:
| FROM debian:jessie | |
| ENV USER=boatswain USER_ID=1000 USER_GID=1000 | |
| # now creating user | |
| RUN groupadd --gid "${USER_GID}" "${USER}" && \ | |
| useradd \ | |
| --uid ${USER_ID} \ | |
| --gid ${USER_GID} \ | |
| --create-home \ |
以下転載:
| #include <stdio.h> | |
| #include <Wire.h> | |
| #include <ESP8266WiFi.h> | |
| #include <BME280.h> | |
| #include <Adafruit_GFX.h> | |
| #include <Adafruit_SSD1306.h> | |
| // WiFi configuration | |
| const char* ssid = "WIFI_SSID"; | |
| const char* password = "WIFIT_PASSWORD"; |