avalon1.3.1发布。interpolate支持注释节点做定界符,avalon.config({interpolate:[""]})
监控数组添加pushArray方法,类似于push方法,不过参数是一个数组 data-duplex-changed回调会在第一次赋值就触发 添...
分类:
Web程序 时间:
2014-06-06 21:35:03
阅读次数:
408
?UINavigationController以栈的形式保存子控制器@property(nonatomic,copy)NSArray*viewControllers;@property(nonatomic,readonly)NSArray*childViewControllers;?使用push方法...
分类:
其他好文 时间:
2014-06-06 20:03:23
阅读次数:
310
1.运行终端,执行命令行进入missing file目录,然后运行svn delete
nameOfMissingFile或git rm nameOfMissingFile2.删除隐藏的.svn文件。命令行运行defaults write
com.apple.finder AppleShowAllF...
分类:
其他好文 时间:
2014-06-03 16:20:06
阅读次数:
405
An iterative way of writing quick sort:
#include
#include
#include
using namespace std;
void quickSort(int A[], int n) {
stack> stk;
stk.push(make_pair(0, n-1));
while (!stk.empty()) {
pair ...
分类:
其他好文 时间:
2014-06-03 00:16:43
阅读次数:
357
git提交代码时,出现这个错误“error: The requested URL returned error: 403 Forbidden while accessing https”
解决方法:
编辑.git目录下的config文件即可。
vim .git/config
#修改对于的配置
#原来的url = https://github.com/elitecodegr...
分类:
数据库 时间:
2014-06-03 00:03:44
阅读次数:
349
Git使用教程github不是特别的稳定,而且英文太多难以辨别,所以使用了JD的开源git。在我的理解来开git像是一个虚拟主机或者一个ftp服务器。常见的端口:ftp
21tcpssh 22tcpwww 80dns 53tcp 53udp我们可以使用ssh命令测试链接虚拟主机#ssh-T g...
分类:
其他好文 时间:
2014-06-02 15:46:57
阅读次数:
421
本文详细介绍了在Android中利用shell命令进行截屏的方法,并且讲解了利用pull命令从手机中导出文件到电脑上的方法,最后讲解了几个容易出错的地方。...
分类:
移动开发 时间:
2014-06-01 15:36:14
阅读次数:
304
创建仓库 新建普通仓库: jxdong@ubuntu-server:~/workspace/git$ git init
Reinitialized existing Git repository in /home/jxdong/workspace/git/.git/
新建 bare 仓库:
jxdong@ubuntu-server:~/workspace/git.git...
分类:
其他好文 时间:
2014-06-01 09:38:36
阅读次数:
269
1.栈和队列是两种特殊的线性表
运算操作被限定只能在表的一端或两端插入,删除元素,故也称它们为限定的线性表结构
2.栈的基本运算
1).Stackinit(&s) 构造一个空栈
2).Stackempty(s) 判断s是否为空栈,当s为空栈时,函数返回值1 否则 0
3).Push(&s,x) 在栈s 的顶部插入元素x,简称将x入 栈
4).Pop(&...
分类:
其他好文 时间:
2014-06-01 09:08:36
阅读次数:
278