- 博客(14)
- 资源 (1)
- 收藏
- 关注
原创 Swift初体验
近日初学 Swift,感觉很有趣。好马配好鞍,Swift 配 playground。XCode 自带的playground集成开发环境,开箱即用。配合官方文档 A Swift Tour,学习起来不费劲。Swift 语法精炼。静态类型能让编译器尽早发现错误,也给智能代码提示打下了基础。
2016-11-06 00:24:12
215
翻译 Vue.js 数组使用注意事项
使用 $set 方法,而不是通过索引值来改变数组元素:example1.items.$set(0, { msg: "Hello World!" }),这样才能触发视图更新。
2016-08-21 11:55:58
523
翻译 Vue.js 中 v-if 和 v-show 有什么区别?
v-if 和 v-show 的区别是:v-if 初始化速度快,但切换成本高;v-show 初始化速度慢,但切换成本低。
2016-08-20 10:15:19
5691
翻译 Vue.js的事件机制
vm.$on, vm.$emit, vm.$dispatch, vm.$broadcast 是 Vuejs 事件机制的重要成员。
2016-08-20 09:47:16
3013
翻译 浏览器工作原理 - 导语篇
Introduction介绍Web browsers are probably the most widely used software. In this book I will explain how they work behind the scenes. We will see what happens when you type 'google.com' in the a
2014-06-09 22:41:03
708
翻译 关于Google Guava
Google Guava(番石榴)The Google Guava is an open-source set of common libraries(共享库) for Java, mainly developed by Google engineers.Google Guava是一套开源Java共享库,主要开发人员来自Google。Overview概述
2014-06-09 20:28:22
606
翻译 Bret Victor: Learnable Programming
References1. Learnable Programming, Bret Victor,
2014-06-04 21:23:30
621
翻译 etc文件夹下面有什么
References=========1. http://www.linuxjournal.com/article/8601 ""
2014-06-04 14:52:59
1202
原创 RegExp in ActionScript 3.0
var str:String = "北京的ID是500353\n上海的ID是500365";var pattern:RegExp = /\w*(\d{6})\w*/g;var result:Object = pattern.exec(str);while (result != null){ trace(result[1]); result = pattern.exec(str);}
2011-11-08 12:42:55
544
原创 一句话介绍MySQL(1)
例子在这里连接数据库shell> mysql -h host -u user -p退出数据库mysql> QUIT查询版本号和当前日期mysql> SELECT VERSION(), CURRENT_DATE;查询用户mysql> SELECT USER();找出服务器上当前存在的数据库mysql> SHOW DATABASES;
2009-07-07 14:41:00
1231
翻译 Shell Programming
Linux下的Shell编程主要包括以下类别: Shell 名称Shell来源 sh(Bourne)早期UNIX最初的Shell版本 csh, tcsh, zsh C shell和它的衍生工具,由Berkeley UNIX的Bill Joy发明。C shell在shell流行排
2009-07-06 07:56:00
827
翻译 Beginning Linux Programming Third Edition
作为Linux程序开发员,最好对开发工具和资源的位置有个初步了解。下面简要介绍一下主要的文件夹和应用程序。应用程序(Applications)应用程序通常都有固定的文件夹,系统通用程序放在/usr/bin,日后系统管理员在本地计算机安装的程序通常放在/usr/local/bin或者/opt文件夹下。除了系统程序外,大部分个人用到的程序都放在/usr/local下,所以保持/usr的
2009-07-05 17:11:00
3309
1
Teach Yourself Shell Programming in 24 Hours
2007-04-21
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人