fix formater and add new post

This commit is contained in:
Sevichecc 2022-08-06 19:03:35 +08:00
parent f61521e837
commit 6bdcb3a5ca
42 changed files with 60 additions and 40 deletions

View file

@ -1,7 +1,7 @@
---
title: Overview of User Experience Design
summary: Introduction to User Experience DesignWeek1
created 2021-11-08T10:54:40+08:00
created: 2021-11-08T10:54:40+08:00
# categories:
# - UX学习笔记
# - Introduction to User Experience Design

View file

@ -1,7 +1,7 @@
---
title: Requirement Gathering
summary: Introduction to User Experience DesignWeek2
created 2021-11-09T22:26:49+08:00
created: 2021-11-09T22:26:49+08:00
categories:
- UX学习笔记
- Introduction to User Experience Design

View file

@ -1,7 +1,7 @@
---
title: Design Alternatives
summary: Introduction to User Experience DesignWeek3
created 2021-11-14T11:18:45+08:00
created: 2021-11-14T11:18:45+08:00
categories:
- UX学习笔记
- Introduction to User Experience Design

View file

@ -1,7 +1,7 @@
---
title: Prototyping
summary: Introduction to User Experience DesignWeek4
created 2021-11-18T21:26:41+08:00
created: 2021-11-18T21:26:41+08:00
categories:
- UX学习笔记
- Introduction to User Experience Design

View file

@ -1,7 +1,7 @@
---
title: Evaluation
summary: Introduction to User Experience DesignWeek5
created 2021-11-18T22:09:49+08:00
created: 2021-11-18T22:09:49+08:00
categories:
- UX学习笔记
- Introduction to User Experience Design

View file

@ -1,7 +1,7 @@
---
title: JavaScript · 判断水仙花数
summary: 用JavaScript判断水仙花数
created 2022-03-03T15:07:14.533Z
created: 2022-03-03T15:07:14.533Z
categories:
- JavaScript
tags:

View file

@ -1,7 +1,7 @@
---
title: JavaScript · 十进制数转二进制
summary: 用JavaScript将十进制数转二进制数
created 2022-03-04T14:57:48.683Z
created: 2022-03-04T14:57:48.683Z
draft: ''
tags:
- JavaScript

View file

@ -1,7 +1,7 @@
---
title: Airtable · 网页剪藏
summary: Airtable Web Cilpper设置
created 2022-03-06T05:58:29.026Z
created: 2022-03-06T05:58:29.026Z
categories:
- 实用技巧
tags:

View file

@ -1,7 +1,7 @@
---
title: JavaScript · 字符串去重
summary: 编码实现字符串去重
created 2022-03-07T13:55:21.090Z
created: 2022-03-07T13:55:21.090Z
tags:
- JavaScript
categories:

View file

@ -1,7 +1,7 @@
---
title: Obsidian · 网课学习笔记整理
summary: 拆分整合的过程
created 2022-03-06T16:23:33.118Z
created: 2022-03-06T16:23:33.118Z
tags:
- Obsidian
categories:

View file

@ -1,7 +1,7 @@
---
title: JavaScript · Caesar Cipher 凯撒加密
summary: 用JavaScrpit编码实现凯撒加密算法
created 2022-03-08T16:01:08.850Z
created: 2022-03-08T16:01:08.850Z
tags:
- JavaScript
categories:

View file

@ -1,7 +1,7 @@
---
title: CSS · Tab选项卡
summary: 一个纯 CSS 实现的 Tab 选项卡
created 2022-03-09T07:42:25.299Z
created: 2022-03-09T07:42:25.299Z
tags:
- CSS
categories:

View file

@ -1,7 +1,7 @@
---
title: JavaScript · 打字机效果生成器
summary: 用 JavaScript 实现网页打字机效果
created 2022-03-08T16:19:05.137Z
created: 2022-03-08T16:19:05.137Z
tags:
- JavaScript
categories:

View file

@ -1,7 +1,7 @@
---
title: Forty页面仿写
summary: 完成 HTML、CSS 代码编写,暂无 JavaScript
created 2022-03-10T08:38:17.227Z
created: 2022-03-10T08:38:17.227Z
preview: ''
draft: ''
tags:

View file

