看板利用

类似trello的一个功能,以后可以利用
https://github.com/markusenglund/react-kanban

随机获取图片

可以随机回去高清图片
https://unsplash.com/

俩个css 动效的库

webIDE

https://github.com/Coding/WebIDE/blob/master/README-zh.md

https://microsoft.github.io/monaco-editor/ # vsc的核心模块

a UI builder for React web apps

https://github.com/Pagedraw/pagedraw
感觉还不是很成熟。目前没有听说国内哪家公司在用,但是想法不错。

- [x] 从零实现一个react

https://github.com/hujiulong/blog/issues/4
https://zhuanlan.zhihu.com/p/37098539

- [x] 聊天室源码

https://blog.csdn.net/lijiecong/article/details/50781417
https://zhuanlan.zhihu.com/p/29148869

批量删除git远程分支

1
2
3
4
5
6
7
8
9
git branch -r| grep -v -E 'master|test' | sed 's/origin\///g' | xargs -I {} git push origin :{}

grep -v -E 排除master 和 test
-v 排除
-E 使用正则表达式

xargs 将前面的值作为参数传入 git branch -D 后面

-I {} 使用占位符 来构造 后面的命令

git远程删除分支后,本地git branch -a 依然能看到的解决办法。

git remote prune origin

Todo: