Repository: itgoyo/500Days-Of-Github
Branch: master
Commit: d9d501c4aa89
Files: 4
Total size: 53.2 KB
Directory structure:
gitextract_xlmmndr0/
├── Day01.md
├── README.md
├── _config.yml
└── index.md
================================================
FILE CONTENTS
================================================
================================================
FILE: Day01.md
================================================
# Day01-初识Git和Github
tag : git
date : 2017-5-27
auther : itgoyo
---
## Git
说到Git你或许不是了解,但是Linux系统你一定听过,Git就是Linux系统创始人林纳斯·托瓦兹一手创造出来的,奠定了他在编程界大神的地位。
#### Git的诞生
这是一个传奇故事,时间定格到2005年,当时linux再使用一个叫做BitKeeper的版本控制工具,BitKeeper开发商在这一年决定不再免费提供给linux社区使用,linus当即伸出了中指,于是两周后Git诞生了,一个月之内Linux的源码已经由Git托管。

#### Git的优点
git是国外开源版本库,不需要自己搭建服务器,你在上面搭建上传的工程代码都是公开的,谁都可以访问,可以设置团队成员分配修改的权限。如果要像SVN一样指定的人可以访问Git就需要收费了,SVN需要你有一台服务器,上面安装SVN Server实现版本控制
* 快速
如果你每移动一下鼠标都要等待五秒,是不是很受不了?版本控制也是一样的,每一个命令多那么几秒钟,一天下来也会浪费你不少时间。Git的操作非常快速,你可以把时间用在别的更有意义的地方。
* 离线工作
在没有网络的情况下如何工作?如果你用SVN或者CVS的话就很麻烦。而Git可以让你在本地做所有操作,提交代码,查看历史,合并,创建分支等等。
* 回退
人难免犯错。我很喜欢Git的一点就是你可以“undo”几乎所有的命令。你可以用这个功能来修正你刚刚提交的代码中的一个问题或者回滚整个代码提交操作。你甚至可以恢复一个被删除的提交,因为在后端,Git几乎不做任何删除操作。
* 省心
你有没有丢失过版本库?我有,而那种头疼的感觉现在还记忆犹新。而用Git的话,我就不必担心这个问题,因为任何一个人机器上的版本都是一个完整的备份。
* 选择有用的代码提交
当你把纽带,冰块还有西红柿一起扔进搅拌机的时候至少有两个问题。第一,搅拌过后,没有人知道之前扔进去了些什么东西。第二,你不能回退,重新把西红柿拿出来。同样的,当你提交了一堆无关的更改,例如功能A加强,新增功能B,功能C修复,想要理清这一堆代码到底干了什么是很困难的。当然,当发现功能A出问题的时候,你无法单独回滚功能A。Git可以通过创建“颗粒提交”,帮你解决这个问题。“staging area”的概念可以让你决定到底那些东西需要提交,或者更新,精确到行。
* 自由选择工作方式
使用Git,你可以同时和多个远程代码库连接,“rebase”而不是"merge"甚至只连接某个模块。但是你也可以选择一个中央版本库,就像SVN那样。你依然可以利用Git的其他优点。
* 保持工作独立
把不同的问题分开处理将有助于跟踪问题的进度。当你在为功能A工作的时候,其他人不应该被你还没有完成的代码所影响。分支是解决这个问题的办法。虽然其他的版本控制软件业有分支系统,但是Git是第一个把这个系统变得简单而快速的系统。
* 随大流
虽然只有死于才随着波浪前进,但是很多时候聪明的程序员也是随大流的。越来越多的公司,开源项目使用Git,包括Ruby On Rails,jQuery,Perl,Debian,Linux Kernel等等。拥有一个强大的社区是很大的优势,有很多教程、工具。随着开源的热潮越来越汹涌,使得类似于Github这样子的开源网站,受到更多更多程序员的喜爱与青睐,Git是时代选择的必然结果。
## Github
GitHub 是一个面向开源及私有软件项目的托管平台,因为只支持 Git 作为唯一的版本库格式进行托管,故名 GitHub。GitHub 于 2008 年 4 月 10 日正式上线,除了 Git 代码仓库托管及基本的 Web 管理界面以外,还提供了订阅、讨论组、文本渲染、在线文件编辑器、协作图谱(报表)、代码片段分享(Gist)等功能。目前,其注册用户已经超过350万,托管版本数量也是非常之多,其中不乏知名开源项目 Ruby on Rails、jQuery、python 等。
#### Github趣事
2013年1月15日晚间,全球最大的社交编程及代码托管网站GitHub突然疑似遭遇DDOS攻击,访问大幅放缓,该网站管理员经过日志查询,发现是来自12306的抢票插件用户洪水般的访问导致GitHub出现问题。该事件加上当初知乎吵架事件,使得Github在国内的发展像炸开的锅一样,拦都拦不住。
## Git的安装
- Window
下载Git
[https://git-scm.com/downloads](https://git-scm.com/downloads)
配置ssh key
```Java
ssh-keygen -t rsa -C "yourid@xxmail.com"
```

然后连续按回车键3次

出现以上图片说明已经在本地创建好ssh key了
路径在C:\Users\admin\.ssh

然后使用文本编辑器打开id_rsa.pub,然后把里边的内容完全复制
然后登陆[Github官网](https://github.com)
[https://github.com](https://github.com)
点击设置选项

然后把刚刚复制的ssh key复制进去

完成了以上步骤检测一下是否已经成功链接上Github
```
$ ssh -T git@github.com
```
```
admin@iTgoyo-PC MINGW32 ~/Desktop
$ ssh -T git@github.com
The authenticity of host 'github.com (192.30.255.112)' can't be established.
RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
Are you sure you want to continue connecting (yes/no)?
```
输入yes

出现上面信息即本地连接Github已经成功
- Mac OS
基本和上面没差
打开终端,输入
```
cd ~/.ssh
```
```
如果存在,先将已有的ssh备份,或者将新建的ssh生成到另外的目录下
如果不存在,通过默认的参数直接生成ssh:
ssh-keygen -t rsa -C xxxxx@gmail.com(注册github时的email)
(输入完成后,按enter健即可,命令行会自动提示下面这一行👇,接下来的命令行一路按enter健即可)
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/twer/.ssh/id_rsa):
Created directory '/Users/twer/.ssh'.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /Users/twer/.ssh/id_rsa.
Your public key has been saved in /Users/twer/.ssh/id_rsa.pub.
The key fingerprint is:
18:16:11:c9:01:6c:48:09:7f:27:66:43:0d:7f:3f:84 xxxxx@gmail.com
The key's randomart image is:
+--[ RSA 2048]----+
|.o.++=== |
|.ooo.+. . |
| ..* = E . |
| o = + o |
| . S o |
| . |
| |
| |
| |
+-----------------+
```
此时会在你的电脑里生成一个.ssh的文件,里面有你的ssh key的信息,如果需要复制这个信息,可以在命令行里输入 pbcopy < ~/.ssh/id_rsa.pub,这个是复制的命令,然后打开一个文本文件,粘贴即可
过程参考Windows
#### 对于Github的初学者的建议
推荐两本Github入门
[GitHub入门与实践](https://github.com/itgoyo/500Days-Of-Github/PDF/GitHub入门与实践.pdf)
[github-beginners](https://github.com/itgoyo/500Days-Of-Github/PDF/github-beginners 1.0.pdf)
自我感觉刚入门Github的时候没必要逼着自已一定要使用命令行敲完代码,然后创建仓库,提交信息,上传代码。
因为图形化界面的Git工具很多
个人推荐官方的[Github For Desktop](https://desktop.github.com/)
当然也有其他童鞋觉得[SourceTree](https://www.sourcetreeapp.com/)也是不错的选择,看自己爱好吧,工具而已,自己喜欢就好。
有童鞋反馈说Github For Desktop安装比较慢的问题,可以使用[Lantern](https://github.com/getlantern/forum)翻墙,如果你觉得速度不错,想办理会员版的话可以使用我的推荐码**2CR4W2**进行购买专业版,这样子我们都彼此会多获得三个月的会员时间
#### 提交代码到Github仓库
- 先在Github官网上创建自己的仓库


以下我拿桌面版的Github来进行演示

即可下载到本地

即可打开到本地Github项目的仓库
我们随意改变一下工程的内容,例如以下,我新增了一个txt文本文件
再点开客户端

此时客户端已经检测到内容的改变,当你想把本地的资源提交到远程的仓库时

同步完成了之后你就会发现Github仓库上面已经有你刚刚提交的信息了

谢谢你的浏览,如果你觉得这篇文章对你有帮助或者想收藏的话,不妨点一点上面的star或者watch。
如果文中有什么错误或者似乎错别字的话,也可以指出来,届时会修改好,再重新发布一次,如果你有什么好的建议和想法的话,欢迎邮件联系我。
E-mail:itgoyo@gmail.com
================================================
FILE: README.md
================================================
# 500Days-Of-Github
就像电影(500)Days of Summer一样,记录着每一天
# 所有内容都在Issue里面
这只是个人的一些学习经验总结和感悟,可能排版会有些乱,但不影响它成为一份很好的学习材料
如果你喜欢请star支持一下,谢谢,如果有什么问题想和我一起探讨,可以使用下面几种方式联系我
 itgoyo@gmail.com
 http://www.weibo.com/5792513777
 https://www.zhihu.com/people/mkosto/
[](https://github.com/itgoyo/500Days-Of-Github) [](https://github.com/itgoyo/500Days-Of-Github/fork) [](https://github.com/itgoyo/500Days-Of-Github) [](https://github.com/itgoyo/500Days-Of-Github)
目录
---
[nginx搭建本地流媒体服务器](https://github.com/itgoyo/500Days-Of-Github/issues/179)
#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")
[VScode打开终端 iterm2乱码的解决](https://github.com/itgoyo/500Days-Of-Github/issues/178)
#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")
[Mac Disable Shift Cmd Q for logout](https://github.com/itgoyo/500Days-Of-Github/issues/177)
#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")
[使用nodeclub 搭建一个开源社区](https://github.com/itgoyo/500Days-Of-Github/issues/176)
#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")
[linux 安装 neofetch](https://github.com/itgoyo/500Days-Of-Github/issues/175)
#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")
[今年花钱买的最值的东西](https://github.com/itgoyo/500Days-Of-Github/issues/174)
#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")
[怎么样用 TeamViewer 和 VNC 从远程控制电脑](https://github.com/itgoyo/500Days-Of-Github/issues/173)
#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")
[Mongodb启动报错MongoDB:shutting down with code:100](https://github.com/itgoyo/500Days-Of-Github/issues/172)
#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")
[Mac SoundFlower OBS配置教程](https://github.com/itgoyo/500Days-Of-Github/issues/171)
#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")
[linux安装vncserver](https://github.com/itgoyo/500Days-Of-Github/issues/170)
#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")
[如何快速创建接口测试数据](https://github.com/itgoyo/500Days-Of-Github/issues/169)
#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")
[Hexo使用Valine评论系统并且使用邮件通知有新评论](https://github.com/itgoyo/500Days-Of-Github/issues/168)
#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")
[Mac没有权限](https://github.com/itgoyo/500Days-Of-Github/issues/167)
#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")
[Mac install rails](https://github.com/itgoyo/500Days-Of-Github/issues/166)
#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")
[linux install Apache](https://github.com/itgoyo/500Days-Of-Github/issues/165)
#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")
[linux终端如何走SSR代理](https://github.com/itgoyo/500Days-Of-Github/issues/164)
#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")
[在线可运行代码的文档编辑器jupyter](https://github.com/itgoyo/500Days-Of-Github/issues/163)
#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")
[linux安装缺少的依赖包](https://github.com/itgoyo/500Days-Of-Github/issues/162)
#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")
[linux录屏软件SimpleScreenRecorder](https://github.com/itgoyo/500Days-Of-Github/issues/161)
#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")
[SSR客户端的安装与使用](https://github.com/itgoyo/500Days-Of-Github/issues/160)
#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")
[如何创建免费的 SSR 账号,每月15G,到期后换邮箱即可继续使用](https://github.com/itgoyo/500Days-Of-Github/issues/159)
#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")
[Mac 安装 nginx](https://github.com/itgoyo/500Days-Of-Github/issues/158)
#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")
[Mac如何删除自带输入法只保留第三方输入法](https://github.com/itgoyo/500Days-Of-Github/issues/157)
#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")
[Vim 简单入门](https://github.com/itgoyo/500Days-Of-Github/issues/156)
#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")
[ZSH运行错误](https://github.com/itgoyo/500Days-Of-Github/issues/155)
[记录一次电脑莫名其妙的问题](https://github.com/itgoyo/500Days-Of-Github/issues/154)
#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")
[node提示没有权限如果使用终端命令不能解决的话](https://github.com/itgoyo/500Days-Of-Github/issues/153)
#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")
[前端移动端适配代码](https://github.com/itgoyo/500Days-Of-Github/issues/152)
#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")
[Vue修改 IP 地址访问](https://github.com/itgoyo/500Days-Of-Github/issues/151)
#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")
[印象笔记+Hexo=Everblog](https://github.com/itgoyo/500Days-Of-Github/issues/150)
#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")
[Vim安装YouCompleteMe之后insert切换回normal延迟卡顿的问题](https://github.com/itgoyo/500Days-Of-Github/issues/149)
#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")
[VScode打开RecentFiles功能](https://github.com/itgoyo/500Days-Of-Github/issues/148)
#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")
[VScode使用Easy Motion功能](https://github.com/itgoyo/500Days-Of-Github/issues/147)
#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")
[Vim常用键位说明](https://github.com/itgoyo/500Days-Of-Github/issues/146)
#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")
[Vim如何修改insert和nomal光标样式](https://github.com/itgoyo/500Days-Of-Github/issues/145)
#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")
[Vim如何自定义快捷键](https://github.com/itgoyo/500Days-Of-Github/issues/144)
#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")
[如何使得MacVim成为默认的Vim客户端](https://github.com/itgoyo/500Days-Of-Github/issues/143)
#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")
[iterm下面使用zsh-autosuggestions显示不清楚的解决方式](https://github.com/itgoyo/500Days-Of-Github/issues/142)
#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")
[记一次Hexo博客的莫名其妙错误](https://github.com/itgoyo/500Days-Of-Github/issues/141)
#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")
[vim安装Markdown预览插件markdown-preview.vim](https://github.com/itgoyo/500Days-Of-Github/issues/140)
#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")
[Ubuntu安装思源字体](https://github.com/itgoyo/500Days-Of-Github/issues/139)
#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")
[node提示没有权限](https://github.com/itgoyo/500Days-Of-Github/issues/138)
#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")
[VSCode键盘Vim键位设置](https://github.com/itgoyo/500Days-Of-Github/issues/137)
#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")
[Git commit插件](https://github.com/itgoyo/500Days-Of-Github/issues/136)
#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")
[nodejs每次npm都出现需要权限问题的修复](https://github.com/itgoyo/500Days-Of-Github/issues/135)
#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")
[如何多台主机共用一套鼠键](https://github.com/itgoyo/500Days-Of-Github/issues/134)
#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")
[youtube-dl+ffmpeg推流直播](https://github.com/itgoyo/500Days-Of-Github/issues/133)
#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")
[ubuntu系统Chrome不能使用离线的插件文件](https://github.com/itgoyo/500Days-Of-Github/issues/132)
#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")
[No package 'xcb-xrm' found](https://github.com/itgoyo/500Days-Of-Github/issues/131)
#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")
[linux如何使用命令更新某一个软件](https://github.com/itgoyo/500Days-Of-Github/issues/130)
#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")
[OBS如何推流2台电脑的屏幕](https://github.com/itgoyo/500Days-Of-Github/issues/129)
#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")
[使用命令查看电脑开机多久](https://github.com/itgoyo/500Days-Of-Github/issues/128)
#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")
[v2ex使用新浪图床](https://github.com/itgoyo/500Days-Of-Github/issues/127)
#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")
[西部数码的域名映射到自己的网站](https://github.com/itgoyo/500Days-Of-Github/issues/126)
#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")
[苹果电脑可以不用去除密码设置自动登录](https://github.com/itgoyo/500Days-Of-Github/issues/125)
#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")
[黑苹果设置Mac为默认启动项,而不用每次都用手去点击选择](https://github.com/itgoyo/500Days-Of-Github/issues/124)
#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")
[如何把电脑变成服务器然后使用远程登录](https://github.com/itgoyo/500Days-Of-Github/issues/123)
#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")
[Mac 关闭 Adobe Creative Cloud](https://github.com/itgoyo/500Days-Of-Github/issues/122)
#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")
[Github查看history黑科技用法](https://github.com/itgoyo/500Days-Of-Github/issues/121)
#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")
[Telegram安装教程](https://github.com/itgoyo/500Days-Of-Github/issues/120)
#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")
[fzf使用教程](https://github.com/itgoyo/500Days-Of-Github/issues/119)
#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")
[spacemacs使用教程](https://github.com/itgoyo/500Days-Of-Github/issues/118)
#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")
[知乎alfred_workflow](https://github.com/itgoyo/500Days-Of-Github/issues/117)
#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")
[抖音下载](https://github.com/itgoyo/500Days-Of-Github/issues/116)
#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")
[Baidu-Go 403用户被禁止解决方式](https://github.com/itgoyo/500Days-Of-Github/issues/115)
#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")
[Docker相关](https://github.com/itgoyo/500Days-Of-Github/issues/114)
#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")
[数据库相关](https://github.com/itgoyo/500Days-Of-Github/issues/113)
#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")
[键位可视化软件](https://github.com/itgoyo/500Days-Of-Github/issues/112)
#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")
[Mac配置Java与Maven环境变量](https://github.com/itgoyo/500Days-Of-Github/issues/111)
#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")
[Vim代码注释框架NERDCOMMENTER](https://github.com/itgoyo/500Days-Of-Github/issues/109)
#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")
[Alfred Snippets自定义输出文字](https://github.com/itgoyo/500Days-Of-Github/issues/108)
#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")
[Linux 通过snap下载安装软件,用法和apt差不多](https://github.com/itgoyo/500Days-Of-Github/issues/107)
#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")
[Mac三指移动窗口](https://github.com/itgoyo/500Days-Of-Github/issues/106)
#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")
[i3wm锁屏软件](https://github.com/itgoyo/500Days-Of-Github/issues/105)
#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")
[一个使用Github作为图床的小工具gitPic](https://github.com/itgoyo/500Days-Of-Github/issues/104)
#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")
[终端目录跳转软件autojump和z](https://github.com/itgoyo/500Days-Of-Github/issues/103)
#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")
[终端目录跳转软件auto](https://github.com/itgoyo/500Days-Of-Github/issues/102)
#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")
[Mac os下快速从终端进入Finder & 从Finder进入终端](https://github.com/itgoyo/500Days-Of-Github/issues/101)
#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")
[Linux设置取消代理](https://github.com/itgoyo/500Days-Of-Github/issues/100)
#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")
[Ubuntu install problems](https://github.com/itgoyo/500Days-Of-Github/issues/99)
#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")
[VSCode-七牛云插件](https://github.com/itgoyo/500Days-Of-Github/issues/98)
#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")
[Vim如何指定新文件的默认存储地址](https://github.com/itgoyo/500Days-Of-Github/issues/97)
#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")
[关于2K显示器在Mac OS下面字体显示发虚的解决方式](https://github.com/itgoyo/500Days-Of-Github/issues/96)
#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")
[百度地图error code 162,坐标为[0.0,0.0]或者[4.9E-324,4.9E-324]](https://github.com/itgoyo/500Days-Of-Github/issues/95)
#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")
[re-download dependencies and sync](https://github.com/itgoyo/500Days-Of-Github/issues/94)
#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")
[sudo apt-get install rxvt-unicode](https://github.com/itgoyo/500Days-Of-Github/issues/93)
#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")
[Chrome临时访问方式](https://github.com/itgoyo/500Days-Of-Github/issues/92)
#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")
[The following packages have unmet dependencies](https://github.com/itgoyo/500Days-Of-Github/issues/91)
#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")
[Linux安装i3wm平铺式窗口桌面](https://github.com/itgoyo/500Days-Of-Github/issues/90)
#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")
[~/.bashrc、~/.xinitrc或~/.xprofile区别](https://github.com/itgoyo/500Days-Of-Github/issues/89)
#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")
[AndroidStudio不能查看崩溃日志](https://github.com/itgoyo/500Days-Of-Github/issues/88)
#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")
[Markdown显示样式](https://github.com/itgoyo/500Days-Of-Github/issues/87)
#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")
[Surfingkeys自定义快捷键](https://github.com/itgoyo/500Days-Of-Github/issues/86)
#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")
[Linux install Chrome](https://github.com/itgoyo/500Days-Of-Github/issues/85)
#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")
[Linux Mint install i3-wm](https://github.com/itgoyo/500Days-Of-Github/issues/84)
#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")
[idea-vim快捷键大全](https://github.com/itgoyo/500Days-Of-Github/issues/83)
#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")
[linux backup restore](https://github.com/itgoyo/500Days-Of-Github/issues/82)
#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")
[commands push project to github](https://github.com/itgoyo/500Days-Of-Github/issues/81)
#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")
[windows电脑莫名的卡顿](https://github.com/itgoyo/500Days-Of-Github/issues/80)
#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")
[Git忽略规则和.gitignore规则不生效的解决办法](https://github.com/itgoyo/500Days-Of-Github/issues/79)
#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")
[Tmux终端工具的使用](https://github.com/itgoyo/500Days-Of-Github/issues/78)
#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")
[Sublime Text3怎么修改侧边栏颜色](https://github.com/itgoyo/500Days-Of-Github/issues/77)
#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")
[Mac电脑右上角图标有时候显示有时候消失的原因](https://github.com/itgoyo/500Days-Of-Github/issues/76)
#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")
[苹果外接2K显示器字体发虚的解决方式](https://github.com/itgoyo/500Days-Of-Github/issues/75)
#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")
[Mac Markdown软件推荐](https://github.com/itgoyo/500Days-Of-Github/issues/74)
#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")
[不翻墙提高Github的下载还有push速度](https://github.com/itgoyo/500Days-Of-Github/issues/73)
#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")
[Mac安装homebrew](https://github.com/itgoyo/500Days-Of-Github/issues/72)
#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")
[Webdriver下载地址](https://github.com/itgoyo/500Days-Of-Github/issues/71)
#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")
[四叶草引导EFI系统](https://github.com/itgoyo/500Days-Of-Github/issues/70)
#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")
[四叶草下载](https://github.com/itgoyo/500Days-Of-Github/issues/69)
#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")
[dyld: Library not loaded: /usr/local/opt/gdbm/lib/libgdbm.4.dylib](https://github.com/itgoyo/500Days-Of-Github/issues/68)
#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")
[VIm升级到8.1版本之后每次打开都有错误提示](https://github.com/itgoyo/500Days-Of-Github/issues/67)
#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")
[微信自动回复消息](https://github.com/itgoyo/500Days-Of-Github/issues/66)
#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")
[Mac Chrome加载网站很慢的问题](https://github.com/itgoyo/500Days-Of-Github/issues/65)
#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")
[Win7 Office OneNote2016一直无法登陆的问题](https://github.com/itgoyo/500Days-Of-Github/issues/64)
#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")
[win重装系统之后Chrome主页被劫持](https://github.com/itgoyo/500Days-Of-Github/issues/63)
#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")
[Win系统安装TeamView 提示rollback framework could not be initialized](https://github.com/itgoyo/500Days-Of-Github/issues/62)
#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")
[Android SDK platforms build-tools等镜像下载](https://github.com/itgoyo/500Days-Of-Github/issues/61)
#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")
[AndroidStudio配置错误不能编译解决方式](https://github.com/itgoyo/500Days-Of-Github/issues/60)
#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")
[测试星图](https://github.com/itgoyo/500Days-Of-Github/issues/59)
#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")
[黑苹果配置](https://github.com/itgoyo/500Days-Of-Github/issues/58)
#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")
[2017年终总结](https://github.com/itgoyo/500Days-Of-Github/issues/57)
#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")
[Vim常用快捷键大全](https://github.com/itgoyo/500Days-Of-Github/issues/56)
#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")
[常用的Vim操作](https://github.com/itgoyo/500Days-Of-Github/issues/55)
#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")
[grub-efi-amd64-signed](https://github.com/itgoyo/500Days-Of-Github/issues/54)
#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")
[linux配置node环境变量](https://github.com/itgoyo/500Days-Of-Github/issues/53)
#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")
[linux how to install i3wm](https://github.com/itgoyo/500Days-Of-Github/issues/52)
#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")
[dotfiles使用教程](https://github.com/itgoyo/500Days-Of-Github/issues/51)
#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")
[cpp代码模板](https://github.com/itgoyo/500Days-Of-Github/issues/50)
#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")
[直播文字](https://github.com/itgoyo/500Days-Of-Github/issues/49)
#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")
[gh-md-toc](https://github.com/itgoyo/500Days-Of-Github/issues/48)
#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")
[破解百度云下载速度限制](https://github.com/itgoyo/500Days-Of-Github/issues/47)
#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")
[VSCode C](https://github.com/itgoyo/500Days-Of-Github/issues/46)
#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")
[Evernote笔记排版问题用VSCode解决](https://github.com/itgoyo/500Days-Of-Github/issues/45)
#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")
[Hexo卡哇伊插件hexo-helper-live2d](https://github.com/itgoyo/500Days-Of-Github/issues/44)
#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")
[wget递归下载整个网站](https://github.com/itgoyo/500Days-Of-Github/issues/43)
#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")
[Hexo主题maupassant所遇到的坑](https://github.com/itgoyo/500Days-Of-Github/issues/42)
#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")
[时间管理-效率问题](https://github.com/itgoyo/500Days-Of-Github/issues/41)
#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")
[LinuxMint18使用感受](https://github.com/itgoyo/500Days-Of-Github/issues/40)
#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")
[Linux安装OBS推流软件](https://github.com/itgoyo/500Days-Of-Github/issues/39)
#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")
[LinuxMint18知识汇总](https://github.com/itgoyo/500Days-Of-Github/issues/38)
#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")
[Linux Mint18 安装Chrome](https://github.com/itgoyo/500Days-Of-Github/issues/37)
#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")
[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")
#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")
[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")
#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")
[Linux神器Albert](https://github.com/itgoyo/500Days-Of-Github/issues/34)
#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")
[Ubantu的一些配置、安装软件等问题汇集此篇](https://github.com/itgoyo/500Days-Of-Github/issues/33)
#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")
[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")
#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")
[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")
#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")
[解决VIM中打开文件里有的^M字符 & Linux命令dos2unix](https://github.com/itgoyo/500Days-Of-Github/issues/30)
#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")
[键盘按键映射修改](https://github.com/itgoyo/500Days-Of-Github/issues/29)
#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")
[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)
[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")
#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")
[解决Chrome字体模糊的方法](https://github.com/itgoyo/500Days-Of-Github/issues/27)
#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")
[屏幕录像软件](https://github.com/itgoyo/500Days-Of-Github/issues/26)
#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")
[如何使用手机摄像头作为电脑的摄像头](https://github.com/itgoyo/500Days-Of-Github/issues/25)
#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")
[npm更新出错的解决方法](https://github.com/itgoyo/500Days-Of-Github/issues/24)
#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")
[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")
#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")
[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")
#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")
[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")
#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")
[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")
#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")
[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")
#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")
[推荐一些常用的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")
#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")
[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")
#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")
[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")
#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")
[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")
#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")
[搭建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")
#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")
[Day13-Hexo部署到自己的域名](https://github.com/itgoyo/500Days-Of-Github/issues/13)
#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")
[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")
#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")
[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")
#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")
[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")
#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")
[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")
#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")
[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")
#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")
[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")
#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")
[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")
#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")
[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")
#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")
[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")
#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")
[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")
#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")
[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")
#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")
[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")
#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")
================================================
FILE: _config.yml
================================================
theme: jekyll-theme-tactile
================================================
FILE: index.md
================================================
# 500Days-Of-Github
就像电影(500)Days of Summer一样,记录着每一天
这只是个人的一些学习经验总结和感悟,可能排版会有些乱,但不影响它成为一份很好的学习材料
如果你喜欢请star支持一下,谢谢,如果有什么问题想和我一起探讨,可以使用一下几种方式联系我
 itgoyo@gmail.com
 http://www.weibo.com/5792513777
 https://www.zhihu.com/people/mkosto/
[](https://github.com/itgoyo/500Days-Of-Github) [](https://github.com/itgoyo/500Days-Of-Github/fork) [](https://github.com/itgoyo/500Days-Of-Github) [](https://github.com/itgoyo/500Days-Of-Github)