原文:第二十四节:编码、解码、加密算法概念及实现(Base64、MD5、SHA、HMAC、DES、AES、RSA) 一. 编码解码 1.编码 将信息从一种格式(人能识别)转换成另一种形式(计算机能识别)的过程。 常见的编码:Base64 2.解码 计算机能识别的形式转换成人能识别的形式。 3.字符集... ...
分类:
编程语言 时间:
2020-05-21 09:31:05
阅读次数:
68
# Example MySQL config file for small systems. # # This is for a system with little memory (<= 64M) where MySQL is only used # from time to time and i ...
分类:
数据库 时间:
2020-05-20 18:49:41
阅读次数:
153
Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stored in a file or memory buffer, or ...
分类:
其他好文 时间:
2020-05-20 14:12:20
阅读次数:
55
网上看到的关于Executor,Cores和Memory的分配相关博客,先记录下来,再汇总。 <1>第一篇 Spark处理多少数据是否需要多少内存 Spark处理1Tb数据不需要1Tb的内存。 具体需要多少内存是根据executor的core数量和每次读取数据集的block大小决定的。以读取hdfs ...
分类:
其他好文 时间:
2020-05-19 16:47:03
阅读次数:
82
Kivy 使用Pyinstaller打包报错:No module named pkg_resources.py2_warn ...
分类:
其他好文 时间:
2020-05-19 12:23:42
阅读次数:
161
前言:飞思卡尔K60系列单片机应用广泛,大多数同学都是从智能车比赛开始接触K60到熟悉运用。 一、飞思卡尔K60系列简介 飞思卡尔Freescale公司(现被恩智浦收购)K60系列MCU,工作电压1.71-3.6V,闪存的写电压为1.71-3.6V,采用ARM Cortex-M4内核,其性能可达到1 ...
分类:
其他好文 时间:
2020-05-18 14:18:59
阅读次数:
290
SGA Memory Summary 这部分是关于SGA内存分配的一个描述,我们可以通过show sga等命令也可以查看到这里的内容。 Fixed Size:oracle的不同平台和不同版本下可能不一样,但对于确定环境是一个固定的值,里面存储了SGA 各部分组件的信息,可以看作引导建立SGA的区域。 ...
分类:
数据库 时间:
2020-05-18 12:13:12
阅读次数:
81
Bug 说明 CentOS 虚拟机卡顿,于是执行了强制关机。 在强制关机后重启虚拟机,机器报错:corruption of in memory data detected 解决方法 参考 "虚拟机Centos报corruption of in memory data detected错误的恢复" 使 ...
分类:
其他好文 时间:
2020-05-18 12:07:03
阅读次数:
314
1 #include <iostream> 2 #include <string> 3 #include <cstring> 4 #include <memory> 5 #include <map> 6 #include <hash_map> 7 #include <conio.h> 8 9 tem ...
分类:
编程语言 时间:
2020-05-16 20:37:33
阅读次数:
67
python中的使用参照如下API: 1 sqlite3.connect(database [,timeout ,other optional arguments]) 该 API 打开一个到 SQLite 数据库文件 database 的链接。您可以使用 ":memory:" 来在 RAM 中打开一 ...
分类:
数据库 时间:
2020-05-16 16:42:31
阅读次数:
87