上一页 1 ··· 186 187 188 189 190 191 192 193 194 ··· 494 下一页
摘要: In this lesson, we explore creating the Egghead Shell with CSS. We explore how different properties allow us to create different shapes and how we can 阅读全文
posted @ 2020-08-10 16:30 Zhentiw 阅读(152) 评论(0) 推荐(0)
摘要: https://www.w3schools.com/cssref/css_units.asp In this lesson, we lay the foundations for creating a CSS illustration of the Egghead logo using the "t 阅读全文
posted @ 2020-08-10 16:11 Zhentiw 阅读(99) 评论(0) 推荐(0)
摘要: When needing to format a number I've tended to lean towards Number.prototype.toFixed(), reach for a 3rd party library, or write custom functions. Howe 阅读全文
posted @ 2020-08-10 15:57 Zhentiw 阅读(287) 评论(0) 推荐(0)
摘要: Actor, which can invoke a promise to fetch data. import { createMachine, assign, interpret } from "xstate"; const elBox = document.querySelector("#box 阅读全文
posted @ 2020-08-10 15:46 Zhentiw 阅读(206) 评论(0) 推荐(0)
摘要: const displayMachine = createMachine( { initial: "hidden", states: { hidden: { on: { TURN_ON: "visible.hist", }, }, visible: { // Add parallel states 阅读全文
posted @ 2020-08-07 01:45 Zhentiw 阅读(232) 评论(0) 推荐(0)
摘要: Evaluation Metrics are how you can tell if your machine learning algorithm is getting better and how well you are doing overall. Accuracy x x x Accura 阅读全文
posted @ 2020-08-06 21:04 Zhentiw 阅读(217) 评论(0) 推荐(0)
摘要: Learn about the required and expanded syntax of CSS box-shadow. Then, create various kinds of effects such as shadows inside the element, a shadow tha 阅读全文
posted @ 2020-08-06 15:47 Zhentiw 阅读(143) 评论(0) 推荐(0)
摘要: The ability to natively format dates and times using the browser is impressive. You may find yourself not needed to grab libraries such as moment.js o 阅读全文
posted @ 2020-08-06 04:22 Zhentiw 阅读(116) 评论(0) 推荐(0)
摘要: Install: npm i -g aws-cdk Init a project: cdk init sample-app --language=typescript To verify it works: npm run build Should have no error. Developeme 阅读全文
posted @ 2020-08-04 23:04 Zhentiw 阅读(648) 评论(0) 推荐(0)
摘要: const displayMachine = createMachine({ initial: "hidden", states: { hidden: { on: { TURN_ON: "visible.hist", }, }, visible: { initial: "light", states 阅读全文
posted @ 2020-07-31 16:22 Zhentiw 阅读(171) 评论(0) 推荐(0)
上一页 1 ··· 186 187 188 189 190 191 192 193 194 ··· 494 下一页