敲键盘上方向向上的键,就会出现下面的情况,点窗口上的错号,窗口就会消失...
分类:
其他好文 时间:
2014-12-08 23:02:47
阅读次数:
250
cd /path/to/my/repo (sourcetree 创建的文件夹)
git remote add origin https://......
git remote set-url origin
https://.....
git push -u origin --all # pushes up the repo and its refs for the first time
...
分类:
其他好文 时间:
2014-12-08 17:53:44
阅读次数:
135
【题目】
Follow up for "Unique Paths":
Now consider if some obstacles are added to the grids. How many unique paths would there be?
An obstacle and empty space is marked as 1 and 0 respectively...
分类:
其他好文 时间:
2014-12-08 17:47:15
阅读次数:
167
Search in Rotated Sorted Array IIFollow up for "Search in Rotated Sorted Array":What ifduplicatesare allowed?Would this affect the run-time complexity...
分类:
其他好文 时间:
2014-12-08 17:23:29
阅读次数:
144
CentOS yum安装mcrypt本篇排错的前提是只想用yum安装,不想使用源码包编译安装。php依赖一下包:#yum install libmcrypt libmcrypt-devel mcrypt mhashSetting up Install ProcessNo package php-mc...
分类:
其他好文 时间:
2014-12-08 15:08:59
阅读次数:
205
HTML(HyperText Mark-up Language)是一种表示页面内容及样式的语言,它是事实上的web展示标准,被所有浏览器支持,也是它让你的页面可移植的出现在不同的系统和平台之上。
HTML结构
如下一段最简单的HTML代码:
HTML页面
应用记事本编写HT...
分类:
Web程序 时间:
2014-12-07 23:15:35
阅读次数:
653
Search in Rotated Sorted Array IIFollow up for "Search in Rotated Sorted Array":What ifduplicatesare allowed?Would this affect the run-time complexity...
分类:
其他好文 时间:
2014-12-06 19:32:52
阅读次数:
173
uptime可以显示出top画面的最上面一行![root@linux ~]# uptime18:06:30 up 52 days, 6:40, 1 user, load average: 0.00, 0.00, 0.00上面表示,目前是18:06 ,本系统已经开机52天又6:40 ,有1个使用者在在...
分类:
其他好文 时间:
2014-12-06 12:40:42
阅读次数:
147
Gitlab服务器环境是CentOS7+Gitlab7.2.1,最近发现在开发机上使用git pull更新文件时,会报如下错误。
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: unpack-objects failed
Google了半天也没找到个好办法,最后还是查错误日志定位到了问题...
分类:
其他好文 时间:
2014-12-06 10:08:01
阅读次数:
527
Follow up for problem "Populating Next Right Pointers in Each Node".
What if the given tree could be any binary tree? Would your previous solution still work?
Note:
You may only use constant extra ...
分类:
其他好文 时间:
2014-12-05 22:48:46
阅读次数:
139