# 2019.05.13
[文章] GitHub 开始准备提供包管理中心了,包括 NPM、Maven、Docker、RubyGems 等:https://github.com/features/package-registry (opens new window)
[文章] 《我是如何获得财务自由的》,这篇文章给我带来了很多启发,其中引入了几个概念如,「第二宇宙速度(Second Cosmic Velocity)」和「你的商业计划就是你的赚钱计划」并讲述怎么把他应用到赚钱的实践中去:https://mp.weixin.qq.com/s/1ShMnfImaGVgQ2xmr61u_Q (opens new window)
[类库] dinoQL 是使用 GraphQL 语法查询 JavaScript Objects 的工具:https://github.com/victorvoid/dinoql (opens new window)
[类库] 可以让网页放屁的类库:https://github.com/theonion/fartscroll.js/blob/master/README.md (opens new window)
[工具] The Fuck 是自动修正命令行,输入错误的工具,我记得好多 zsh 插件实际上也支持,有知道的欢迎留言:https://github.com/theonion/fartscroll.js/blob/master/README.md (opens new window)
[工具] 在终端里打开当前项目的远程仓库地址,不要小看这个插件欧,每次改完本地代码,当你想用浏览器访问远程仓库的时候,就知道这个插件多方便了,支持 ZSH:https://github.com/paulirish/git-open (opens new window)
# 配图 - GitHub Register
# 配图 - 我是如何获得财务自由的
# 配图 - Git Open
# 配图 - thefuck
# 示例 - dinoQL
import dinoql from 'dinoql'
const users = dinoql(data)`
requests {
users(id: "200") {
name
}
}
`
console.log(users) //{ users: [{ name: 'Kant Jonas' }] }