上一页 1 ··· 194 195 196 197 198 199 200 201 202 ··· 499 下一页
摘要: #!/usr/bin/python import random import numpy import matplotlib.pyplot as plt import pickle from outlier_cleaner import outlierCleaner from sklearn.lin 阅读全文
posted @ 2020-07-16 23:25 Zhentiw 阅读(305) 评论(0) 推荐(0)
摘要: import { createMachine, interpret } from "xstate"; const elBox = document.querySelector("#box"); const machine = { initial: "inactive", states: { inac 阅读全文
posted @ 2020-07-16 18:48 Zhentiw 阅读(181) 评论(0) 推荐(0)
摘要: State + Event + Interpreter: const machine = { initial: "idle", states: { idle: { on: { FETCH: "pending", }, }, pending: { on: { RESOLVE: "resolved", 阅读全文
posted @ 2020-07-15 03:17 Zhentiw 阅读(183) 评论(0) 推荐(0)
摘要: Let's say we have a command line application: const { Task } = require("../../libs/types"); const { save, all } = require("../../libs/db"); const { la 阅读全文
posted @ 2020-07-07 19:35 Zhentiw 阅读(226) 评论(0) 推荐(0)
摘要: An ancient problem of centering items with CSS is finally (!) solved! In this quick lesson we're going to learn how to use place-items CSS property in 阅读全文
posted @ 2020-07-06 14:31 Zhentiw 阅读(117) 评论(0) 推荐(0)
摘要: Decision trees can handle none linear speratable dataset, in the picture, there is none separable dataset When we use dscision tree, we ask multi line 阅读全文
posted @ 2020-07-03 21:57 Zhentiw 阅读(206) 评论(0) 推荐(0)
摘要: Take the native HTML checkboxes and jazz them up while still ensuring they are keyboard accessible. We use pseudo-elements and pseudo-classes to repli 阅读全文
posted @ 2020-07-03 15:38 Zhentiw 阅读(170) 评论(0) 推荐(0)
摘要: In this lesson, we dive into using CSS border-radius. We will look at how you can use it to create not only basic shapes but complex ones too. We will 阅读全文
posted @ 2020-07-03 15:27 Zhentiw 阅读(136) 评论(0) 推荐(0)
摘要: Building larger serverless applications can be tricky - creating many lambda functions as well as other resources such as DynamoDB tables, S3 buckets, 阅读全文
posted @ 2020-07-01 20:09 Zhentiw 阅读(369) 评论(0) 推荐(0)
摘要: Path: Compose Functors -> Monad Transformers -> Free Monad Free monads, it provides a way to modelling functions as Data type. So composing / chaining 阅读全文
posted @ 2020-07-01 14:54 Zhentiw 阅读(179) 评论(0) 推荐(0)
上一页 1 ··· 194 195 196 197 198 199 200 201 202 ··· 499 下一页