.destination1 .current{ display:block;
animation:danru 2s linear infinite; -webkit-animation:danru 2s linear alternate
; -moz-animatio...
分类:
其他好文 时间:
2014-06-04 20:53:25
阅读次数:
332
看过jQuery源码的人都知道类数组对象,与我们熟知的arguments对象很像构造一个类数组必须有两个条件第一个条件:你必须给对象定义个splice方法,只要他是一个function就可以第二个条件:就是赋值一个length属性,或者增加push,unshift,shift,pop其中任何一个方法...
分类:
编程语言 时间:
2014-06-03 12:33:35
阅读次数:
369
1. Java代码的重构1. Java代码的重构 重构, 改善既有代码的设计 面向对象代码,
减少重复代码 Student 全部换成 Students 导入包, 就在上述Rename下选择Move进行包之间的移动 修改方法名称, 选中方法名称, 右键
上述操作中选择Pull up/Push do.....
分类:
系统相关 时间:
2014-05-31 17:07:23
阅读次数:
399
对于Git,已经跟踪的文件,再加入到.gitignore中,会使忽略失效。使用下面3个命令使它重新生效git rm -r --cached .git add
.git commit -m ".gitignore is now working." 完成之后push到你的代码库即可。
分类:
其他好文 时间:
2014-05-30 11:43:21
阅读次数:
318
UINavigationController与UITabBarController相关问题UINavigationController与UITabBarController混用是非常常见的,有时候会遇到UINavigationController推出(push)出controller后隐藏UITab...
分类:
其他好文 时间:
2014-05-30 07:16:51
阅读次数:
213
1、报错信息:Counting objects: 3, done.Writing objects:
100% (3/3), 205 bytes | 0 bytes/s, done.Total 3 (delta 0), reused 0 (delta
0)remote: /opt/gitlab-6.9...
分类:
其他好文 时间:
2014-05-30 04:03:34
阅读次数:
289
My original thought was to calculate all the
possible transactions by using nested loop. But got time limit excess error.I
knew it can be done in O(n)...
分类:
其他好文 时间:
2014-05-29 20:44:37
阅读次数:
271
PUSH是互联网上内容提供者和内容定制方之间的一种通信机制,利用在服务器端的程序把数据源源不断地推向客户端,大大提高客户机和服务器之间的交互性能。
分类:
其他好文 时间:
2014-05-29 14:06:44
阅读次数:
248
目录一、Git安装安装Git客户端在OSChina创建项目Git
Gui简单使用(项目的clone、commit、pull、push)二、Eclipse中Git的使用三、Pull Request使用 (代码审核)一、Git安装
1、安装Git客户端 Git gui下载地址:msysgit,这...
分类:
其他好文 时间:
2014-05-29 04:15:12
阅读次数:
509
今天发现一小技巧,关于如何把Eclipse的某一个Existing project push
到github服务器。Eclipse 应该是 JavaEE 版本。在project 右键 team, git 什么的commit一下。目的是生成 local
repository。然后去打开windows版...