valgrind使用 valgrind --tool=memcheck --leak-check=full --log-file=valgrind-log.txt ./build/executable --args gdb使用带参数 gdb --args ./build/executable --a ...
分类:
其他好文 时间:
2021-05-24 12:21:49
阅读次数:
0
liquidjs 是兼容shopify liquid 的纯js 模板引擎,同时官方文档也比较完整 支持的特性 安全渲染(没有eval 以及Function 使用) shopify 兼容 零依赖 ts 支持 参考使用 app.js const { Liquid } = require('liquidj ...
分类:
Web程序 时间:
2021-05-24 12:21:30
阅读次数:
0
服务器信息: 此小节的内容: SecurityCRT:用来连接到Linux服务器命令操作。 FTP(FTPRush):本地文件和Linux服务器文件交互的 工具服务器 借助客户端工具来链接到Linux服务器上进行相关操作——securityCRT 在Linux上安装ftp服务器 (File Tran ...
分类:
系统相关 时间:
2021-05-24 12:02:36
阅读次数:
0
follow this video: https://www.youtube.com/watch?v=OljTVUVzPpM paper: https://papers.nips.cc/paper/2014/file/5ca3e9b122f61f8f06494c97b1afccf3-Paper.pd ...
分类:
其他好文 时间:
2021-05-24 11:57:23
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi ...
分类:
编程语言 时间:
2021-05-24 10:50:07
阅读次数:
0
https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm yum install postgresql13-contrib postgresql13-se ...
分类:
数据库 时间:
2021-05-24 10:29:11
阅读次数:
0
(一)选择题(含单项选择和多项选择题) 每题2分,合计20分 1聚合函数max()括号里面可以填写的类型有 ABCD A:number B:char C:Varchar2 D:date 2下列没有去重功能的指令有 BC A:union B:order by C:union all D:group b ...
分类:
其他好文 时间:
2021-05-24 10:28:17
阅读次数:
0
持久化配置 RDB(Redis DataBase)策略 , redis默认策略 AOF(Append Only File)策略 小结: 根据需求选择开启持久化策略,一般开启RDB就够了 事务 Redis的事务:允许把一组redis命令放在一起,把命令序列化,然后一起执行,保证部分原子性 multi ...
分类:
其他好文 时间:
2021-05-24 10:23:15
阅读次数:
0
This time, you are supposed to find A+B where A and B are two polynomials. Input Specification: Each input file contains one test case. Each case occu ...
分类:
编程语言 时间:
2021-05-24 10:17:27
阅读次数:
0
服务端使用长整型(Int64)的数字,在浏览器端使用JS的number类型接收时,当这个实际值超过 (2^53-1)时,JS变量的值和实际值就会出现不相等的问题。常见场景比如使用雪花算法生成Id。 在服务端,数字长整型有64位(bit),第一位为符号位,后边为数字位。 JS引擎中第一位为符号位,第二 ...
分类:
Web程序 时间:
2021-05-24 10:16:38
阅读次数:
0