摘要:
Let's say we have a State Machine Model: import { createMachine, interpret } from "xstate"; const elBox = document.querySelector("#box"); const setPoi 阅读全文
摘要:
The k-means algorithm captures the insight that each point in a cluster should be near to the center of that cluster. It works like this: first we cho 阅读全文
摘要:
#!/usr/bin/python import random import numpy import matplotlib.pyplot as plt import pickle from outlier_cleaner import outlierCleaner from sklearn.lin 阅读全文
摘要:
Let's say we have a command line application: const { Task } = require("../../libs/types"); const { save, all } = require("../../libs/db"); const { la 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文