[
  {
    "path": "Day01.md",
    "content": "# Day01-初识Git和Github\n\ntag ： git\ndate : 2017-5-27\nauther : itgoyo\n\n---\n\n## Git\n说到Git你或许不是了解，但是Linux系统你一定听过，Git就是Linux系统创始人林纳斯·托瓦兹一手创造出来的，奠定了他在编程界大神的地位。\n\n#### Git的诞生\n这是一个传奇故事，时间定格到2005年，当时linux再使用一个叫做BitKeeper的版本控制工具，BitKeeper开发商在这一年决定不再免费提供给linux社区使用，linus当即伸出了中指，于是两周后Git诞生了，一个月之内Linux的源码已经由Git托管。\n\n<div align=center>\n![](http://omvbl46i3.bkt.clouddn.com/17-5-27/59474026.jpg)\n</div>\n\n#### Git的优点\ngit是国外开源版本库，不需要自己搭建服务器，你在上面搭建上传的工程代码都是公开的，谁都可以访问，可以设置团队成员分配修改的权限。如果要像SVN一样指定的人可以访问Git就需要收费了，SVN需要你有一台服务器，上面安装SVN Server实现版本控制\n\n* 快速\n\n如果你每移动一下鼠标都要等待五秒，是不是很受不了？版本控制也是一样的，每一个命令多那么几秒钟，一天下来也会浪费你不少时间。Git的操作非常快速，你可以把时间用在别的更有意义的地方。\n\n* 离线工作\n\n在没有网络的情况下如何工作？如果你用SVN或者CVS的话就很麻烦。而Git可以让你在本地做所有操作，提交代码，查看历史，合并，创建分支等等。\n\n* 回退\n\n人难免犯错。我很喜欢Git的一点就是你可以“undo”几乎所有的命令。你可以用这个功能来修正你刚刚提交的代码中的一个问题或者回滚整个代码提交操作。你甚至可以恢复一个被删除的提交，因为在后端，Git几乎不做任何删除操作。\n\n* 省心\n\n你有没有丢失过版本库？我有，而那种头疼的感觉现在还记忆犹新。而用Git的话，我就不必担心这个问题，因为任何一个人机器上的版本都是一个完整的备份。\n\n* 选择有用的代码提交\n\n当你把纽带，冰块还有西红柿一起扔进搅拌机的时候至少有两个问题。第一，搅拌过后，没有人知道之前扔进去了些什么东西。第二，你不能回退，重新把西红柿拿出来。同样的，当你提交了一堆无关的更改，例如功能A加强，新增功能B，功能C修复，想要理清这一堆代码到底干了什么是很困难的。当然，当发现功能A出问题的时候，你无法单独回滚功能A。Git可以通过创建“颗粒提交”，帮你解决这个问题。“staging area”的概念可以让你决定到底那些东西需要提交，或者更新，精确到行。\n\n* 自由选择工作方式\n\n使用Git，你可以同时和多个远程代码库连接，“rebase”而不是\"merge\"甚至只连接某个模块。但是你也可以选择一个中央版本库，就像SVN那样。你依然可以利用Git的其他优点。\n\n* 保持工作独立\n\n把不同的问题分开处理将有助于跟踪问题的进度。当你在为功能A工作的时候，其他人不应该被你还没有完成的代码所影响。分支是解决这个问题的办法。虽然其他的版本控制软件业有分支系统，但是Git是第一个把这个系统变得简单而快速的系统。\n\n* 随大流\n\n虽然只有死于才随着波浪前进，但是很多时候聪明的程序员也是随大流的。越来越多的公司，开源项目使用Git，包括Ruby On Rails，jQuery，Perl，Debian，Linux Kernel等等。拥有一个强大的社区是很大的优势，有很多教程、工具。随着开源的热潮越来越汹涌，使得类似于Github这样子的开源网站，受到更多更多程序员的喜爱与青睐，Git是时代选择的必然结果。\n\n## Github\nGitHub 是一个面向开源及私有软件项目的托管平台，因为只支持 Git 作为唯一的版本库格式进行托管，故名 GitHub。GitHub 于 2008 年 4 月 10 日正式上线，除了 Git 代码仓库托管及基本的 Web 管理界面以外，还提供了订阅、讨论组、文本渲染、在线文件编辑器、协作图谱（报表）、代码片段分享（Gist）等功能。目前，其注册用户已经超过350万，托管版本数量也是非常之多，其中不乏知名开源项目 Ruby on Rails、jQuery、python 等。\n\n#### Github趣事\n2013年1月15日晚间，全球最大的社交编程及代码托管网站GitHub突然疑似遭遇DDOS攻击，访问大幅放缓，该网站管理员经过日志查询，发现是来自12306的抢票插件用户洪水般的访问导致GitHub出现问题。该事件加上当初知乎吵架事件，使得Github在国内的发展像炸开的锅一样，拦都拦不住。\n\n## Git的安装\n\n- Window\n\n下载Git\n\n[https://git-scm.com/downloads](https://git-scm.com/downloads)\n\n配置ssh key\n\n```Java\nssh-keygen -t rsa -C \"yourid@xxmail.com\"\n```\n![](http://omvbl46i3.bkt.clouddn.com/17-5-27/96538348.jpg)\n\n然后连续按回车键3次\n\n![](http://omvbl46i3.bkt.clouddn.com/17-5-27/74500875.jpg)\n\n\n出现以上图片说明已经在本地创建好ssh key了\n路径在C:\\Users\\admin\\.ssh\n![](http://omvbl46i3.bkt.clouddn.com/17-5-27/44708043.jpg)\n\n然后使用文本编辑器打开id_rsa.pub，然后把里边的内容完全复制\n\n然后登陆[Github官网](https://github.com)\n\n[https://github.com](https://github.com)\n\n点击设置选项\n\n![](http://omvbl46i3.bkt.clouddn.com/17-5-27/28296803.jpg)\n\n然后把刚刚复制的ssh key复制进去\n\n![](http://omvbl46i3.bkt.clouddn.com/17-5-27/32336481.jpg)\n\n完成了以上步骤检测一下是否已经成功链接上Github\n\n```\n$ ssh -T git@github.com\n```\n\n```\nadmin@iTgoyo-PC MINGW32 ~/Desktop\n$  ssh -T git@github.com\nThe authenticity of host 'github.com (192.30.255.112)' can't be established.\nRSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.\nAre you sure you want to continue connecting (yes/no)?\n```\n\n输入yes\n\n![](http://omvbl46i3.bkt.clouddn.com/17-5-27/58239146.jpg)\n出现上面信息即本地连接Github已经成功\n\n- Mac OS\n基本和上面没差\n打开终端，输入\n```\ncd ～/.ssh\n```\n\n```\n如果存在，先将已有的ssh备份，或者将新建的ssh生成到另外的目录下\n如果不存在，通过默认的参数直接生成ssh:\nssh-keygen -t rsa -C xxxxx@gmail.com（注册github时的email）\n(输入完成后，按enter健即可，命令行会自动提示下面这一行👇，接下来的命令行一路按enter健即可)\nGenerating public/private rsa key pair.\nEnter file in which to save the key (/Users/twer/.ssh/id_rsa):\nCreated directory '/Users/twer/.ssh'.\nEnter passphrase (empty for no passphrase):\nEnter same passphrase again:\nYour identification has been saved in /Users/twer/.ssh/id_rsa.\nYour public key has been saved in /Users/twer/.ssh/id_rsa.pub.\nThe key fingerprint is:\n18:16:11:c9:01:6c:48:09:7f:27:66:43:0d:7f:3f:84 xxxxx@gmail.com\nThe key's randomart image is:\n+--[ RSA 2048]----+\n|.o.++=== |\n|.ooo.+. . |\n| ..* = E . |\n| o = + o |\n| . S o |\n| . |\n| |\n| |\n| |\n+-----------------+\n```\n\n此时会在你的电脑里生成一个.ssh的文件，里面有你的ssh key的信息，如果需要复制这个信息，可以在命令行里输入 pbcopy < ~/.ssh/id_rsa.pub，这个是复制的命令，然后打开一个文本文件，粘贴即可\n\n过程参考Windows\n\n#### 对于Github的初学者的建议\n\n推荐两本Github入门\n\n[GitHub入门与实践](https://github.com/itgoyo/500Days-Of-Github/PDF/GitHub入门与实践.pdf)\n\n[github-beginners](https://github.com/itgoyo/500Days-Of-Github/PDF/github-beginners 1.0.pdf)\n\n自我感觉刚入门Github的时候没必要逼着自已一定要使用命令行敲完代码，然后创建仓库，提交信息，上传代码。\n\n因为图形化界面的Git工具很多\n\n个人推荐官方的[Github For Desktop](https://desktop.github.com/)\n\n当然也有其他童鞋觉得[SourceTree](https://www.sourcetreeapp.com/)也是不错的选择，看自己爱好吧，工具而已，自己喜欢就好。\n\n有童鞋反馈说Github For Desktop安装比较慢的问题，可以使用[Lantern](https://github.com/getlantern/forum)翻墙,如果你觉得速度不错，想办理会员版的话可以使用我的推荐码**2CR4W2**进行购买专业版，这样子我们都彼此会多获得三个月的会员时间\n\n#### 提交代码到Github仓库\n\n- 先在Github官网上创建自己的仓库\n\n![](http://omvbl46i3.bkt.clouddn.com/17-5-27/76224850.jpg)\n\n![](http://omvbl46i3.bkt.clouddn.com/17-5-27/33695609.jpg)\n\n以下我拿桌面版的Github来进行演示\n\n![](http://omvbl46i3.bkt.clouddn.com/17-5-27/95435534.jpg)\n\n即可下载到本地\n\n![](http://omvbl46i3.bkt.clouddn.com/17-5-27/28740787.jpg)\n\n即可打开到本地Github项目的仓库\n\n我们随意改变一下工程的内容，例如以下，我新增了一个txt文本文件\n\n再点开客户端\n\n![](http://omvbl46i3.bkt.clouddn.com/17-5-27/62240631.jpg)\n\n此时客户端已经检测到内容的改变，当你想把本地的资源提交到远程的仓库时\n\n![](http://omvbl46i3.bkt.clouddn.com/17-5-27/56382664.jpg)\n\n同步完成了之后你就会发现Github仓库上面已经有你刚刚提交的信息了\n\n![](http://omvbl46i3.bkt.clouddn.com/17-5-27/75169227.jpg)\n\n谢谢你的浏览，如果你觉得这篇文章对你有帮助或者想收藏的话，不妨点一点上面的star或者watch。\n\n如果文中有什么错误或者似乎错别字的话，也可以指出来，届时会修改好，再重新发布一次，如果你有什么好的建议和想法的话，欢迎邮件联系我。\n\nE-mail：itgoyo@gmail.com\n"
  },
  {
    "path": "README.md",
    "content": "# 500Days-Of-Github\n就像电影(500)Days of Summer一样，记录着每一天\n\n# 所有内容都在Issue里面\n\n这只是个人的一些学习经验总结和感悟，可能排版会有些乱，但不影响它成为一份很好的学习材料\n\n如果你喜欢请star支持一下，谢谢，如果有什么问题想和我一起探讨，可以使用下面几种方式联系我\n\n![邮箱](/img/邮箱.png)    itgoyo@gmail.com\n\n![微博](/img/微博.png)    http://www.weibo.com/5792513777\n\n![知乎](/img/知乎.png)    https://www.zhihu.com/people/mkosto/\n\n[![GitHub stars](https://img.shields.io/github/stars/itgoyo/500Days-Of-Github.svg?style=social&label=Star)](https://github.com/itgoyo/500Days-Of-Github) [![GitHub forks](https://img.shields.io/github/forks/itgoyo/500Days-Of-Github.svg?style=social&label=Fork)](https://github.com/itgoyo/500Days-Of-Github/fork) [![GitHub watchers](https://img.shields.io/github/watchers/itgoyo/500Days-Of-Github.svg?style=social&label=Watch)](https://github.com/itgoyo/500Days-Of-Github) [![GitHub followers](https://img.shields.io/github/followers/itgoyo.svg?style=social&label=Follow)](https://github.com/itgoyo/500Days-Of-Github)\n\n目录\n---\n[nginx搭建本地流媒体服务器](https://github.com/itgoyo/500Days-Of-Github/issues/179)\n\n#179 opened 1 hour ago by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[VScode打开终端 iterm2乱码的解决](https://github.com/itgoyo/500Days-Of-Github/issues/178)\n\n#178 opened 8 days ago by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Mac Disable Shift Cmd Q for logout](https://github.com/itgoyo/500Days-Of-Github/issues/177)\n\n#177 opened 18 days ago by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[使用nodeclub 搭建一个开源社区](https://github.com/itgoyo/500Days-Of-Github/issues/176)\n\n#176 opened 18 days ago by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[linux 安装 neofetch](https://github.com/itgoyo/500Days-Of-Github/issues/175)\n\n#175 opened 20 days ago by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[今年花钱买的最值的东西](https://github.com/itgoyo/500Days-Of-Github/issues/174)\n\n#174 opened 21 days ago by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[怎么样用 TeamViewer 和 VNC 从远程控制电脑](https://github.com/itgoyo/500Days-Of-Github/issues/173)\n\n#173 opened 21 days ago by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Mongodb启动报错MongoDB:shutting down with code:100](https://github.com/itgoyo/500Days-Of-Github/issues/172)\n\n#172 opened 23 days ago by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n\n[Mac SoundFlower OBS配置教程](https://github.com/itgoyo/500Days-Of-Github/issues/171)\n\n#171 opened 23 days ago by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[linux安装vncserver](https://github.com/itgoyo/500Days-Of-Github/issues/170)\n\n#170 opened 26 days ago by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[如何快速创建接口测试数据](https://github.com/itgoyo/500Days-Of-Github/issues/169)\n\n#169 opened 29 days ago by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Hexo使用Valine评论系统并且使用邮件通知有新评论](https://github.com/itgoyo/500Days-Of-Github/issues/168)\n\n#168 opened on Jul 12 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Mac没有权限](https://github.com/itgoyo/500Days-Of-Github/issues/167)\n\n#167 opened on Jul 11 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Mac install rails](https://github.com/itgoyo/500Days-Of-Github/issues/166)\n\n#166 opened on Jul 10 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[linux install Apache](https://github.com/itgoyo/500Days-Of-Github/issues/165)\n\n#165 opened on Jul 3 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[linux终端如何走SSR代理](https://github.com/itgoyo/500Days-Of-Github/issues/164)\n\n#164 opened on Jun 15 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[在线可运行代码的文档编辑器jupyter](https://github.com/itgoyo/500Days-Of-Github/issues/163)\n\n#163 opened on Jun 14 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[linux安装缺少的依赖包](https://github.com/itgoyo/500Days-Of-Github/issues/162)\n\n#162 opened on Jun 13 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[linux录屏软件SimpleScreenRecorder](https://github.com/itgoyo/500Days-Of-Github/issues/161)\n\n#161 opened on Jun 13 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[SSR客户端的安装与使用](https://github.com/itgoyo/500Days-Of-Github/issues/160)\n\n#160 opened on Jun 13 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[如何创建免费的 SSR 账号，每月15G，到期后换邮箱即可继续使用](https://github.com/itgoyo/500Days-Of-Github/issues/159)\n\n#159 opened on Jun 12 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Mac 安装 nginx](https://github.com/itgoyo/500Days-Of-Github/issues/158)\n\n#158 opened on Jun 10 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Mac如何删除自带输入法只保留第三方输入法](https://github.com/itgoyo/500Days-Of-Github/issues/157)\n\n#157 opened on May 27 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Vim 简单入门](https://github.com/itgoyo/500Days-Of-Github/issues/156)\n\n#156 opened on May 20 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[ZSH运行错误](https://github.com/itgoyo/500Days-Of-Github/issues/155)\n\n[记录一次电脑莫名其妙的问题](https://github.com/itgoyo/500Days-Of-Github/issues/154)\n\n#154 opened on May 16 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[node提示没有权限如果使用终端命令不能解决的话](https://github.com/itgoyo/500Days-Of-Github/issues/153)\n\n#153 opened on May 13 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[前端移动端适配代码](https://github.com/itgoyo/500Days-Of-Github/issues/152)\n\n#152 opened on May 8 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Vue修改 IP 地址访问](https://github.com/itgoyo/500Days-Of-Github/issues/151)\n\n#151 opened on May 7 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[印象笔记+Hexo=Everblog](https://github.com/itgoyo/500Days-Of-Github/issues/150)\n\n#150 opened on Apr 14 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Vim安装YouCompleteMe之后insert切换回normal延迟卡顿的问题](https://github.com/itgoyo/500Days-Of-Github/issues/149)\n\n#149 opened on Apr 11 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[VScode打开RecentFiles功能](https://github.com/itgoyo/500Days-Of-Github/issues/148)\n\n#148 opened on Apr 10 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[VScode使用Easy Motion功能](https://github.com/itgoyo/500Days-Of-Github/issues/147)\n\n#147 opened on Apr 10 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Vim常用键位说明](https://github.com/itgoyo/500Days-Of-Github/issues/146)\n\n#146 opened on Apr 10 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Vim如何修改insert和nomal光标样式](https://github.com/itgoyo/500Days-Of-Github/issues/145)\n\n#145 opened on Apr 10 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Vim如何自定义快捷键](https://github.com/itgoyo/500Days-Of-Github/issues/144)\n\n#144 opened on Apr 10 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[如何使得MacVim成为默认的Vim客户端](https://github.com/itgoyo/500Days-Of-Github/issues/143)\n\n#143 opened on Apr 10 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[iterm下面使用zsh-autosuggestions显示不清楚的解决方式](https://github.com/itgoyo/500Days-Of-Github/issues/142)\n\n#142 opened on Apr 10 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[记一次Hexo博客的莫名其妙错误](https://github.com/itgoyo/500Days-Of-Github/issues/141)\n\n#141 opened on Apr 9 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[vim安装Markdown预览插件markdown-preview.vim](https://github.com/itgoyo/500Days-Of-Github/issues/140)\n\n#140 opened on Apr 9 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Ubuntu安装思源字体](https://github.com/itgoyo/500Days-Of-Github/issues/139)\n\n#139 opened on Apr 8 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[node提示没有权限](https://github.com/itgoyo/500Days-Of-Github/issues/138)\n\n#138 opened on Apr 8 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[VSCode键盘Vim键位设置](https://github.com/itgoyo/500Days-Of-Github/issues/137)\n\n#137 opened on Apr 8 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n\n[Git commit插件](https://github.com/itgoyo/500Days-Of-Github/issues/136)\n\n#136 opened on Apr 3 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[nodejs每次npm都出现需要权限问题的修复](https://github.com/itgoyo/500Days-Of-Github/issues/135)\n\n#135 opened on Apr 2 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[如何多台主机共用一套鼠键](https://github.com/itgoyo/500Days-Of-Github/issues/134)\n\n#134 opened on Mar 26 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[youtube-dl+ffmpeg推流直播](https://github.com/itgoyo/500Days-Of-Github/issues/133)\n\n#133 opened on Mar 5 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[ubuntu系统Chrome不能使用离线的插件文件](https://github.com/itgoyo/500Days-Of-Github/issues/132)\n\n#132 opened on Feb 28 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[No package 'xcb-xrm' found](https://github.com/itgoyo/500Days-Of-Github/issues/131)\n\n#131 opened on Feb 28 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[linux如何使用命令更新某一个软件](https://github.com/itgoyo/500Days-Of-Github/issues/130)\n\n#130 opened on Feb 28 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\")\n\n[OBS如何推流2台电脑的屏幕](https://github.com/itgoyo/500Days-Of-Github/issues/129)\n\n#129 opened on Feb 27 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[使用命令查看电脑开机多久](https://github.com/itgoyo/500Days-Of-Github/issues/128)\n\n#128 opened on Feb 25 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[v2ex使用新浪图床](https://github.com/itgoyo/500Days-Of-Github/issues/127)\n\n#127 opened on Feb 22 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[西部数码的域名映射到自己的网站](https://github.com/itgoyo/500Days-Of-Github/issues/126)\n\n#126 opened on Feb 19 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[苹果电脑可以不用去除密码设置自动登录](https://github.com/itgoyo/500Days-Of-Github/issues/125)\n\n#125 opened on Feb 19 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[黑苹果设置Mac为默认启动项，而不用每次都用手去点击选择](https://github.com/itgoyo/500Days-Of-Github/issues/124)\n\n#124 opened on Feb 18 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[如何把电脑变成服务器然后使用远程登录](https://github.com/itgoyo/500Days-Of-Github/issues/123)\n\n#123 opened on Feb 18 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Mac 关闭 Adobe Creative Cloud](https://github.com/itgoyo/500Days-Of-Github/issues/122)\n\n#122 opened on Feb 17 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Github查看history黑科技用法](https://github.com/itgoyo/500Days-Of-Github/issues/121)\n\n#121 opened on Feb 15 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Telegram安装教程](https://github.com/itgoyo/500Days-Of-Github/issues/120)\n\n#120 opened on Jan 29 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[fzf使用教程](https://github.com/itgoyo/500Days-Of-Github/issues/119)\n\n#119 opened on Jan 14 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[spacemacs使用教程](https://github.com/itgoyo/500Days-Of-Github/issues/118)\n\n#118 opened on Jan 12 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[知乎alfred_workflow](https://github.com/itgoyo/500Days-Of-Github/issues/117)\n\n#117 opened on Jan 11 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[抖音下载](https://github.com/itgoyo/500Days-Of-Github/issues/116)\n\n#116 opened on Jan 7 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Baidu-Go 403用户被禁止解决方式](https://github.com/itgoyo/500Days-Of-Github/issues/115)\n\n#115 opened on Jan 4 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Docker相关](https://github.com/itgoyo/500Days-Of-Github/issues/114)\n\n#114 opened on Jan 2 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[数据库相关](https://github.com/itgoyo/500Days-Of-Github/issues/113)\n\n#113 opened on Dec 30, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[键位可视化软件](https://github.com/itgoyo/500Days-Of-Github/issues/112)\n\n#112 opened on Dec 29, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Mac配置Java与Maven环境变量](https://github.com/itgoyo/500Days-Of-Github/issues/111)\n\n#111 opened on Dec 29, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Vim代码注释框架NERDCOMMENTER](https://github.com/itgoyo/500Days-Of-Github/issues/109)\n\n#109 opened on Dec 25, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Alfred Snippets自定义输出文字](https://github.com/itgoyo/500Days-Of-Github/issues/108)\n\n#108 opened on Dec 18, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Linux 通过snap下载安装软件，用法和apt差不多](https://github.com/itgoyo/500Days-Of-Github/issues/107)\n\n#107 opened on Dec 17, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Mac三指移动窗口](https://github.com/itgoyo/500Days-Of-Github/issues/106)\n\n#106 opened on Dec 17, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[i3wm锁屏软件](https://github.com/itgoyo/500Days-Of-Github/issues/105)\n\n#105 opened on Dec 16, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[一个使用Github作为图床的小工具gitPic](https://github.com/itgoyo/500Days-Of-Github/issues/104)\n\n#104 opened on Dec 14, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\")\n\n[终端目录跳转软件autojump和z](https://github.com/itgoyo/500Days-Of-Github/issues/103)\n\n#103 opened on Dec 14, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[终端目录跳转软件auto](https://github.com/itgoyo/500Days-Of-Github/issues/102)\n\n#102 opened on Dec 14, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Mac os下快速从终端进入Finder & 从Finder进入终端](https://github.com/itgoyo/500Days-Of-Github/issues/101)\n\n#101 opened on Dec 13, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Linux设置取消代理](https://github.com/itgoyo/500Days-Of-Github/issues/100)\n\n#100 opened on Dec 13, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Ubuntu install problems](https://github.com/itgoyo/500Days-Of-Github/issues/99)\n\n#99 opened on Dec 12, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[VSCode-七牛云插件](https://github.com/itgoyo/500Days-Of-Github/issues/98)\n\n#98 opened on Dec 12, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Vim如何指定新文件的默认存储地址](https://github.com/itgoyo/500Days-Of-Github/issues/97)\n\n#97 opened on Dec 10, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[关于2K显示器在Mac OS下面字体显示发虚的解决方式](https://github.com/itgoyo/500Days-Of-Github/issues/96)\n\n#96 opened on Dec 5, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[百度地图error code 162,坐标为[0.0,0.0]或者[4.9E-324,4.9E-324]](https://github.com/itgoyo/500Days-Of-Github/issues/95)\n\n#95 opened on Nov 15, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[re-download dependencies and sync](https://github.com/itgoyo/500Days-Of-Github/issues/94)\n\n#94 opened on Nov 13, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[sudo apt-get install rxvt-unicode](https://github.com/itgoyo/500Days-Of-Github/issues/93)\n\n#93 opened on Nov 11, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Chrome临时访问方式](https://github.com/itgoyo/500Days-Of-Github/issues/92)\n\n#92 opened on Nov 10, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[The following packages have unmet dependencies](https://github.com/itgoyo/500Days-Of-Github/issues/91)\n\n#91 opened on Nov 10, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Linux安装i3wm平铺式窗口桌面](https://github.com/itgoyo/500Days-Of-Github/issues/90)\n\n#90 opened on Nov 9, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[~/.bashrc、~/.xinitrc或~/.xprofile区别](https://github.com/itgoyo/500Days-Of-Github/issues/89)\n\n#89 opened on Nov 9, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[AndroidStudio不能查看崩溃日志](https://github.com/itgoyo/500Days-Of-Github/issues/88)\n\n#88 opened on Nov 8, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Markdown显示样式](https://github.com/itgoyo/500Days-Of-Github/issues/87)\n\n#87 opened on Nov 8, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Surfingkeys自定义快捷键](https://github.com/itgoyo/500Days-Of-Github/issues/86)\n\n#86 opened on Nov 8, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Linux install Chrome](https://github.com/itgoyo/500Days-Of-Github/issues/85)\n\n#85 opened on Nov 8, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Linux Mint install i3-wm](https://github.com/itgoyo/500Days-Of-Github/issues/84)\n\n#84 opened on Nov 8, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[idea-vim快捷键大全](https://github.com/itgoyo/500Days-Of-Github/issues/83)\n\n#83 opened on Nov 8, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[linux backup restore](https://github.com/itgoyo/500Days-Of-Github/issues/82)\n\n#82 opened on Nov 7, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[commands push project to github](https://github.com/itgoyo/500Days-Of-Github/issues/81)\n\n#81 opened on Nov 7, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[windows电脑莫名的卡顿](https://github.com/itgoyo/500Days-Of-Github/issues/80)\n\n#80 opened on Nov 1, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Git忽略规则和.gitignore规则不生效的解决办法](https://github.com/itgoyo/500Days-Of-Github/issues/79)\n\n#79 opened on Oct 19, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\")\n\n[Tmux终端工具的使用](https://github.com/itgoyo/500Days-Of-Github/issues/78)\n\n#78 opened on Oct 18, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Sublime Text3怎么修改侧边栏颜色](https://github.com/itgoyo/500Days-Of-Github/issues/77)\n\n#77 opened on Oct 18, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Mac电脑右上角图标有时候显示有时候消失的原因](https://github.com/itgoyo/500Days-Of-Github/issues/76)\n\n#76 opened on Oct 16, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[苹果外接2K显示器字体发虚的解决方式](https://github.com/itgoyo/500Days-Of-Github/issues/75)\n\n#75 opened on Oct 2, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Mac Markdown软件推荐](https://github.com/itgoyo/500Days-Of-Github/issues/74)\n\n#74 opened on Oct 2, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[不翻墙提高Github的下载还有push速度](https://github.com/itgoyo/500Days-Of-Github/issues/73)\n\n#73 opened on Aug 8, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Mac安装homebrew](https://github.com/itgoyo/500Days-Of-Github/issues/72)\n\n#72 opened on Jul 22, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Webdriver下载地址](https://github.com/itgoyo/500Days-Of-Github/issues/71)\n\n#71 opened on Jul 19, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[四叶草引导EFI系统](https://github.com/itgoyo/500Days-Of-Github/issues/70)\n\n#70 opened on Jul 19, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[四叶草下载](https://github.com/itgoyo/500Days-Of-Github/issues/69)\n\n#69 opened on Jul 18, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[dyld: Library not loaded: /usr/local/opt/gdbm/lib/libgdbm.4.dylib](https://github.com/itgoyo/500Days-Of-Github/issues/68)\n\n#68 opened on Jul 17, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[VIm升级到8.1版本之后每次打开都有错误提示](https://github.com/itgoyo/500Days-Of-Github/issues/67)\n\n#67 opened on Jul 17, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[微信自动回复消息](https://github.com/itgoyo/500Days-Of-Github/issues/66)\n\n#66 opened on Jul 15, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Mac Chrome加载网站很慢的问题](https://github.com/itgoyo/500Days-Of-Github/issues/65)\n\n#65 opened on Jun 23, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Win7 Office OneNote2016一直无法登陆的问题](https://github.com/itgoyo/500Days-Of-Github/issues/64)\n\n#64 opened on Jun 6, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[win重装系统之后Chrome主页被劫持](https://github.com/itgoyo/500Days-Of-Github/issues/63)\n\n#63 opened on May 24, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Win系统安装TeamView 提示rollback framework could not be initialized](https://github.com/itgoyo/500Days-Of-Github/issues/62)\n\n#62 opened on May 23, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Android SDK platforms build-tools等镜像下载](https://github.com/itgoyo/500Days-Of-Github/issues/61)\n\n#61 opened on May 14, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[AndroidStudio配置错误不能编译解决方式](https://github.com/itgoyo/500Days-Of-Github/issues/60)\n\n#60 opened on May 14, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[测试星图](https://github.com/itgoyo/500Days-Of-Github/issues/59)\n\n#59 opened on May 10, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[黑苹果配置](https://github.com/itgoyo/500Days-Of-Github/issues/58)\n\n#58 opened on May 9, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[2017年终总结](https://github.com/itgoyo/500Days-Of-Github/issues/57)\n\n#57 opened on May 7, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Vim常用快捷键大全](https://github.com/itgoyo/500Days-Of-Github/issues/56)\n\n#56 opened on May 7, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[常用的Vim操作](https://github.com/itgoyo/500Days-Of-Github/issues/55)\n\n#55 opened on May 6, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[grub-efi-amd64-signed](https://github.com/itgoyo/500Days-Of-Github/issues/54)\n\n#54 opened on May 5, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\")\n\n[linux配置node环境变量](https://github.com/itgoyo/500Days-Of-Github/issues/53)\n\n#53 opened on May 3, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[linux how to install i3wm](https://github.com/itgoyo/500Days-Of-Github/issues/52)\n\n#52 opened on May 3, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[dotfiles使用教程](https://github.com/itgoyo/500Days-Of-Github/issues/51)\n\n#51 opened on May 3, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[cpp代码模板](https://github.com/itgoyo/500Days-Of-Github/issues/50)\n\n#50 opened on May 3, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[直播文字](https://github.com/itgoyo/500Days-Of-Github/issues/49)\n\n#49 opened on Apr 22, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[gh-md-toc](https://github.com/itgoyo/500Days-Of-Github/issues/48)\n\n#48 opened on Apr 18, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[破解百度云下载速度限制](https://github.com/itgoyo/500Days-Of-Github/issues/47)\n\n#47 opened on Apr 18, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[VSCode C](https://github.com/itgoyo/500Days-Of-Github/issues/46)\n\n#46 opened on Apr 11, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Evernote笔记排版问题用VSCode解决](https://github.com/itgoyo/500Days-Of-Github/issues/45)\n\n#45 opened on Apr 9, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Hexo卡哇伊插件hexo-helper-live2d](https://github.com/itgoyo/500Days-Of-Github/issues/44)\n\n#44 opened on Apr 4, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[wget递归下载整个网站](https://github.com/itgoyo/500Days-Of-Github/issues/43)\n\n#43 opened on Mar 28, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Hexo主题maupassant所遇到的坑](https://github.com/itgoyo/500Days-Of-Github/issues/42)\n\n#42 opened on Mar 28, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[时间管理-效率问题](https://github.com/itgoyo/500Days-Of-Github/issues/41)\n\n#41 opened on Jan 5, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[LinuxMint18使用感受](https://github.com/itgoyo/500Days-Of-Github/issues/40)\n\n#40 opened on Jan 1, 2018 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Linux安装OBS推流软件](https://github.com/itgoyo/500Days-Of-Github/issues/39)\n\n#39 opened on Dec 31, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[LinuxMint18知识汇总](https://github.com/itgoyo/500Days-Of-Github/issues/38)\n\n#38 opened on Dec 31, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Linux Mint18 安装Chrome](https://github.com/itgoyo/500Days-Of-Github/issues/37)\n\n#37 opened on Dec 29, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Kindle传输软件Calibre](https://github.com/itgoyo/500Days-Of-Github/issues/36) [Kindle](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AKindle \"Kindle\")\n\n#36 opened on Dec 28, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Linux知识笔记](https://github.com/itgoyo/500Days-Of-Github/issues/35) [Linux](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3ALinux \"Linux\")\n\n#35 opened on Dec 27, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Linux神器Albert](https://github.com/itgoyo/500Days-Of-Github/issues/34)\n\n#34 opened on Dec 27, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Ubantu的一些配置、安装软件等问题汇集此篇](https://github.com/itgoyo/500Days-Of-Github/issues/33)\n\n#33 opened on Dec 27, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Linux终端下面的音乐播放器MOC](https://github.com/itgoyo/500Days-Of-Github/issues/32) [Linux](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3ALinux \"Linux\")\n\n#32 opened on Dec 27, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Linux文件管理器ranger](https://github.com/itgoyo/500Days-Of-Github/issues/31) [Linux](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3ALinux \"Linux\")\n\n#31 opened on Dec 26, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[解决VIM中打开文件里有的^M字符 & Linux命令dos2unix](https://github.com/itgoyo/500Days-Of-Github/issues/30)\n\n#30 opened on Dec 26, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[键盘按键映射修改](https://github.com/itgoyo/500Days-Of-Github/issues/29)\n\n#29 opened on Dec 25, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n\n\n[Previous](https://github.com/itgoyo/500Days-Of-Github/issues?page=5&q=is%3Aissue+is%3Aopen)[1](https://github.com/itgoyo/500Days-Of-Github/issues?page=1&q=is%3Aissue+is%3Aopen)[2](https://github.com/itgoyo/500Days-Of-Github/issues?page=2&q=is%3Aissue+is%3Aopen)[3](https://github.com/itgoyo/500Days-Of-Github/issues?page=3&q=is%3Aissue+is%3Aopen)[4](https://github.com/itgoyo/500Days-Of-Github/issues?page=4&q=is%3Aissue+is%3Aopen)[5](https://github.com/itgoyo/500Days-Of-Github/issues?page=5&q=is%3Aissue+is%3Aopen)_6_[7](https://github.com/itgoyo/500Days-Of-Github/issues?page=7&q=is%3Aissue+is%3Aopen)[8](https://github.com/itgoyo/500Days-Of-Github/issues?page=8&q=is%3Aissue+is%3Aopen)[Next](https://github.com/itgoyo/500Days-Of-Github/issues?page=7&q=is%3Aissue+is%3Aopen)\n\n[Markdown首行缩进](https://github.com/itgoyo/500Days-Of-Github/issues/28) [Markdown](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AMarkdown \"Markdown\")\n\n#28 opened on Dec 24, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[解决Chrome字体模糊的方法](https://github.com/itgoyo/500Days-Of-Github/issues/27)\n\n#27 opened on Dec 24, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[屏幕录像软件](https://github.com/itgoyo/500Days-Of-Github/issues/26)\n\n#26 opened on Dec 16, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[如何使用手机摄像头作为电脑的摄像头](https://github.com/itgoyo/500Days-Of-Github/issues/25)\n\n#25 opened on Dec 13, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[npm更新出错的解决方法](https://github.com/itgoyo/500Days-Of-Github/issues/24)\n\n#24 opened on Nov 13, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Markdown一些常用的方法](https://github.com/itgoyo/500Days-Of-Github/issues/23) [Markdown](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AMarkdown \"Markdown\")\n\n#23 opened on Nov 7, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[iStat Menu 6.0.0激活码](https://github.com/itgoyo/500Days-Of-Github/issues/22) [Mac](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AMac \"Mac\")\n\n#22 opened on Nov 6, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Windows下面Chrome字体发虚解决方法](https://github.com/itgoyo/500Days-Of-Github/issues/21) [Google](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AGoogle \"Google\")\n\n#21 opened on Nov 5, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Putty+Xming在Windows端显示Linux图形化界面GUI](https://github.com/itgoyo/500Days-Of-Github/issues/20) [Linux](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3ALinux \"Linux\") [SSH](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3ASSH \"SSH\")\n\n#20 opened on Nov 5, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Git常用命令大全](https://github.com/itgoyo/500Days-Of-Github/issues/19) [Git](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AGit \"Git\")\n\n#19 opened on Oct 15, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[推荐一些常用的Markdown文本编辑器](https://github.com/itgoyo/500Days-Of-Github/issues/18) [Markdown](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AMarkdown \"Markdown\")\n\n#18 opened on Oct 11, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Sublite Text3怎么修改侧边栏的颜色和内容一致](https://github.com/itgoyo/500Days-Of-Github/issues/17) [Sublime Text 3](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3A%22Sublime+Text+3%22 \"Sublime Text 3\")\n\n#17 opened on Sep 3, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Ubuntu安装扁平化主题Flatabulous](https://github.com/itgoyo/500Days-Of-Github/issues/16) [Linux](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3ALinux \"Linux\") [Ubuntu](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AUbuntu \"Ubuntu\")\n\n#16 opened on Sep 3, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Android开发](https://github.com/itgoyo/500Days-Of-Github/issues/15) [Android](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AAndroid \"Android\")\n\n#15 opened on Jul 12, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[搭建Nginx+RTMP服务器](https://github.com/itgoyo/500Days-Of-Github/issues/14) [Nginx](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3ANginx \"Nginx\") [RTMP](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3ARTMP \"RTMP\")\n\n#14 opened on Jun 17, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Day13-Hexo部署到自己的域名](https://github.com/itgoyo/500Days-Of-Github/issues/13)\n\n#13 opened on Jun 13, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Day12-Wiznote](https://github.com/itgoyo/500Days-Of-Github/issues/12) [Wiznote](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AWiznote \"Wiznote\")\n\n#12 opened on Jun 8, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Day11-Atom](https://github.com/itgoyo/500Days-Of-Github/issues/11) [Atom](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AAtom \"Atom\")\n\n#11 opened on Jun 8, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Day10-Lantern](https://github.com/itgoyo/500Days-Of-Github/issues/10) [Lantern](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3ALantern \"Lantern\")\n\n#10 opened on Jun 7, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Day09-Ubuntu的安装](https://github.com/itgoyo/500Days-Of-Github/issues/9) [Linux](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3ALinux \"Linux\") [Ubuntu](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AUbuntu \"Ubuntu\")\n\n#9 opened on Jun 6, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Day08-oh my zsh](https://github.com/itgoyo/500Days-Of-Github/issues/8) [oh my zsh](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3A%22oh+my+zsh%22 \"oh my zsh\")\n\n#8 opened on Jun 6, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Day07-Mac快捷键大全](https://github.com/itgoyo/500Days-Of-Github/issues/7) [Mac](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AMac \"Mac\")\n\n#7 opened on Jun 3, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Day06-Vim的使用](https://github.com/itgoyo/500Days-Of-Github/issues/6) [Vim](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AVim \"Vim\")\n\n#6 opened on May 30, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n\n[Day05-开源协议的介绍](https://github.com/itgoyo/500Days-Of-Github/issues/5) [Open-source license](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3A%22Open-source+license%22 \"Open-source license\")\n\n#5 opened on May 30, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Day04-Kotlin学习资料](https://github.com/itgoyo/500Days-Of-Github/issues/4) [Android](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AAndroid \"Android\") [Kotlin](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AKotlin \"Kotlin\") [Kotlin-Android](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AKotlin-Android \"Kotlin-Android\")\n\n#4 opened on May 29, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\")\n[Day03-Chrome插件推荐](https://github.com/itgoyo/500Days-Of-Github/issues/3) [Chrome](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AChrome \"Chrome\") [Google](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AGoogle \"Google\") [Plug-in](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3APlug-in \"Plug-in\")\n\n#3 opened on May 29, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Day02-在Github上使用Hexo搭建个人博客](https://github.com/itgoyo/500Days-Of-Github/issues/2) [Github Pages](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3A%22Github+Pages%22 \"Github Pages\") [Hexo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AHexo \"Hexo\")\n\n#2 opened on May 28, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\") \n\n[Day01-初识Git与Github](https://github.com/itgoyo/500Days-Of-Github/issues/1) [Git](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+label%3AGit \"Git\")\n\n#1 opened on May 27, 2017 by [itgoyo](https://github.com/itgoyo/500Days-Of-Github/issues?q=is%3Aissue+is%3Aopen+author%3Aitgoyo \"Open issues created by itgoyo\")\n\n​\n"
  },
  {
    "path": "_config.yml",
    "content": "theme: jekyll-theme-tactile"
  },
  {
    "path": "index.md",
    "content": "# 500Days-Of-Github\n就像电影(500)Days of Summer一样，记录着每一天\n\n这只是个人的一些学习经验总结和感悟，可能排版会有些乱，但不影响它成为一份很好的学习材料\n\n如果你喜欢请star支持一下，谢谢，如果有什么问题想和我一起探讨，可以使用一下几种方式联系我\n\n![邮箱](/img/邮箱.png)    itgoyo@gmail.com\n\n![微博](/img/微博.png)    http://www.weibo.com/5792513777\n\n![知乎](/img/知乎.png)    https://www.zhihu.com/people/mkosto/\n\n[![GitHub stars](https://img.shields.io/github/stars/itgoyo/500Days-Of-Github.svg?style=social&label=Star)](https://github.com/itgoyo/500Days-Of-Github) [![GitHub forks](https://img.shields.io/github/forks/itgoyo/500Days-Of-Github.svg?style=social&label=Fork)](https://github.com/itgoyo/500Days-Of-Github/fork) [![GitHub watchers](https://img.shields.io/github/watchers/itgoyo/500Days-Of-Github.svg?style=social&label=Watch)](https://github.com/itgoyo/500Days-Of-Github) [![GitHub followers](https://img.shields.io/github/followers/itgoyo.svg?style=social&label=Follow)](https://github.com/itgoyo/500Days-Of-Github)\n"
  }
]