编程笔记

  • clock moved backwards. Refusing to generate id for XX milliseconds.

    clock moved backwards. Refusing to generate id for XX milliseconds. 生成原因是:系统时间倒退造成的,而mybatis默认的id生成算法是雪花算法 ,生成id就会抛异常(应该是手动修改系统时间了) 解决办法:1、检…

    编程笔记 2022年6月14日
  • 【干货】Chrome插件(扩展)开发全攻略

    我花了将近一个多月的时间断断续续写下这篇博文,并精心写下完整demo,写博客的辛苦大家懂的,所以转载务必保留出处。本文所有涉及到的大部分代码均在这个demo里面:https://github.com/liuxianan/chrome-plugin-de…

    编程笔记 2022年6月14日
  • Linux(2)

    虚拟机关键配置名词解释 远程链接工具 linux准则 远程链接工具快捷键 系统相关命令 文件相关命令 linux目录结构   虚拟机关键配置名词解释 # 虚拟网络编辑器说明 桥接模式  # 可以访问互联网   配置的地址信息和物…

    智能运维 2022年6月14日
  • Linux网络抓包工具tcpdump

    目录 一、tcpdump介绍 二、安装&用法说明 1)安装 2)用法说明 三、tcpdump示例 一、tcpdump介绍 tcpdump 是一个Linux的网络抓包工具。它允许用户拦截和显示发送或收到过网络连接到该计算机的TCP/IP和其他数据…

    智能运维 2022年6月14日
  • Linux文件分类

    目录 Linux一切皆文件 Linux五种文件 普通文件 目录文件 设备文件 管道文件 链接文件 Linux一切皆文件 Linux对数据文件,程序文件,设备文件,网络文件等的管理都抽象为文件,用统一的方式进行管理。 但是,Linux操…

    智能运维 2022年6月14日
  • linux_8

     1、通过loganalyzer展示数据库中的日志 ​关闭防火墙                       systemctl disable --now firewalld ​系统版本                           CentOS 7.9 ​数据库版本                       MariaDB 10.5…

    智能运维 2022年6月14日
  • 使用STARTTLS从Python发送电子邮件

    Sending email from Python using STARTTLS 我想通过使用Python的smtplib发送带有Python脚本的电子邮件。 如果可以建立到服务器的加密连接,则脚本仅应发送电子邮件。要加密到端口587的连接,我想使用STARTTLS。 使…

    编程笔记 2022年6月14日
  • smtplib — SMTP protocol client

    The smtplib module defines an SMTP client session object that can be used to send mail to any internet machine with an SMTP or ESMTP listener daemon. For details of SMTP and ESMTP operation, consult …

    编程笔记 2022年6月14日
  • The python smtplib module sends SSL and TLS secure mail instances

    smtplib of python provides a very convenient way to send E-mail. It simply encapsulates the smtp protocol. The basic commands of the smtp protocol include: HELO identifies the user to the serverMAIL …

    编程笔记 2022年6月14日
  • Python通过smtplib发送邮件(2020最新最全版)

    smtplib 邮件自动发送SMTP(Simple Mail Transfer Protocol)即简单邮件传输协议,它是一组用于由源地址到目的地址传送邮件的规则,由它来控制信件的中转方式。 python的smtplib提供了一种很方便的途径发送电子邮件…

    编程笔记 2022年6月14日