摘要: 在线JS 混淆&加密 工具 https://ztf.net.cn/tools/jsformat.html 概念介绍 “混淆”也好,“加密”也好,都是为了加强代码的安全性,防范被人任意查看,在一定程度上保护资源。混淆:为了降低代码的可读性 加密:都是要通过“解密”计算过程将代码还原以后才能执行。 编码 阅读全文
posted @ 2022-05-25 19:59 逐梦客! 阅读(724) 评论(0) 推荐(0) 编辑
摘要: 在线工具 https://ztf.net.cn/tools/md5Encrypt.html Python import hashlib def computeMD5(message): m = hashlib.md5() m.update(message.encode(encoding='utf-8 阅读全文
posted @ 2022-05-25 18:03 逐梦客! 阅读(1393) 评论(0) 推荐(0) 编辑
摘要: 在线大小写转换 https://ztf.net.cn/tools/enCaseEncode.html Python print("Hello World!".upper()) print("Hello World!".lower()) JS "Hello World!".toUpperCase() 阅读全文
posted @ 2022-05-25 17:21 逐梦客! 阅读(692) 评论(0) 推荐(0) 编辑
摘要: Load Full Pointer (lds,les, lfs, lgs, and lss) mem[32|48] -> reg[16|32] Reads a full pointer from memory and stores it in the specified segment regist 阅读全文
posted @ 2019-04-02 12:49 逐梦客! 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 官网:https://docs.opencv.org/3.2.0/df/d9d/tutorial_py_colorspaces.html 改变颜色空间 本教程颜色空间转换:BGR ↔ Gray and BGR ↔ HSV. input_image:输入图像 flag:openCV标志位,决定颜色空间 阅读全文
posted @ 2018-12-29 15:36 逐梦客! 阅读(526) 评论(0) 推荐(0) 编辑
摘要: 图像的本质(图像可以用数组来表示) 图片格式转换(jpg->png) 使用numpy.array访问图像数据 图像的属性 shape:图像的宽度、高度和通道数 size:图像的大小=宽*高*通道数 dtype:图像像素值的数据类型 视频类型转换 阅读全文
posted @ 2018-12-27 19:38 逐梦客! 阅读(1270) 评论(0) 推荐(0) 编辑
摘要: W3school:SQL学习 推荐博客:https://www.cnblogs.com/whgk/p/6159336.html 阅读全文
posted @ 2018-12-10 15:39 逐梦客! 阅读(126) 评论(0) 推荐(0) 编辑
摘要: VMware的下载地址转自:https://blog.csdn.net/cheeseandcake/article/details/80888901 VMware激活码转自: https://blog.csdn.net/qq_41448891/article/details/82912373 htt 阅读全文
posted @ 2018-12-10 13:52 逐梦客! 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 解决E: Encountered a section with no Package: header错误 我的ubuntu机器上出现下面这个错误。 Reading package lists... Error! E: Encountered a section with no Package: he 阅读全文
posted @ 2018-12-08 10:54 逐梦客! 阅读(297) 评论(0) 推荐(0) 编辑
摘要: 计算图片相似度的方法:https://blog.csdn.net/eipguo/article/details/79070612 异方差性:https://baike.baidu.com/item/%E5%BC%82%E6%96%B9%E5%B7%AE%E6%80%A7/3206526?fr=ala 阅读全文
posted @ 2018-11-05 15:11 逐梦客! 阅读(131) 评论(0) 推荐(0) 编辑