上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页
摘要: 压缩包安装 首先安装依赖包: sudo yum install libcurl openssl 然后在https://www.mongodb.com/download-center#community找到如下页面: 然后选择社区版: 点击copylink复制链接,执行如下指令: wget <刚复制的 阅读全文
posted @ 2021-11-19 10:20 pangqianjin 阅读(290) 评论(0) 推荐(0) 编辑
摘要: 转载自: https://www.cnblogs.com/lfri/p/10780994.html P命令的作用与T命令相同,但是当遇到中断指令INT n和调用指令CALL时,不会进入子程序,而是直接跳到下一条语句。 阅读全文
posted @ 2021-10-10 10:15 pangqianjin 阅读(1048) 评论(0) 推荐(0) 编辑
摘要: 第一个参数是pathLike,看文档以为可以直接传入Buffer类型,但是实际会报错, 解决方法 const stream = require('stream') const reader = new stream.PassThrough().end(buffer) reader是转换后的ReadS 阅读全文
posted @ 2021-10-08 10:29 pangqianjin 阅读(333) 评论(0) 推荐(0) 编辑
摘要: <div id="container"></div> <style> #container{ position: relative; margin: auto; width: 200px; height: 200px; background: url('./avatar.jfif') no-repe 阅读全文
posted @ 2021-10-01 21:01 pangqianjin 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 如,计算17x+3120y=1 /** * 辗转相除法计算私钥d * @param {BigInt} e 公钥 * @param {BigInt} n 两个大素数之积,P*Q * @returns {BigInt} 余数, d, k */ function gcdEx(e, n) { if(!n){ 阅读全文
posted @ 2021-09-30 20:00 pangqianjin 阅读(137) 评论(0) 推荐(0) 编辑
摘要: /** * 计算a**b(mod c) * @param {bigInt} a 底数 * @param {bigInt} b 指数 * @param {bigInt} c 模 * @returns {binInt}结果 */ function fastPowerMod(a, b, c){ let r 阅读全文
posted @ 2021-09-30 18:55 pangqianjin 阅读(52) 评论(0) 推荐(0) 编辑
摘要: /** * 判断两个大整数是否互质 * @param {binInt} a 第一个整数 * @param {bigInt} b 第二个整数 * @returns {false} 最大公约数是否为1 */ function isCoprime(a, b){ let x = a let y = b le 阅读全文
posted @ 2021-09-30 18:24 pangqianjin 阅读(321) 评论(0) 推荐(0) 编辑
摘要: /** * 计算a**b(mod c) * @param {bigInt} a 底数 * @param {bigInt} b 指数 * @param {bigInt} c 模 * @returns {binInt}结果 */ function fastPowerMod(a, b, c){ let r 阅读全文
posted @ 2021-09-30 18:23 pangqianjin 阅读(139) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2020.cnblogs.com/blog/2261524/202109/2261524-20210904111802783-1069889747.png) 阅读全文
posted @ 2021-09-04 11:19 pangqianjin 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 状态吗可以按照第一个数字分类: 1表示信息, 2表示成功, 3表示重定向, 4表示客户端错误, 5表示服务器错误; 常见的状态码有: 101:切换协议 200:成功 301:永久重定向 302:临时重定向 304:未修改 301和302的区别: 301:永久移动,请求的网页已永久移动到新的位置,服务 阅读全文
posted @ 2021-07-18 14:43 pangqianjin 阅读(526) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页