这篇文章译自 Christopher LaPollo 先生的 Unity 4.3 2D 教程的第一部分 Unity 4.3 2D Tutorial: Getting Started 感谢这套优秀教程的作者@Chris!译者水平有限,翻译不准确的地方请参考原文,文中所有Unity的关键字都没有翻译。 ...
分类:
其他好文 时间:
2014-07-27 09:54:42
阅读次数:
474
创建热部署模块参考文档 https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+Tutorial+-+A+Beginners+Development+Guide1 在目录hot-deploy下创建目录practice(即为要创建的模块名称)2 ...
分类:
其他好文 时间:
2014-07-25 19:01:52
阅读次数:
345
ubuntu14 手动安装sbt 参见官网配置说明http://www.scala-sbt.org/release/tutorial/Manual-Installation.html 1、下载sbt通用平台压缩包:sbt-0.13.5.tgzhttp://www.scala-sbt.org/down...
分类:
系统相关 时间:
2014-07-25 16:43:51
阅读次数:
1010
<canvas>标签有属性width/height可以用来设置宽高,但是宽高默认为:300px*150px(width*height)javascript操纵:getContext("2d"):获取CanvasRenderingContext2D对象。校验兼容性:varcanvas=document.getElementById(‘tutorial‘);
if(canvas.getContext){
varctx=can..
分类:
Web程序 时间:
2014-07-24 10:53:19
阅读次数:
356
在写这章之前,我看了一下看雪以往的教程。本来想参考一下,可忽然发现,写这样的一章,是一件非常愚蠢的事情,因为我觉的关于这些工具的使用教程。看雪教程中已经写的够详细的了,我并不认为你会看不懂。所以我不想做浪费时间的人,本章就此搁浅。 推荐看《Crack Tutorial 2001》,推荐看《看雪论坛精...
分类:
其他好文 时间:
2014-07-22 23:20:37
阅读次数:
191
转自http://www.voidspace.org.uk/python/articles/authentication.shtml先转来,由于是python2的版本之后会翻译文章以及移植到python3IntroductionThis tutorial aims to explain and il...
分类:
编程语言 时间:
2014-07-22 00:18:35
阅读次数:
588
Xtext
Xtext是eclipse下用于构建DSL的工具。其使用非常方便,除了支持开发DSL以外,还能得到eclipse语法高亮、错误提示等功能。http://www.eclipse.org/Xtext/index.html
建议先读读官方文档里面的最开始的几个tutorial,对Xtext的使用有个大概的了解。http://www.eclipse.org/Xtext/documentat...
分类:
其他好文 时间:
2014-07-21 22:45:07
阅读次数:
391
按照教程,如果出现vcvarsall.bat找不到的情况,则需要安装正确版本的visual studio http://docs.cython.org/src/tutorial/cython_tutorial.html python 2.7.x使用的是vs2008,如果没有安装,可以安装vs2008 expr...
分类:
其他好文 时间:
2014-07-20 23:34:08
阅读次数:
644
定义类
Ext.define('Cookbook.Vehicle', {
Manufacturer: 'Aston Martin',
Model: 'Vanquish',
getDetails: function(){
alert('I am an ' + this.Manufacturer + ' ' + this.Model);
}
}, function(){
Console.log('C...
分类:
Web程序 时间:
2014-07-20 22:35:23
阅读次数:
312
加载数据
1.比较好用的设置form数据的方法:
formPanel.getForm().setValues([{id: 'FirstName', value: 'Joe'}]);
其中id值为form中field的name属性值,value为要赋的值
2.通过对象赋值:
Ext.define('Request', {
extend: 'Ext.data.Model',
fields: ...
分类:
Web程序 时间:
2014-07-20 22:28:03
阅读次数:
265