# 第 47 期 - 彩云

> 封面图摄于上周晚上出去吃饭，天空彩色云彩挺漂亮。

- Issue: 47
- 发布日期: 2021/10/12
- HTML: https://weekly.tw93.fun/posts/47
- JSON: https://weekly.tw93.fun/api/posts/47.json
- English translation: https://weekly.tw93.fun/en/posts/47.md

---

<img src="https://gw.alipayobjects.com/zos/k/44/Vfy6YV.jpg" width="800" />

<small>封面图摄于上周晚上出去吃饭，天空彩色云彩挺漂亮。</small>

> **记录每周看到的接地气的前端潮流技术，筛选后发布于此，觉得不错可关注此专栏，方便获取更新通知**

## 前端技术

**关于鉴权，看懂这篇就够了**  
<https://mp.weixin.qq.com/s/-Yf6a58H7WDB1luOORhDJw>  
将登录的一些事情给讲清楚了。

**美团商品知识图谱的构建及应用**  
<https://tech.meituan.com/2021/09/02/meituan-commodity-nlp-practice.html>  
美团的文章每次写的还真不错。

**浏览器中的音视频知识总结**  
<https://juejin.cn/post/7002288264413446157>  
很像大学生写的那种备考前的学习笔记。

## 潮流开源

**ViteShot：快速简单的组件截图工具**  
<https://github.com/zenclabs/viteshot>  
可以放弃无头浏览器的方式来弄了。  
<img src="https://cdn.tw93.fun/blog/upic/L7CZll.gif" width="800" />

**filament：谷歌开源的轻量级实时物理渲染引擎**  
<https://github.com/google/filament>  
同时支持 Android, iOS, Windows, Linux, macOS, 和 WebGL2。  
<img src="https://cdn.tw93.fun/blog/upic/co4HTx.jpg" width="800" />

**yt-dlp：youtute 视频下载命令行**  
<https://github.com/yt-dlp/yt-dlp>  
在 youtube-dlc 基础上加了些功能的命令行下载工具，看着功能比较强大。

**devices.css：用 CSS 画常用设备的代码**  
<http://marvelapp.github.io/devices.css/>  
<img src="https://cdn.tw93.fun/blog/upic/evQYEL.gif" width="800" />

**hyperformula：Excel 公式计算风格的库**  
<https://github.com/handsontable/hyperformula>

```js
import { HyperFormula } from "hyperformula";

// define the options
const options = {
  licenseKey: "gpl-v3",
};

// define the data
const data = [["10", "20", "30", "=SUM(A1:C1)"]];

// build an instance with defined options and data
const hfInstance = HyperFormula.buildFromArray(data, options);

// call getCellValue to get the calculation results
const mySum = hfInstance.getCellValue({ col: 3, row: 0, sheet: 0 });

// print the result in the browser's console
console.log(mySum);
```

## 看看其他

**从 App Store 总榜前 100 小窥 APP 发展趋势**  
<http://www.woshipm.com/it/5116194.html>  
居然用马斯洛的需求层次对各类型 APP 进行归类了一下，文章的整理还是很用心的。

**kkndme_tianya：天涯十年前关于房价的神贴**  
<https://github.com/shenzhengfang/kkndme_tianya>  
天涯神贴「2010 年的房地产调控，我们收获了什么？写在房价暴涨前」脱水版，思辨的看，不过有很多东西值得一看。
