赋值:a, b, c = 'xixi', 'haha', 'hehe'连接字典:>>> s = {1:'a', 2:'b', 3:'c'}>>> s.keys()[1, 2, 3]>>> s.values()['a', 'b', 'c']>>> s.items()[(1, 'a'), (2, 'b'...
分类:
编程语言 时间:
2014-08-01 09:12:31
阅读次数:
333
angularjs 使用ng-repeat报错
{{word}}
[ngRepeat:dupes] Duplicates in a repeater are not allowed. Use 'track by' expression to specify unique keys
发现是因为相同的内容重复引起,解决方案
{{word}}
在ng-...
分类:
其他好文 时间:
2014-07-31 13:34:04
阅读次数:
199
PreparedStatement获取自动生成键使用可以获取自动生成键方法Statement.RETURN_GENERATED_KEYS表示返回生成键PreparedStatementpstmt=conn.prepareStatement(sql,Statement.RETURN_GENERATED_KEYS);//获取生成键的结果集ResultSetrls=pstmt.getGeneratedKeys();getGeneratedKey..
分类:
其他好文 时间:
2014-07-30 17:47:14
阅读次数:
179
1. 设置代码自动提示window --> preference --> General --> keys --> 选择content assist默认的是ctrl+space,与系统的切换输入法冲突了,于是改成Alt+/,when下拉框选择In dialog and windows;并且勾选Inc...
分类:
系统相关 时间:
2014-07-29 20:50:12
阅读次数:
259
PHP一维数组的排序可以用sort(),asort(),arsort()等函数,但是PHP二维数组的排序需要自定义。以下函数是对一个给定的二维数组按照指定的键值进行排序,先看函数定义:function array_sort($arr,$keys,$type='asc'){ $keysvalu...
分类:
Web程序 时间:
2014-07-29 14:08:28
阅读次数:
277
生成密钥并复制 --- `ssh-keygen -t rsa -P ‘‘` `cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys` `chmod 600 ~/.ssh/authorized_keys` 修改SSH配置文件 --- 更改`/etc/ssh/sshd_config`中的 ``` RSAAuthentic...
分类:
其他好文 时间:
2014-07-26 03:30:17
阅读次数:
216
Problem Description
A while ago it was quite cumbersome to create a message for the Short Message Service (SMS) on a mobile phone. This was because you only have nine keys and the alphabet has more t...
分类:
移动开发 时间:
2014-07-26 02:40:36
阅读次数:
332
HashMap的几种遍历方法1、第一种: Map map = new HashMap(); Set keys = map.keySet(); Iterator iterator = keys.iterator(); while (iterator.hasNext()) { ...
分类:
移动开发 时间:
2014-07-25 16:35:21
阅读次数:
565
Problem Description
In many applications very large integers numbers are required. Some of these applications are using keys for secure transmission of data, encryption, etc. In this problem you ar...
分类:
其他好文 时间:
2014-07-24 23:20:03
阅读次数:
915
1:如果不想每次登陆都输入密码,可以在你打开的session里邮件session option->login action 选中automate logon 双击ogin 和assword分别输入用户名和密码就行了,telnet的命令符为〉,敲入指令的命令符为#
2:如果在global option->terminal->emulation->mapped keys勾选CUA setting就...
分类:
其他好文 时间:
2014-07-24 17:37:40
阅读次数:
251