├── .gitignore ├── LICENSE ├── README.md ├── Untitled.md ├── accounts.md ├── docs ├── 996 │ └── README.md ├── .DS_Store ├── .vuepress │ ├── .DS_Store │ ├── config.js │ ├── dist │ │ ├── .DS_Store │ │ ├── 404.html │ │ ├── assets │ │ │ ├── css │ │ │ │ └── 0.styles.416a852d.css │ │ │ ├── img │ │ │ │ └── search.83621669.svg │ │ │ └── js │ │ │ │ ├── 10.7a358172.js │ │ │ │ ├── 2.4a3fbe33.js │ │ │ │ ├── 3.e20a5210.js │ │ │ │ ├── 4.e4e3df28.js │ │ │ │ ├── 5.89d7162c.js │ │ │ │ ├── 6.7d3c255b.js │ │ │ │ ├── 7.98ddf61f.js │ │ │ │ ├── 8.fd764ff2.js │ │ │ │ ├── 9.070871aa.js │ │ │ │ └── app.2ca7f785.js │ │ ├── blacklist │ │ │ ├── demo.html │ │ │ └── index.html │ │ ├── colleague │ │ │ └── index.html │ │ ├── index.html │ │ ├── law │ │ │ └── index.html │ │ ├── learn │ │ │ └── index.html │ │ ├── logo.ico │ │ ├── logo.png │ │ └── tools │ │ │ └── index.html │ ├── public │ │ ├── .DS_Store │ │ ├── logo.ico │ │ └── logo.png │ └── theme │ │ ├── AlgoliaSearchBox.vue │ │ ├── DropdownLink.vue │ │ ├── DropdownTransition.vue │ │ ├── Home.vue │ │ ├── Layout.vue │ │ ├── NavLink.vue │ │ ├── NavLinks.vue │ │ ├── Navbar.vue │ │ ├── NotFound.vue │ │ ├── Page.vue │ │ ├── SearchBox.vue │ │ ├── Sidebar.vue │ │ ├── SidebarButton.vue │ │ ├── SidebarGroup.vue │ │ ├── SidebarLink.vue │ │ ├── article.json │ │ ├── search.svg │ │ ├── styles │ │ ├── arrow.styl │ │ ├── code.styl │ │ ├── config.styl │ │ ├── custom-blocks.styl │ │ ├── mobile.styl │ │ ├── nprogress.styl │ │ ├── theme.styl │ │ ├── toc.styl │ │ └── wrapper.styl │ │ └── util.js ├── README.md ├── blacklist │ ├── README.md │ └── demo.md ├── colleague │ └── README.md ├── index.html ├── law │ └── README.md ├── learn │ └── README.md └── tools │ └── README.md ├── package.json └── push.sh /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | deploy.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/README.md -------------------------------------------------------------------------------- /Untitled.md: -------------------------------------------------------------------------------- 1 | +1 -------------------------------------------------------------------------------- /accounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/accounts.md -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/.vuepress/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/.DS_Store -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/.vuepress/dist/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/.DS_Store -------------------------------------------------------------------------------- /docs/.vuepress/dist/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/404.html -------------------------------------------------------------------------------- /docs/.vuepress/dist/assets/css/0.styles.416a852d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/assets/css/0.styles.416a852d.css -------------------------------------------------------------------------------- /docs/.vuepress/dist/assets/img/search.83621669.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/assets/img/search.83621669.svg -------------------------------------------------------------------------------- /docs/.vuepress/dist/assets/js/10.7a358172.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/assets/js/10.7a358172.js -------------------------------------------------------------------------------- /docs/.vuepress/dist/assets/js/2.4a3fbe33.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/assets/js/2.4a3fbe33.js -------------------------------------------------------------------------------- /docs/.vuepress/dist/assets/js/3.e20a5210.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/assets/js/3.e20a5210.js -------------------------------------------------------------------------------- /docs/.vuepress/dist/assets/js/4.e4e3df28.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/assets/js/4.e4e3df28.js -------------------------------------------------------------------------------- /docs/.vuepress/dist/assets/js/5.89d7162c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/assets/js/5.89d7162c.js -------------------------------------------------------------------------------- /docs/.vuepress/dist/assets/js/6.7d3c255b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/assets/js/6.7d3c255b.js -------------------------------------------------------------------------------- /docs/.vuepress/dist/assets/js/7.98ddf61f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/assets/js/7.98ddf61f.js -------------------------------------------------------------------------------- /docs/.vuepress/dist/assets/js/8.fd764ff2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/assets/js/8.fd764ff2.js -------------------------------------------------------------------------------- /docs/.vuepress/dist/assets/js/9.070871aa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/assets/js/9.070871aa.js -------------------------------------------------------------------------------- /docs/.vuepress/dist/assets/js/app.2ca7f785.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/assets/js/app.2ca7f785.js -------------------------------------------------------------------------------- /docs/.vuepress/dist/blacklist/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/blacklist/demo.html -------------------------------------------------------------------------------- /docs/.vuepress/dist/blacklist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/blacklist/index.html -------------------------------------------------------------------------------- /docs/.vuepress/dist/colleague/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/colleague/index.html -------------------------------------------------------------------------------- /docs/.vuepress/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/index.html -------------------------------------------------------------------------------- /docs/.vuepress/dist/law/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/law/index.html -------------------------------------------------------------------------------- /docs/.vuepress/dist/learn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/learn/index.html -------------------------------------------------------------------------------- /docs/.vuepress/dist/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/logo.ico -------------------------------------------------------------------------------- /docs/.vuepress/dist/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/logo.png -------------------------------------------------------------------------------- /docs/.vuepress/dist/tools/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/dist/tools/index.html -------------------------------------------------------------------------------- /docs/.vuepress/public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/public/.DS_Store -------------------------------------------------------------------------------- /docs/.vuepress/public/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/public/logo.ico -------------------------------------------------------------------------------- /docs/.vuepress/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/public/logo.png -------------------------------------------------------------------------------- /docs/.vuepress/theme/AlgoliaSearchBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/AlgoliaSearchBox.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/DropdownLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/DropdownLink.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/DropdownTransition.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/DropdownTransition.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/Home.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/Layout.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/NavLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/NavLink.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/NavLinks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/NavLinks.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/Navbar.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/NotFound.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/Page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/Page.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/SearchBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/SearchBox.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/Sidebar.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/SidebarButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/SidebarButton.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/SidebarGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/SidebarGroup.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/SidebarLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/SidebarLink.vue -------------------------------------------------------------------------------- /docs/.vuepress/theme/article.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/article.json -------------------------------------------------------------------------------- /docs/.vuepress/theme/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/search.svg -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/arrow.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/styles/arrow.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/code.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/styles/code.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/config.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/styles/config.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/custom-blocks.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/styles/custom-blocks.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/mobile.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/styles/mobile.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/nprogress.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/styles/nprogress.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/theme.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/styles/theme.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/toc.styl: -------------------------------------------------------------------------------- 1 | .table-of-contents 2 | .badge 3 | vertical-align middle 4 | -------------------------------------------------------------------------------- /docs/.vuepress/theme/styles/wrapper.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/styles/wrapper.styl -------------------------------------------------------------------------------- /docs/.vuepress/theme/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/.vuepress/theme/util.js -------------------------------------------------------------------------------- /docs/996/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/996/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/blacklist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/blacklist/README.md -------------------------------------------------------------------------------- /docs/blacklist/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/blacklist/demo.md -------------------------------------------------------------------------------- /docs/colleague/README.md: -------------------------------------------------------------------------------- 1 | # 有些同行也是劣迹班班 2 | 3 | - [如何看待摩拜前端负责人小春张耀春)疑似性骚扰女下属?](https://www.zhihu.com/question/289146339?from=groupmessage&isappinstalled=0&utm_medium=social&utm_oi=581028265741783040&utm_source=wechat_session) -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | iasds 2 | -------------------------------------------------------------------------------- /docs/law/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/law/README.md -------------------------------------------------------------------------------- /docs/learn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/learn/README.md -------------------------------------------------------------------------------- /docs/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/docs/tools/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/package.json -------------------------------------------------------------------------------- /push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengxinjing/programmer-job-blacklist/HEAD/push.sh --------------------------------------------------------------------------------