SparsrMatrix.h #pragma once #include<iostream> using namespace std; class Tri { public: int row; int col; int value; }; class SparseMatrix { public: i ...
分类:
其他好文 时间:
2020-04-12 12:26:08
阅读次数:
70
记录下和kafka相关的语义、不重复消息、不丢失数据、分区有序的内容,文中很多理解参考文末博文、书籍还有某前辈。 kafka语义 kafka中有三种语义,它对理解下面的不重复消费有帮助。 最多一次(at most once):消息最多被处理一次,可能有消息丢失的风险。 至少一次(at least o ...
分类:
其他好文 时间:
2020-04-10 22:53:46
阅读次数:
144
Concentrated on the listed 3 things PCIe total solutions, especially the cutting-edge technology ... Coding quality, matrurity and efficiency (C,Bash, ...
分类:
其他好文 时间:
2020-04-08 18:47:52
阅读次数:
74
本文解读内容是IBN Net, 笔者最初是在很多行人重识别的库中频繁遇到比如ResNet ibn这样的模型,所以产生了阅读并研究这篇文章的兴趣,文章全称是: 《Two at Once: Enhancing Learning and Generalization Capacities via IBN ...
分类:
Web程序 时间:
2020-04-08 09:20:24
阅读次数:
302
require_once dirname(__DIR__) . '/vendor/autoload.php';use PHPMailer\PHPMailer\PHPMailer;use PHPMailer\PHPMailer\Exception;require dirname(__DIR__) .' ...
分类:
Web程序 时间:
2020-04-07 11:11:34
阅读次数:
93
此类是一个全景摄像机视角,书上介绍了详细原理。直接给实现代码。 类声明: #pragma once #ifndef __SPHERICAL_HEADER__ #define __SPHERICAL_HEADER__ #include "camera.h" class Spherical :publi ...
分类:
其他好文 时间:
2020-04-07 09:55:12
阅读次数:
79
File Inclusion(文件包含漏洞)概述: 文件包含,是一个功能。在各种开发语言中都提供了内置的文件包含函数,其可以使开发人员在一个代码文件中直接包含(引入)另外一个代码文件。 比如 在PHP中,提供了: include(),include_once() require(),require_ ...
分类:
其他好文 时间:
2020-04-06 10:07:29
阅读次数:
82
Add the following to Add the following to Set to start ntpd at boot time. Once has been added to `/etc/rc Set to allow ntpd to step the clock any amou ...
分类:
其他好文 时间:
2020-04-06 09:39:00
阅读次数:
68
文件包含漏洞的基本概念: File Inclusion(文件包含漏洞)概述 文件包含,是一个功能。在各种开发语言中都提供了内置的文件包含函数,其可以使开发人员在一个代码文件中直接包含(引入)另外一个代码文件。 比如 在PHP中,提供了: include(),include_once() requir ...
分类:
其他好文 时间:
2020-04-05 20:16:19
阅读次数:
107
package LeetCode_746 /** * 746. Min Cost Climbing Stairs * https://leetcode.com/problems/min-cost-climbing-stairs/description/ * On a staircase, the i ...
分类:
其他好文 时间:
2020-04-05 09:48:47
阅读次数:
78