- 浏览: 128383 次
最新评论
文章列表
EmberJS 基本概念
EmberJS 中非常核心的理念是:URL 是WEB应用程序的核心,URL代表了一切,要完全讲清楚这个概念,需要例程来说明,暂且放过。
EmberJS在设计时,借鉴了Cocoa and Smalltalk ,还有ruby/Rails
TEMPLATES(模板)
...
今天用msysgit 遇到了以下问题:
git push origin master
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
由于这个版本库,一直是用netbean中git来提交,所以一直是工作正常的,
而且,msysgit 之前也安装了,也正常工作,所以,一头雾水。
怀疑了msysgit 的s ...
今天登录mysql 居然提示:mysql access denied for root@localhost
一头雾水,再一看,原来是没有启动mysql ,囧
1,改root 密码
有几种方法
a: 命令行 mysqlAdmin -uroot -p oldpassword newpassword
b: sql :
use mysql ;
update user set password=password("new_pass") where user="root"
2. 改权限:
GRANT privileges (colu ...
1. flex 的 双向绑定似乎在chrome,ie 下,变得不可靠,原因不知
2. 在谷歌下,原来居中的DIV ,有时候会停靠在左边,
解决办法:在上一个DIV 中,末尾加一个DIV
<div>
.....
<div style="clear: both;"></div>
</div>
<div></div> <!--这个是出错的div-->
PHP 函数参数传值与传参的相关问题
- 博客分类:
- PHP 函数 传参
1.传值与传参,只是对基本类型有效,对于对象来说,不论传值或者传参,效果一样
<?php
function foo1($v,$a,$o){
$v +=1;
$a[0] *=2;
$o->age+=1;
}
function foo2(&$v,&$a,&$o){
$v +=1;
$a[0] *=2;
$o->age+=1;
}
$v1=4;
$a1=array(4);
$o1=new stdClass();
$o1->age=5;
...
1. PHP 的超时函数:set_time_limit ,但这个函数对 sleep, exec,数据库等操作,是不计算时间的,换句话说,这是不精确的超时控制,比如下面两个例子:
a:
<?php
set_time_limit(5);
while (true) {
//其他操作
}
echo "执行完毕";
?>
b:
<?php
set_time_limit(5);
$db = mysqli_connect('localhost','root','root','table');
$sql = ...
要点:
1.用PuTTYgen产生出的公钥内容,在~/.ssh 下的authorized_keys 文件中加入公钥
2.配置Putty
a. 配置 connection->data->Auto-login Name 为登录用户名
b. 配置 connection->SSH->Auth->private key for authentication 为密钥文件
3.其它:
a. ~, ~/.ssh, ~/.ssh/authorized_keys 的权限必须是对 group 取消write权限
b. /e ...