# 2019.04.13
[文章] Git 的奇技淫巧 🙈:https://github.com/521xueweihan/git-tips (opens new window)
Git 常用命令集合,Fork 于 tips 项目
[类库] EditorJS 是一个全新的 block 风格的开源编辑器,演示地址 (opens new window):https://github.com/codex-team/editor.js (opens new window)
[类库] Vue Meta 主要用于管理 HMTL 头部标签,同时也支持 SSR,参考文章 (opens new window): https://github.com/nuxt/vue-meta (opens new window)
[工具] Linux 命令大全搜索工具,内容包含 Linux 命令手册、详解、学习、搜集,在线地址 (opens new window):https://github.com/jaywcjlove/linux-command (opens new window)
# 配图 - Linux 命令大全
# 配图 - EditorJS
# 示例 - Git 的奇技淫巧
# 查看两个星期内的改动
git whatchanged --since='2 weeks ago'
# 示例 - Vue Meta
<template>
...
</template>
<script>
export default {
metaInfo: {
title: 'My Example App', // set a title
titleTemplate: '%s - Yay!', // title is now "My Example App - Yay!"
htmlAttrs: {
lang: 'en',
amp: undefined // "amp" has no value
}
}
}
</script>