art-template 模板引擎: 中文文档:http://aui.github.io/art-template/zh-cn/docs/ 既支持ejs 的语法,也可以用自己的类似angular 数据绑定的语法 在 koa 中使用 art-template 模板引擎: npm install --s ...
分类:
其他好文 时间:
2021-02-01 11:57:14
阅读次数:
0
Netty官网:https://netty.io/ Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance p ...
分类:
Web程序 时间:
2021-02-01 11:54:29
阅读次数:
0
在用户目录.cargo目录新建config文件,把以下配置复制到文件中 [source.crates-io] registry = "https://github.com/rust-lang/crates.io-index" replace-with = 'ustc' [source.ustc] # ...
分类:
其他好文 时间:
2021-02-01 11:41:55
阅读次数:
0
模块 项目数 1. java.util 有(110)个常用类 2. java.io 有(80)个常用类 3. android.widget 有(100)个常用类 4. android.view 有(55)个常用类 5. java.net 有(63)个常用类 6. java.util.concurre ...
分类:
编程语言 时间:
2021-01-29 12:03:05
阅读次数:
0
可以在运行app的时候像打开浏览器的F12一样 vConsole-npm vConsole-github 在index.html中添加 <script src="http://wechatfe.github.io/vconsole/lib/vconsole.min.js?v=3.2.0"></scr ...
分类:
移动开发 时间:
2021-01-29 11:54:41
阅读次数:
0
链接 : https://codeforces.com/contest/1475/problem/D 排序 + 双指针 #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.t ...
分类:
其他好文 时间:
2021-01-28 12:04:58
阅读次数:
0
#include <iostream> //标准输入输出流 #include <pcl/io/pcd_io.h> //PCL的PCD格式文件的输入输出头文件 #include <pcl/point_types.h> //PCL对各种格式的点的支持头文件 #include <pcl/visualiza ...
分类:
其他好文 时间:
2021-01-28 11:55:50
阅读次数:
0
出现的场景 在springboot 连接redis的时候出现以下报错 2021-01-27 10:12:07.077 ERROR 4428 [nio-8004-exec-5] s.x.s.e.GlobalExceptionHandler : Redis exception; nested excep ...
分类:
编程语言 时间:
2021-01-28 11:39:51
阅读次数:
0
gRPC Load Balancing 翻译自:https://grpc.io/blog/grpc-load-balancing/ 这是gRPC负载均衡的第一篇,后续会给出基于golang XDS服务发现的例子,了解golang XDS的工作原理。 本文描述了在部署gRPC时可能会采用的几种负载均衡 ...
分类:
其他好文 时间:
2021-01-28 11:37:53
阅读次数:
0
一、代码实现 1、AlternateDataStream.cs using System; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Text; namespace F ...