/* * [Modified] Modern CSS Reset * @link https://github.com/hankchizljaw/modern-css-reset */ /* Box sizing rules */ *, *::before, *::after { box-sizin ...
分类:
Web程序 时间:
2020-06-03 15:14:21
阅读次数:
166
wheelEvent = "onwheel" in document.createElement("div") ? "wheel" : // Modern browsers support "wheel" document.onmousewheel !== undefined ? "mousewhe ...
分类:
其他好文 时间:
2020-05-22 15:32:54
阅读次数:
52
下面为使用fastlane编译framework的片段: def ios_build_framework( project_path, target ,code_path) build for iphonesimulator xcodebuild( project: project_path, ta ...
分类:
其他好文 时间:
2020-05-15 15:23:35
阅读次数:
91
一.配置参数解析: bandwidth —— 带宽,即上行、下行数据传输速度utilisation —— 带宽可用率,大部分modern是100%round-trip latency —— 第一个请求的时延,单位是ms。MTU —— 最大传输单元,即TCP包的最大size,可以更真实模拟TCP层,每 ...
分类:
其他好文 时间:
2020-04-30 11:41:41
阅读次数:
50
github传送门为:https://nlohmann.github.io/json/ 简介 首先这个库不是奔着性能去的,设计者考虑的是:直观的语法(Intuitive syntax)、微小的整合(Trivial integration)、认真的测试(Serious testing) 至于内存效率和 ...
分类:
编程语言 时间:
2020-04-27 17:18:39
阅读次数:
77
https://hsivonen.fi/modern-cpp-in-rust/ Since version 56, Firefox has had a new character encoding conversion library called encoding_rs. It is writte ...
分类:
编程语言 时间:
2020-03-29 21:26:15
阅读次数:
81
Blog链接:https://blog.51cto.com/13969817如果大家想学习SharePointFramework,需要了解一些基础知识,这对classicSharePoint开发人员来说非常重要,因为我们面对的是modern开发,一个可能并不熟悉的工具。首先,我们来熟悉一下Node.js和基于npm的开发:类似.jsonNodePackageManager(npm)Yarn(推荐)
分类:
其他好文 时间:
2020-03-28 09:15:08
阅读次数:
110
引言 的目的看起来是为了代替 ,因为在以前,C++总是把 和`0 NULL 0`,有的是当成 。 在C++里面,二级指针( )是不允许将 隐式转换为其他类型的。但是如果编译器中将 定义为 ,那么下面的代码是可以成立的 char ch = NULL; // no error 在上面的代码中,不允许 隐 ...
分类:
编程语言 时间:
2020-03-10 21:32:31
阅读次数:
74
constexpr是C++11中新增的关键字,其语义是“常量表达式”,也就是在编译期可求值的表达式。最基础的常量表达式就是字面值或全局变量/函数的地址或sizeof等关键字返回的结果,而其它常量表达式都是由基础表达式通过各种确定的运算得到的。constexpr值可用于enum、switch、数组长度 ...
分类:
编程语言 时间:
2020-02-20 23:39:47
阅读次数:
77
转自:https://blog.csdn.net/SUKHOI27SMK/article/details/81040161 Shaders 正如在上一篇教程中提到的,shader是在GPU中运行的小程序。如上一个教程中实现的最简单的vertex shader和fragment shader,一个sh ...
分类:
其他好文 时间:
2020-02-15 23:40:22
阅读次数:
153