上一页 1 ··· 133 134 135 136 137 138 139 140 141 ··· 477 下一页
摘要: There are two async exection context: Microtask Queue - ASAP (Promises, MutationObserver) Macrotask Queue - DO Later (setTimeout, setInterval, request 阅读全文
posted @ 2021-11-24 15:43 Zhentiw 阅读(65) 评论(0) 推荐(0)
摘要: lib.js import { parse, evaluate } from "groq-js" export let groq = async ([query]) => { let tree = parse(query) return async dataset => { let result = 阅读全文
posted @ 2021-11-21 18:07 Zhentiw 阅读(200) 评论(0) 推荐(0)
摘要: const ary = [1, 2, 3, 4, 2, 3]; const unqiAry = (ary) => ary.filter((item, index) => ary.indexOf(item) index) unqiAry(ary) // [ 1, 2, 3, 4 ] const ary 阅读全文
posted @ 2021-11-05 15:36 Zhentiw 阅读(58) 评论(0) 推荐(0)
摘要: S3 Usage Patterns S3 doesn't suit for following usecases: POSIX-compliant file system: should use EFS. POSIX -- refer to Linux or Unix files Structure 阅读全文
posted @ 2021-11-05 14:22 Zhentiw 阅读(412) 评论(0) 推荐(0)
摘要: Z-index cannot be added to static position DOM element. All the DOM element by default is static position. So if you have to add z-index, you can add 阅读全文
posted @ 2021-11-03 15:58 Zhentiw 阅读(74) 评论(0) 推荐(0)
摘要: let other = null console.log(other?.[0]) // undefined You can use optional chaining to access elements in an array. If the array is null or undefined, 阅读全文
posted @ 2021-11-03 01:05 Zhentiw 阅读(58) 评论(0) 推荐(0)
摘要: Minimum RTO for a single region outage For the minimum RTO in a single region we will follow up the same thing. We will have a monitoring team 24/7 av 阅读全文
posted @ 2021-10-21 00:46 Zhentiw 阅读(315) 评论(0) 推荐(0)
摘要: Install npm install tailwaindcss postcss-cli autoperfixer Config a empty tailwind config file npx tailwind init Conig postcss module.exports = { plugi 阅读全文
posted @ 2021-10-17 16:26 Zhentiw 阅读(112) 评论(0) 推荐(0)
摘要: Install Purgecss to remove unused CSS npm install @fullhuman/postcss-purgecss --save-dev Edit postcss.config.js: module.exports = { plugins: [ require 阅读全文
posted @ 2021-10-17 03:30 Zhentiw 阅读(140) 评论(0) 推荐(0)
摘要: Overview In this lesson, we will explore methodologies to incorporate defensive security when designing a cloud architecture. We will identify tools a 阅读全文
posted @ 2021-10-16 19:34 Zhentiw 阅读(136) 评论(0) 推荐(0)
上一页 1 ··· 133 134 135 136 137 138 139 140 141 ··· 477 下一页