''' pip install pymupdf pip install pillow ''' import os import uuid import fitz from PIL import Image, ImageDraw, ImageFont import zipfile basedir = ...
分类:
其他好文 时间:
2021-07-27 17:38:27
阅读次数:
0
1.定义返回码枚举 1 public interface ResultCode { 2 public static Integer SUCCESS = 20000; 3 public static Integer ERROR = 20001; 4 } 2. 创建结果类 1 @Data 2 publi ...
分类:
其他好文 时间:
2021-07-27 17:30:58
阅读次数:
0
(1)你可以使用以下语句创建示例表: mysql> CREATE TABLE shop ( -> article INT(4) UNSIGNED ZEROFILL DEFAULT '0000' NOT NULL, -> dealer CHAR(20) DEFAULT '' NOT NULL, -> ...
分类:
数据库 时间:
2021-07-26 16:50:33
阅读次数:
0
参考官网: https://www.pythoncentral.io/sqlalchemy-orm-examples/ 员工部门两个表,中间为多对多关系,这种一般需要创建一个中间表。多对多转换成一对多 from sqlalchemy import Integer, Column, String, F ...
分类:
数据库 时间:
2021-07-26 16:48:08
阅读次数:
0
MySQL数据库设计规范(仅供参考) 目录 规范背景与目的 设计规范2.1 数据库设计2.1.1 库名2.1.2 表结构2.1.3 列数据类型优化2.1.4 索引设计2.1.5 分库分表、分区表2.1.6 字符集2.1.7 程序DAO层设计建议2.1.8 一个规范的建表语句示例2.2 SQL编写2. ...
分类:
数据库 时间:
2021-07-26 16:38:19
阅读次数:
0
进去od发现 push call 有壳 脱完 第一个打开有个弹窗 直接 bp MessageBoxA 下断点 找到关键地方下个断点重新运行分析 判断了当前文件夹是否有reg.dat 文件 接着看他们的窗体事件 应该又是几个失焦事件 来算密码把ok解开 定位看1第一个事件代码 这段代码是吧 输入值转成 ...
分类:
其他好文 时间:
2021-07-26 16:25:29
阅读次数:
0
git commit -m "hello world" Commit message 的格式 每次提交,Commit message 都包括三个部分:Header,Body 和 Footer。 <type>(<scope>): <subject> // 空一行 <body> // 空一行 <foot ...
分类:
其他好文 时间:
2021-07-21 17:32:24
阅读次数:
0
import com.logistics.channel.constant.BizException;import com.logistics.channel.tool.CommonErrorEnum;import com.logistics.channel.tool.ResultBody;impo ...
分类:
其他好文 时间:
2021-07-21 17:30:16
阅读次数:
0
之前写外挂做过指定进程的 Hook,但是没有尝试过全局 Hook,所以今天就来试试。全局 Hook 的用途我第一个就想到了键盘记录器(貌似我也就想到了这个 哈哈),那就写一个吧。 实现代码: #include <windows.h> #include<iostream> #include <stdi ...
分类:
编程语言 时间:
2021-07-16 17:43:16
阅读次数:
0
镜像制作还是比较顺利的,前提注意Dockerfile文件 FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim AS base WORKDIR /mvc COPY bin/Debug/netcoreapp3.1 . ENTRYPOINT ...
分类:
其他好文 时间:
2021-07-15 19:00:36
阅读次数:
0