git push -u origin master 时候报错 src refspec master does not match any. 因为Git@OSC上面没有版本分支master,首先要去到目标目录,随便git add一个文件,然后git commit -m "msg"。提交到了( 在commit之前...
分类:
其他好文 时间:
2015-05-14 01:04:19
阅读次数:
127
问题描述在使用Android studio引入第三方jar包,打包时出错
Error:duplicate files during packaging of APK F:\Travel\app\build\outputs\apk\app-debug-unaligned.apk
Path in archive: META-INF/NOTICE.txt
Origin 1: F:\...
分类:
其他好文 时间:
2015-05-12 23:11:58
阅读次数:
237
ScrollView三个基本的要理解的属性;contentSizeThe size of the content view.所以很好理解,contentSize也就是scrollView可滚动的区域.contentOffsetThe point at which the origin of the ...
分类:
移动开发 时间:
2015-05-12 18:38:54
阅读次数:
105
参考https://www.tadywalsh.com/web/cascading-solar-system/首先 旋转有两种方式 一种是使用 transform-origin 另一种是transform: rotate(..) translateY();用这个来理解transfrom-origin...
分类:
Web程序 时间:
2015-05-12 15:01:31
阅读次数:
170
在iOS中,我们是不可以直接访问控件中frame的结构体的成员的,因此我们需要分三步来改变一个UI控件的位置,大小一.frame用法 frame的结构体类型为: struct CGRect { CGPoint origin; CGSize size; }; 定义中间变量接收,然后赋...
分类:
其他好文 时间:
2015-05-12 01:32:35
阅读次数:
147
transform-origin接受两个参数,它们可以是百分比,em,px等具体的值,也可以是left,center,right,或者 top,center,bottom等描述性参数,第一个参数表示X方向,第二个参数表示Y方向,但是,当用 left,right,center 来表示的时候,是不区分先...
分类:
其他好文 时间:
2015-05-11 19:57:24
阅读次数:
177
浅谈 XSS & CSRF客户端(浏览器)安全同源策略(Same Origin Policy)同源策略阻止从一个源加载的文档或脚本获取或设置另一个源加载的文档的属性。如:不能通过Ajax获取另一个源的数据;JavaScript不能访问页面中iframe加载的跨域资源。对 http://store.c...
分类:
其他好文 时间:
2015-05-08 19:56:26
阅读次数:
113
Uncaught SecurityError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': The canvas has been tainted by cross-origin data.
最近在自学html5 CSS3很推荐李刚的 这个书,今天在家里测试发现 canvas中的getImageData报错
...
分类:
其他好文 时间:
2015-05-04 22:10:40
阅读次数:
146
有时候开发了很多的特性,开了很多的分支,时间长了分支就多了,想要把不用的分支删除,怎么办呢?
#查看本地都有哪些分支
git branch
#查看所有的分支,包括远程的
git branch -a
#删除本地的某个分支
git branch -D hongchangfirst
#删除远程的分支
git branch -r -d origin/hongchan...
分类:
其他好文 时间:
2015-05-04 20:17:30
阅读次数:
136
zhc@hongchangfirst$ git checkout -b hongchangfirst origin/hongchangfirst
出现:
fatal: Cannot update paths and switch to branch 'hongchangfirst' at the same time.
Did you intend to checkout 'hongcha...
分类:
其他好文 时间:
2015-05-04 20:17:08
阅读次数:
137