@ -1,7 +1,7 @@
---
title: Miniflux · 保存文章到 Pocket 以及 RSS
summary: 将 Miniflux 上的文章到保存到 Pocket/Instapaper,以及 RSS 相关文章和资源
created 2022-03-10T16:24:38.663Z
created: 2022-03-10T16:24:38.663Z
preview: ''
draft: ''
tags:

View file

@ -2,7 +2,7 @@
title: CSS · 解决 Chrome 中小于12px的字体不显示的问题
lastmod: 2022-04-07T07:36:23.629Z
summary: 先用scale总体缩小再补上减少的宽度
created 2022-03-29T13:46:29.228Z
created: 2022-03-29T13:46:29.228Z
tags:
- CSS
- CSS Trick

View file

@ -0,0 +1,20 @@
---
title: Monkey Patch
created: 2022-08-06
summary: 猴子打补丁
tag:
- Notes
---
[Monkey Patch - Wikipedia](https://en.wikipedia.org/wiki/Monkey%20patch)
> A **Monkey patch** is a way for a program to extend or modify supporting system software locally (affecting only the running instance of the program)."
也可以可以理解为基于原生功能API的一些自定义拓展这个概念常在 Python 里面出现,也叫鸭子双关
[Checking if a JavaScript native function is monkey patched](https://mmazzarolo.com/blog/2022-07-30-checking-if-a-javascript-native-function-was-monkey-patched/)
> Monkey patching is a powerful but dangerous technique because the code youre overriding is not in your control: future updates to the JavaScript engine may break some assumptions made in your patch and cause serious bugs.
> Additionally, by monkey patching code you dont own, you might override some code that has already been monkey patched by another developer, introducing a potential conflict.
对于 JS 来说Monkey patch 的问题在于:如果 JS 引擎更新了,可能会带来一些难以预计的 bug这篇文章说了几种怎么检测是否存在 monkey patch 函数的方法,比如用 toString、iframe、proxy 等等,但都不是很完美,可以根据使用场景来决定用哪种方法

View file

@ -1,6 +1,6 @@
---
title: CSS · Argon主题的CSS修改
created 2022-01-16 14:04:17
created: 2022-01-16 14:04:17
tags:
- CSS
slug: free-axure-cloud

View file

@ -1,6 +1,6 @@
---
title: 两种免费发布Axure原型的方式
created 2022-01-21 00:11:17
created: 2022-01-21 00:11:17
tags:
- 实用技巧
slug: free-axure-cloud

View file

@ -1,6 +1,6 @@
---
title: CSS · 基础笔记
created 2021-12-06T11:59:47+08:00
created: 2021-12-06T11:59:47+08:00
slug: css-fundamental
tags:
- CSS

View file

@ -3,7 +3,7 @@ title: CSS · 三种布局方式
slug: css-layouts
tags:
- CSS
created 2022-01-13T10:07:00.000Z
created: 2022-01-13T10:07:00.000Z
summary: Float / Flexbox / Grid /
lastmod: 2022-05-07T05:30:20.613Z
---

View file

@ -1,6 +1,6 @@
---
title: 自建网页书签Flare
created 2022-02-20 14:04:17
created: 2022-02-20 14:04:17
tags:
- Docker
- Self-hosted

View file

@ -3,7 +3,7 @@ title: CSS · Reusable Grid
slug: css-grid
tags:
- CSS
created 2022-01-13T10:01:44.000Z
created: 2022-01-13T10:01:44.000Z
summary: 可复用的CSS Grid设置
lastmod: 2022-05-07T05:32:52.372Z
---

View file

@ -1,6 +1,6 @@
---
title: 用 docker 安装 Halo 博客
created 2022-02-16 14:04:17
created: 2022-02-16 14:04:17
tags:
- Docker
- Self-hosted

View file

@ -1,6 +1,6 @@
---
title: CSS · hover时图片放大的动效
created 2022-01-13T16:03:47.000Z
created: 2022-01-13T16:03:47.000Z
slug: hover-image-scale
tags:
- CSS Trick

View file

@ -1,6 +1,6 @@
---
title: HTML · 基础笔记
created 2021-12-06T11:59:47+08:00
created: 2021-12-06T11:59:47+08:00
slug: html-notes
tags:
- HTML

View file

@ -1,6 +1,6 @@
---
title: 什么是设计洞察 · What is Insight
created 2021-10-15T15:07:14.533Z
created: 2021-10-15T15:07:14.533Z
tags:
- Design Thinking
- 翻译

View file

@ -4,7 +4,7 @@ slug: css-margin
tags:
- CSS Trick
- CSS
created 2022-01-13T10:04:21.000Z
created: 2022-01-13T10:04:21.000Z
summary: 用helper class为单个按钮加margin防止元素复用时产生不必要的margin
lastmod: 2022-05-07T05:32:49.156Z
---

View file

@ -1,6 +1,6 @@
---
title: 翻译 · Material Design3
created 2022-01-03 13:02:17
created: 2022-01-03 13:02:17
tags:
- 翻译
categories:

View file

@ -3,7 +3,7 @@ title: CSS · Rem in CSS
slug: rem-css
tags:
- CSS
created 2022-01-12T09:50:27.000Z
created: 2022-01-12T09:50:27.000Z
summary: CSS中的Rem是什么
lastmod: 2022-05-07T05:32:42.708Z
---

View file

@ -6,7 +6,7 @@ categories:
- 实用技巧
slug: vscode-tips
summary: 字体/插件/设置……
created 2022-01-27T13:40:28.920Z
created: 2022-01-27T13:40:28.920Z
lastmod: 2022-03-30T02:20:34.584Z
---

View file

@ -1,7 +1,7 @@
---
title: 《用户体验要素》- 用户体验为何如此重要
summary: 第一章笔记
created 2021-11-29T11:06:10+08:00
created: 2021-11-29T11:06:10+08:00
categories:
- UX学习笔记
- 《用户体验要素》

View file

@ -1,7 +1,7 @@
---
title: 《用户体验要素》- 认识这些要素
summary: 第二章笔记
created 2021-12-06T11:59:47+08:00
created: 2021-12-06T11:59:47+08:00
categories:
- UX学习笔记
- 《用户体验要素》

View file

@ -1,6 +1,6 @@
---
title: 《用户体验要素》- 战略层(产品目标和用户需求)
created 2022-01-02 13:08:29
created: 2022-01-02 13:08:29
categories:
- UX学习笔记
tags:

View file

@ -7,7 +7,7 @@ categories:
- 设计心理学
keywords:
- 设计心理学
created 2021-10-20T12:28:00.000Z
created: 2021-10-20T12:28:00.000Z
# layout: post
summary: 《设计心理学 1》第一章——好设计有两个特征可视性和易通性
lastmod: 2022-04-16T12:55:08.323Z

View file

@ -9,7 +9,7 @@ keywords:
- 设计心理学
draft: false
# layout: post
created 2021-10-20T16:14:47.371Z
created: 2021-10-20T16:14:47.371Z
summary: 《设计心理学 1》第二章——人们如何做事当事情出错了怎么办怎么知道要做什么
lastmod: 2022-04-16T12:55:05.400Z
---

View file

@ -8,7 +8,7 @@ categories:
- 设计心理学
keywords:
- 设计心理学
created 2021-10-20T17:08:47.371Z
created: 2021-10-20T17:08:47.371Z
summary: 《设计心理学 1》第三章——并非精确行为需要的所有知识都得储存在头脑里
lastmod: 2022-04-16T12:55:13.235Z
# layout: post

View file

@ -7,7 +7,7 @@ categories:
- 设计心理学
keywords:
- 设计心理学
created 2021-10-22T20:21:44.000Z
created: 2021-10-22T20:21:44.000Z
summary: 《设计心理学 1》第四章——遇到一个新的设备或状况设计师应如何提供重要信息以便人们知道如何操作
lastmod: 2022-04-16T12:55:16.673Z
# layout: post

View file

@ -1,7 +1,7 @@
---
title: 人为差错?不,拙劣的设计
summary: 《设计心理学 1》第五章——设计师经常严重误解人心理的局限性要求人像机器一样工作
created 2021-10-27T20:22:17+08:00
created: 2021-10-27T20:22:17+08:00
math: falase
categories:
- 设计心理学

View file

@ -1,6 +1,6 @@
---
title: 设计思维
created 2021-11-03T03:49:10.353Z
created: 2021-11-03T03:49:10.353Z
categories:
- 设计心理学
tags:

View file

@ -1,7 +1,7 @@
---
title: 全球商业化中的设计
summary: 《设计心理学 1》第七章——本书的总结
created 2021-11-03T03:59:18.000Z
created: 2021-11-03T03:59:18.000Z
categories:
- 设计心理学
tags: