1. Open a command console and go to the directory where you installed Postgre server.
e.g. D:\Program Files\PostgreSQL\9.3\bin>
2. Drill down into BIN folder and issue following command.
psql -d -...
分类:
其他 时间:
2014-11-12 19:48:55
收藏:
0 评论:
0 赞:
0 阅读:
258
条件与循环
条件执行:
name = raw_input('What is your name? ')
if name.endswith('Gumby'):
print 'Hello, Mr.Gumby'What is your name? Gumby
Hello, Mr.Gumbyname = raw_input('What is your name? ')
if name.endswit...
分类:
编程语言 时间:
2014-11-12 19:48:45
收藏:
0 评论:
0 赞:
0 阅读:
316
前段时间做了一个功能,就是锁定主launch,机器上只能跑我们定义的launch,当时没注意影响,
最近发现就是因为在AMS中加了这个锁定过滤条件导致原生Browser无法启动了,
把我郁闷的,当时怎么想都觉得奇怪,这完全不相关的两件事怎么会影响到~ 这里记录一下...
分类:
移动平台 时间:
2014-11-12 19:48:35
收藏:
0 评论:
0 赞:
0 阅读:
551
//删除文件夹
private void deleteDirectory(File folder) {
if (folder.exists()) {
File[] files = folder.listFiles();
if (files == null) {
return;
}
for (int i = 0; i < files.length; i++) {...
分类:
移动平台 时间:
2014-11-12 19:48:25
收藏:
0 评论:
0 赞:
0 阅读:
341
在C++程序中,经常用const 来限制对一个对象的操作,例如,将一个变量定义为const 的:
const int n=3;
则这个变量的值不能被修改,即不能对变量赋值。
const 这个关键字经常出现在函数的定义中,而且会出现在不同的位置,比如:
int strcmp (const char *str1,cons...
分类:
其他 时间:
2014-11-12 19:48:15
收藏:
0 评论:
0 赞:
0 阅读:
211
dpdk的版本是1.7.1的稳定版
绑定万兆网卡的默认驱动ixgbe失败
# ./dpdk_nic_bind.py -b ixgbe 06:00.1
Error: bind failed for 0000:06:00.1 - Cannot bind to driver ixgbe
查看原因 dmesg |tail
# dmesg |tail
[ 5667.433649] ixgbe...
分类:
其他 时间:
2014-11-12 19:48:05
收藏:
0 评论:
0 赞:
0 阅读:
2506
Description
The advice to "buy low" is half the formula to success in the bovine stock market.To be considered a great investor you must also follow this problems' advice:
"Bu...
分类:
其他 时间:
2014-11-12 19:47:55
收藏:
0 评论:
0 赞:
0 阅读:
276
PHPthinking官方论坛正式上线一个月!目前,我们已经拥有几百人的固定用户,论坛发展迅速,全是大家分享的一些技术贴,希望更多的用户加入进来,营造一个学习、交流更加方便、内容更加充实的PHP论坛!
PHPthinking官网:http://www.phpthinking.com
PHPthinking论坛:http://bbs.phpthinking.com
PHPthinkin...
分类:
Web开发 时间:
2014-11-12 19:47:45
收藏:
0 评论:
0 赞:
0 阅读:
337
The count-and-say sequence is the sequence of integers beginning as follows:
1, 11, 21, 1211, 111221, ...
1 is read off as "one
1" or 11.
11 is read off as "two
1s" or 21.
21 is read off as ...
分类:
其他 时间:
2014-11-12 19:47:35
收藏:
0 评论:
0 赞:
0 阅读:
271
2,"id"=>4);
print_r(($b));
echo $b['name'];
$a=1;
while ( $a...
分类:
Web开发 时间:
2014-11-12 19:47:25
收藏:
0 评论:
0 赞:
0 阅读:
309
#pragma mark 截图
- (UIImage *)capture:(UIView *)view
{
UIGraphicsBeginImageContextWithOptions(view.bounds.size, YES, 0.0);
[view.layer renderInContext:UIGraphicsGetCurrentContext()];
U...
分类:
移动平台 时间:
2014-11-12 19:47:05
收藏:
0 评论:
0 赞:
0 阅读:
306
数据链路层——MAC帧
MAC层的硬件地址硬件地址又称为物理地址或MAC 地址。
IEEE802 标准规定的48 比特的全球地址,是指局域网上的每一台计算机所插入的网卡上固化在ROM 中的地址。
IEEE 的注册管理委员会RAC 负责分配地址字段的6 个字节中的前3个字节。
地址字段的后3个字节有厂家自行指派,称为扩展标识符,只要保证生产出的网卡没有重复即可。用这种方法得到的...
分类:
其他 时间:
2014-11-12 19:46:55
收藏:
0 评论:
0 赞:
0 阅读:
359
1、java版本
public string PptReader(string filename)
{
string fullname = DocPath+filename; //绝对路径
PowerPoint.Application papp = new PowerPoint.Application();
PowerPoint.Presentation ppr = papp.Prese...
分类:
其他 时间:
2014-11-12 19:46:45
收藏:
0 评论:
0 赞:
0 阅读:
284
Alien’s Necklace
Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1526 Accepted Submission(s): 415
Problem Description
JYY is ta...
分类:
其他 时间:
2014-11-12 19:46:35
收藏:
0 评论:
0 赞:
0 阅读:
361
内网的主机都是自动分配ip地址,有时候需要查看下有那些ip...
分类:
编程语言 时间:
2014-11-12 19:46:25
收藏:
0 评论:
0 赞:
0 阅读:
359
其实嘞,这个线可以只延伸一端
然后嘞,爆搜一次就可以
最后嘞,600-800ms过
本弱就是弱啊,你来打我呀……
#include
#include
#include
#include
using namespace std;
int a[100][100];
int n,m,ans;
bool dfs(int step)
{
int i,j,t,ii,jj,x,y,cnt,tx...
分类:
其他 时间:
2014-11-12 19:46:05
收藏:
0 评论:
0 赞:
0 阅读:
317
前一段时间去面试,被人问了一个这个问题, 突然不知道怎么回答了, 后来查了查,才知道原来是怎么样了, 现在总结一下吧。
拷贝构造函数和赋值运算符用于创建对象的副本。在某些情况下由编译器隐式调用拷贝构造函数,例如按值传递对象的时候。
优点:
拷贝构造函数可以很容易地复制对象。 STL容器要求所有内容可拷贝和赋值。拷贝构造函数可以比copyfrom()式的解决方法更有效,因为它们将构造和复制...
分类:
编程语言 时间:
2014-11-12 19:45:55
收藏:
0 评论:
0 赞:
0 阅读:
378
题目:把n个骰子扔在地上,所有骰子朝上一面的点数之和为S。输入n,打印出S的所有可能的值出现的概率。
声明思想非原创!只因动态规划思想的使用很好,记下!
分析:动态规划就是分阶段考虑问题,给出变量,找出相邻阶段间的关系。具体定义给忘了。
1.现在变量有:骰子个数,点数和。当有k个骰子,点数和为n时,出现次数记为f(k,n)。那与k-1个骰子阶段之间的关系是怎样的?
2.当我有k-1个骰子时...
分类:
其他 时间:
2014-11-12 19:45:45
收藏:
0 评论:
0 赞:
0 阅读:
375
2014年5月,魔豆博主加入了想去...
“双11”过后各平台交易金额,成为了人们热议的话题,11月12日,想去网总经理王磊在想去网官方微博发文称,“想去网‘双11’当日成交额为103000元,移动端占比70%,明年目标是1000万”。想去网成为首家勇敢自晒双十一交易额的小而美电商网站。
王磊微博中写道“面对着动则几百亿的交易额,这区区10万元交易额简直可以说是微不足道,甚至比绝大多数...
分类:
其他 时间:
2014-11-12 19:45:35
收藏:
0 评论:
0 赞:
0 阅读:
260
Validate if a given string is numeric.
Some examples:
"0" => true
" 0.1 " => true
"abc" => false
"1 a" => false
"2e10" => true
Note: It is intended for the problem statement to be ambiguo...
分类:
其他 时间:
2014-11-12 19:45:25
收藏:
0 评论:
0 赞:
0 阅读:
192