文章分类 -  1. web 开发

上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页
摘要:1. 官方文档 https://docs.taosdata.com/intro/ 2. Docker部署 拉取镜像 # 拉取最新版 docker pull tdengine/tdengine:latest # 指定版本 docker pull tdengine/tdengine:3.0.1.4 运行 阅读全文
posted @ 2023-08-14 10:03 河图s 阅读(128) 评论(0) 推荐(0)
摘要:reamm.com reamt.com reamk.com reamv.com istuan.com qujichang.com fangkuaiwu.com thistuan.com feamap.com isream.com reamat.com ream--大量 at reamsat.com 阅读全文
posted @ 2023-08-09 16:41 河图s 阅读(23) 评论(0) 推荐(0)
摘要:# 什么是DDOS攻击 **DDOS:`Distributed Denial of Service`,指的是分布式拒绝服务攻击** ```shell 1. 当多台机器一起攻击一个目标,通过大量互联网流量淹没目标或其周围基础设施,从而破坏目标服务器、服务或网络的正常流量时,就会发生分布式拒绝服务(DD 阅读全文
posted @ 2023-08-08 15:15 河图s 阅读(15) 评论(0) 推荐(0)
摘要:# VPS环境 甲骨文ARM最高配置4核4G,这个配置安装桌面端无任何压力,还相当于多了一个远程电脑 # 准备工作 1. 甲骨文ARM,推荐2核以上 2. 建议系统使用ubuntu20.04 3. 推荐先重装ubuntu20.04的系统,下面是脚本: ```shell bash <(wget --n 阅读全文
posted @ 2023-08-04 14:42 河图s 阅读(647) 评论(0) 推荐(0)
摘要:# 1.用超大的带宽硬抗 # 2.流量监控,封IP ## 下载流量监控软件 ```shell apt update apt install iftop iftop # 启动命令 ``` ![](https://img2023.cnblogs.com/blog/1729992/202308/17299 阅读全文
posted @ 2023-08-04 14:06 河图s 阅读(33) 评论(0) 推荐(0)
摘要:1. 总体步骤 1. 搜索镜像 docker search 镜像名 2. 拉取镜像 docker pull 镜像名:版本标签 3. 查看镜像 docker images 4. 创建并启动容器 docker run 镜像名/镜像ID -d -p 主机端口:容器端口 --privileged=true 阅读全文
posted @ 2023-07-31 15:14 河图s 阅读(84) 评论(0) 推荐(0)
摘要:# 参考博客 https://blog.csdn.net/leftfist/article/details/112283784 # 浏览器解决方案 ## 低于91版本 ``` 1. Chrome中访问地址chrome://flags/ 2. 搜索samesite 将same-site-by-defa 阅读全文
posted @ 2023-07-28 16:02 河图s 阅读(376) 评论(0) 推荐(0)
摘要:inner join 代替 where in select * from variable_frequency_drive_collection where id in ( select max(id) from variable_frequency_drive_collection where d 阅读全文
posted @ 2023-07-21 15:52 河图s 阅读(5) 评论(0) 推荐(0)
摘要:1. 实现流程 实现类为PasswordGenerator,有三个静态字段ALPHA、NUMBER、SPECIAL分别表示待选的字母,数字以及特殊字符,这里偷懒没有放大写字母,有兴趣的朋友可以把它加上。有两个属性password_length,password分别表示密码长度和最终生成的密码。有一个 阅读全文
posted @ 2023-07-03 10:02 河图s 阅读(83) 评论(0) 推荐(0)
摘要:# 目录结构 ![image-20230629210309609](C:\Users\99283\AppData\Roaming\Typora\typora-user-images\image-20230629210309609.png) ```python pages # 用来存放所有小程序的ht 阅读全文
posted @ 2023-06-29 21:52 河图s 阅读(35) 评论(0) 推荐(0)
摘要:1. 基础配置 1.1 本地时区 settings.py LANGUAGE_CODE = 'zh-hans' TIME_ZONE = 'Asia/Shanghai' USE_I18N = True USE_L10N = True USE_TZ = False 1.2 静态目录 settings.py 阅读全文
posted @ 2023-06-29 16:01 河图s 阅读(28) 评论(0) 推荐(0)
摘要:1. 提前生成,随取随用 先生成100个连续的订单编号,缓存在redis中(程序内存中),随用随取。 2. hash加密生成 这个函数通过生成UUID唯一ID,然后将其作为字符串使用hashlib库中的sha256算法生成摘要(digest),最后提取出8位摘要中的纯数字部分作为最终ID。由于UUI 阅读全文
posted @ 2023-06-25 17:00 河图s 阅读(72) 评论(0) 推荐(0)
摘要:1. 银行卡号码 bank_dict = {"CDB": "国家开发银行", "ICBC": "中国工商银行", "ABC": "中国农业银行", "BOC": "中国银行", "CCB": "中国建设银行", "PSBC": "中国邮政储蓄银行", "COMM": "交通银行", "CMB": & 阅读全文
posted @ 2023-06-13 21:19 河图s 阅读(41) 评论(0) 推荐(0)
摘要:# 证书管理控制台 https://console.cloud.tencent.com/ssl 阅读全文
posted @ 2023-06-08 15:51 河图s 阅读(33) 评论(0) 推荐(0)
摘要:# 新人特惠网址 https://cloud.tencent.com/act/pro/618season?fromSource=gwzcw.7381705.7381705.7381705&utm_medium=cpc&utm_id=gwzcw.7381705.7381705.7381705 # 购买 阅读全文
posted @ 2023-06-08 14:17 河图s 阅读(197) 评论(0) 推荐(0)
摘要:# github地址 https://github.com/ClassmateLin/dm-ticket 阅读全文
posted @ 2023-06-06 19:54 河图s 阅读(346) 评论(0) 推荐(0)
摘要:xxxx 阅读全文
posted @ 2023-06-02 15:43 河图s 阅读(28) 评论(0) 推荐(0)
摘要:xx 阅读全文
posted @ 2023-06-02 15:42 河图s 阅读(194) 评论(0) 推荐(0)
摘要:xx 阅读全文
posted @ 2023-06-02 15:40 河图s 阅读(10) 评论(0) 推荐(0)
摘要:xx 阅读全文
posted @ 2023-06-02 15:39 河图s 阅读(4) 评论(0) 推荐(0)

上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页