通用(General)↑↓←→:上下左右移动光标,注意不是不是KJHL!Alt:调出菜单Ctrl+Shift+P:调出命令板(CommandPalette)Ctrl+`:调出控制台编辑(Editing)Ctrl+Enter:在当前行下面新增一行然后跳至该行Ctrl+Shift+Enter:在当前行上面增加一行并跳至该行Ctrl+←/→:进行..
分类:
其他好文 时间:
2014-10-01 00:27:01
阅读次数:
172
为了在树莓派启动的时候运行一个命令或程序,你需要将命令添加到rc.local文件中。这对于想要在树莓派接通电源后无需配置直接运行程序,或者不希望每次都手动启动程序的情况非常有用。
另一种替代定时任务的方法是使用cron和crontab。
EDITING RC.LOCAL(编辑rc.local文件)
在你的树莓派上,选择一个文本编辑器编辑/etc/rc.local文件。你必须使...
分类:
其他好文 时间:
2014-09-30 18:23:59
阅读次数:
385
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the fol...
分类:
其他好文 时间:
2014-09-29 22:48:21
阅读次数:
163
MySQL在删除一张表时出现ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constraint fails可能是MySQL在InnoDB中设置了foreign key关联,造成无法更新或删除数据。可以通...
分类:
数据库 时间:
2014-09-29 20:44:02
阅读次数:
250
我们来看看下面的几个典型例子:
①查找上一年度各个销售区域排名前10的员工
②按区域查找上一年度订单总额占区域订单总额20%以上的客户
③查找上一年度销售最差的部门所在的区域
④查找上一年度销售最好和最差的产品
我们看看上面的几个例子就可以感觉到这几个查询和我们日常遇到的查询有些不同,具体有:
①需要对同样的数据进行不同级别的聚合操作
...
分类:
其他好文 时间:
2014-09-29 19:38:12
阅读次数:
275
在使用Navicat for MySQL还原数据库备份时,出现Incorrect integer value: '' for column 'id' at row 1的错误; 网上查资料发现5以上的版本如果是空值应该要写NULL这种问题一般mysql 5.x上出现。使用Select version();查看,我用的是mysql5.0.37,而创建备份的MySQL数据库版本是5.6官方解释说:得知新...
分类:
其他好文 时间:
2014-09-29 18:18:11
阅读次数:
237
Set Matrix Zeroes
Total Accepted: 18139 Total
Submissions: 58671My Submissions
Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place.
click to show...
分类:
其他好文 时间:
2014-09-29 03:22:47
阅读次数:
190
MySQL上插入汉字时报错如下,具体见后面分析。
Incorrect string value: '\xD0\xC2\xC8A\xBEW' for column 'ctnr' at row 1
MySQL字符集相关参数:
character_set_server : 服务器字符集
collation_server : 服务器校对规则
character_se...
分类:
数据库 时间:
2014-09-28 20:08:25
阅读次数:
238
读取mysql数据库例。 代码如下 复制代码 "; echo "部门名称员工姓名PC名称"; while($row = mysql_fetch_array($rs)) echo "$row[1]$row[2]$row[3]"; //显示数据 echo ""; mysql_fr...
分类:
数据库 时间:
2014-09-27 23:06:40
阅读次数:
239
DescriptionIn the two-player game "Two Ends", an even number of cards is laid out in a row. On each card, face up, is written a positive integer. Play...
分类:
其他好文 时间:
2014-09-27 00:10:38
阅读次数:
444