今天在liunx下要解压zip包时,发现系统里面没有装unzip包,于是就运行sudo apt-get install unzip,可是总是没办法安装,于是上网找原因,有的说源文件需要修改,于是就运行sudo vi /etc/apt/sources.list 查看源文件,并替换里面的内容,发现还是不 ...
分类:
其他好文 时间:
2017-01-19 19:36:51
阅读次数:
233
Fix Time Limit: 20000/10000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 1037 Accepted Submission(s): 349 Problem De ...
分类:
其他好文 时间:
2017-01-16 14:02:15
阅读次数:
191
$(".fix_nav span").click(function(){ //点击事件触发 $(this).addClass("cur").siblings().removeClass("cur"); var Index = $(this).index()+1; ... ...
分类:
其他好文 时间:
2017-01-07 16:12:03
阅读次数:
158
踩坑 做编辑器一些设置序列化存在本地的时候,继承自ScriptableObject的类通过 创建的asset文件. 在重启Unity后查看这个asset发现上面的所有序列化属性丢失,报的错就是 在不存在的网站找了一番之后,找到答案 需要本地序列化的ScriptableObject必须拥有自己的同名实 ...
分类:
编程语言 时间:
2017-01-06 12:33:41
阅读次数:
539
写在前面 满世界的动画性能优化技巧,例如: 只允许改变transform、opacity,其它属性不要动,避免重新计算布局(reflow) 对动画元素应用transform: translate3d(0, 0, 0)、will-change: transform等,开启硬件加速 动画元素尽量用fix ...
分类:
Web程序 时间:
2017-01-01 16:26:46
阅读次数:
242
If you've found yourself here, I'm guessing that you're getting Assembly - CSharp - Editor - first pass.dll error message and want to find an effectiv ...
分类:
其他好文 时间:
2016-12-30 01:43:56
阅读次数:
321
原文:https://www.oschina.net/code/snippet_206691_26471#44160 让支持的直接路过,不支持的,完美显示~~ /* * jQuery placeholder, fix for IE6,7,8,9 * @author JENA * @since 201 ...
分类:
其他好文 时间:
2016-12-24 20:27:42
阅读次数:
214
修复Git输入错误,挺有意思。git命令关键字如果输入错误,会提示最接近的正确关键字,如果提示内容是你想要的,输入‘fuck',就能执行了。 GitHub源码。 使用方法readme中。 ...
分类:
其他好文 时间:
2016-12-20 16:13:32
阅读次数:
179
--RemovemirroringALTERDATABASEtokenSETPARTNERoff--dropdatabaseonsecondarydropDATABASEtoken--disablejobonprimaryUSEmsdb;GOEXECdbo.sp_update_job@job_name=N‘LSBak_token‘,@enabled=0;GO--backupdatabaseonprimaryandcopytosecondaryBackupdatabasetokenTODISK=‘c:\MSSQ..
分类:
数据库 时间:
2016-12-09 20:00:58
阅读次数:
235
1、fix(x), floor(x)和ceil(x) 都是对x取整,但取整方向不同。 fix(x):向0取整(也可以理解为向中间取整) floor(x):向左取整(从名字看,地板,表示下面) ceil(x):向右取整(天花板,表示上面) 如fix(-2.7) = -2;floor(-2.7) = - ...
分类:
其他好文 时间:
2016-12-08 11:42:27
阅读次数:
162