Please respond to the following format based on the commit content.
In English, following the Conventional Commits specification.
<intention> <message>
- intention: An emoji from the list.
- message: A brief explanation of the change.
#!/bin/bash | |
set -eu | |
# FGN-R2 | |
# https://www.fg-products.com/downloads/fgn-r2_manual.pdf | |
# ------------------------------- | |
# Router settings | |
# ------------------------------- |
Please respond to the following format based on the commit content.
In English, following the Conventional Commits specification.
<intention> <message>
import dotenv | |
import os | |
import openai | |
import gradio as gr | |
dotenv.load_dotenv() | |
openai.api_key = os.getenv("OPENAI_API_KEY") | |
model = "gpt-3.5-turbo" | |
# model = "gpt-4-turbo" |
OPENAI_API_KEY="dummy" |
pdf text copy
װ༿਀Ν
search
https://www.google.co.jp/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=%D7%B0%E0%BC%BF%E0%A8%A4%CD%94&*
FROM ruby:2-alpine | |
MAINTAINER tuki0918 <[email protected]> | |
RUN apk update | |
RUN apk add --update gcc make g++ openssh \ | |
git \ | |
&& rm -rf /var/cache/apk/* | |
ENV dir /root/capistrano | |
WORKDIR ${dir} |
``` | |
sudo update-locale LC_CTYPE=en_US.UTF-8 | |
sudo apt-get install sendmail | |
php -r "mail('***[email protected]', 'test', date('Y-m-d H:i:s') . ' γ‘γΌγ«ιδΏ‘γγΉγ');" | |
'address' => env('MAIL_FROM_ADDRESS', null), | |
'name' => env('MAIL_FROM_NAME', null) |
FROM stilliard/pure-ftpd:hardened | |
ENV FTPUSER ftpuser | |
ENV FTPPASS ftppass | |
RUN printf "${FTPPASS}\n${FTPPASS}\n" | pure-pw useradd $FTPUSER -u ftpuser -d /home/ftpusers/$FTPUSER | |
RUN pure-pw mkdb |