CentOS_7-6_安装Oracle_12c

下载地址:

http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html

https://www.oracle.com/technetwork/database/enterprise-edition/downloads/oracle12c-linux-12201-3608234.html

Terwer...大约 4 分钟Oracle数据库下载地址oraclecentoslinuxoracle12c整个过程可能
开始上手

安装

思源笔记发布工具的安装步骤如下
从 Edge 商店下载插件或者在思源笔记集市下载挂件并添加到页面。
思源笔记发布工具 - Microsoft Edge Addons

快速配置

浏览器插件方式使用 推荐


Terwer...大约 4 分钟sy-post-publisher作品展示地址如果思源使用部署上手入门
Charles代理支持localhost

Charles代理支持localhost

使用下面的地址代替localhost

localhost.charlesproxy.com


Terwer...小于 1 分钟经验分享代理支持使用下面地址
node发送邮件

代码

Mail.mjs

import nodemailer from "nodemailer";

export default async function sendMail(to, title, msg) {
    // 创建transporter
    const transporter = nodemailer.createTransport({
        host: "smtp.qq.com", // 邮箱的smtp地址
        auth: {
            user: "tangyouwei@qq.com", // 邮箱的smtp地址
            pass: process.env.QQMAIL_SMTP_TOKEN // 邮箱授权码
        }
    });

    // 配置邮件信息
    const mailInfo = {
        from: "tangyouwei@qq.com",
        to: to,
        subject: title, // Subject line
        text: "仓库容量邮件通知", // plain text body
        html: msg, // html body
    };

    // 发送邮件
    const ret = await transporter.sendMail(mailInfo);
    console.log("send mail finish to " + to);
    return ret;
}

Terwer...大约 1 分钟前端开发邮箱地址邮件nodemail