At its core, webpack is a static module bundler for modern JavaScript applications. 从本质上来讲,webpack是一个现代的JavaScript应用的静态模块打包工具。 我们从两个点来解释上面这句话:模块 和 打包 ...
分类:
Web程序 时间:
2021-07-28 21:38:48
阅读次数:
0
FastAPI https://fastapi.tiangolo.com/#performance FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.6+ based ...
分类:
编程语言 时间:
2021-07-16 17:45:01
阅读次数:
0
Morgan Stanley uses Apache Kafka® to publish market data to internal clients and to persist it for replay purposes. We started out using librdkafka’s ...
分类:
编程语言 时间:
2021-05-24 10:27:55
阅读次数:
0
最近在读Modern Complier Implementatnion in C. 做到语法分析(syntax analysis)时,发现不知道如何写注释的正则表达式: 以下的正则表达式: "/*"[.|\n]"*/" 会根据最长匹配原则,将两行注释间的代码当作注释: /*comments*/ va ...
分类:
其他好文 时间:
2021-04-10 12:54:54
阅读次数:
0
首先需要明确的是,我们要求的是不同的染色方案数!!! 然后我们不妨来考虑一下一个只有向右和向下的特殊情况。 然后你会发现他一定满足有一个向右下延伸的颜色的分界线,为什么呢? 我们首先比较显然的,若图上有 \(n\) 个向右的, \(m\) 个向下的,我们可以将其简化为一个 \(n\times m\) ...
分类:
其他好文 时间:
2021-03-06 14:40:07
阅读次数:
0
Docker是一个能够把开发的应用程序自动部署到container的开源container engine(容器引擎)。 Docker官网对它的定义是:Simplify modern application development and delivery by bundling distribute ...
分类:
其他好文 时间:
2020-12-30 10:28:22
阅读次数:
0
An Absolute Beginner's Guide to Using npm Using npm effectively is a cornerstone of modern web development, no matter if it's exclusively with Node.js ...
分类:
其他好文 时间:
2020-12-29 11:26:46
阅读次数:
0
? Part of "memory-management" series Please follow me on Twitter for updates and let me know if something can be improved in the post. In this multi-p ...
分类:
其他好文 时间:
2020-12-05 11:10:24
阅读次数:
7
[Modern Java - A Guide to Java 8] [APIJSON] [网关soul] ...
分类:
其他好文 时间:
2020-11-25 12:42:03
阅读次数:
5
c++11提供了关键字noexcept,用来指明某个函数无法——或不打算——抛出异常: void foo() noexcept; // a function specified as will never throw void foo2() noexcept(true); // same as fo ...
分类:
编程语言 时间:
2020-09-17 17:07:05
阅读次数:
27