首页 > 2017年07月11日 > 全部分享
GreenPlum之进程会话管理篇
--1.查询指定库下面的活动会话,procpid字段表示会话Proc select * from pg_stat_activity where datname = 'dbname'; --2.中断查询,${procpid}表示上面查询对应的procpid,下同 select pg_cancel_ba... ...
分类:系统服务   时间:2017-07-11 00:33:34    收藏:0  评论:0  赞:0  阅读:524
python100题目的爬取
import requestsfrom bs4 import BeautifulSoupdef getHTMLText(url): try: r = requests.get(url) r.raise_for_status() r.encoding = 'utf-8' return r.text e ...
分类:编程语言   时间:2017-07-11 00:33:15    收藏:0  评论:0  赞:0  阅读:375
Yandex Algorithm 2017 Qualication Round (数组练习 + 拓扑排序练习)
Problem A. Task Management Input le: standard input Output le: standard output Time limit: 2 seconds Memory limit: 256 megabytes Sergey is Yandex juni ...
分类:编程语言   时间:2017-07-11 00:32:46    收藏:0  评论:0  赞:0  阅读:501
Python Day05 python 环境变量和import模块导入
1.定义 模块:本质就是.py结尾的文件(逻辑上组织python代码)模块的本质就是实现一个功能 文件名就是模块名称 包: 一个有__init__.py的文件夹;用来存放模块文件2.导入模块 import 模块名 form 模块名 import * from 模块名 import 模块名 as 新名... ...
分类:编程语言   时间:2017-07-11 00:32:37    收藏:0  评论:0  赞:0  阅读:405
寻找子串位置<codevs>
KMP板子题; 如果不会可以参考其他算法书 代码: ...
分类:其他   时间:2017-07-11 00:32:22    收藏:0  评论:0  赞:0  阅读:389
406. Queue Reconstruction by Height
refer to: https://discuss.leetcode.com/topic/60394/easy-concept-with-python-c-java-solution E.g.input: [[7,0], [4,4], [7,1], [5,0], [6,1], [5,2]]subar ...
分类:其他   时间:2017-07-11 00:32:09    收藏:0  评论:0  赞:0  阅读:366
Servlet的生命周期
Servlet :全称是Server Applet 即运行在服务器端的一段java小程序。其主要用来处理客户端请求的处理和运算 Servlet生命周期:Servlet对象的创建--执行无参构造器实例化、Servlet对象的初始化--执行init初始化、Servlet对象服务的执行--执行servic ...
分类:其他   时间:2017-07-11 00:31:41    收藏:0  评论:0  赞:0  阅读:472
Linux系统下基本命令
《Linux系统下基本命令》 Linux系统下基本命令: 要区分大小写 uname 显示版本信息(同win2K的 ver) dir 显示当前目录文件,ls -al 显示包括隐藏文件(同win2K的 dir) pwd 查询当前所在的目录位置 cd cd ..回到上一层目录,注意cd 与..之间有空格。 ...
分类:系统服务   时间:2017-07-11 00:31:33    收藏:0  评论:0  赞:0  阅读:329
Python--基础之socket编程
一 客户端/服务器架构 即C/S架构,包括 1.硬件C/S架构(打印机) 2.软件C/S架构(web服务) 美好的愿望: 最常用的软件服务器是 Web 服务器。一台机器里放一些网页或 Web 应用程序,然后启动 服务。这样的服务器的任务就是接受客户的请求,把网页发给客户(如用户计算机上的浏览器),然 ...
分类:编程语言   时间:2017-07-11 00:31:18    收藏:0  评论:0  赞:0  阅读:381
Learn Python 006: if Statements
# Booleans & Comparison Operators # True # False # = # == # != # # = # if statements num1 = 100 num2 = 100 if num1 > num2: #this is not true, so it's ... ...
分类:编程语言   时间:2017-07-11 00:30:49    收藏:0  评论:0  赞:0  阅读:378
cron表达式
由7段构成:秒 分 时 日 月 星期 年(可选)"-" :表示范围 MON-WED表示星期一到星期三"," :表示列举 MON,WEB表示星期一和星期三"*" :表是“每”,每月,每天,每周,每年等"/" :表示增量:0/15(处于分钟段里面) 每15分钟,在0分以后开始,3/20 每20分钟,从3 ...
分类:其他   时间:2017-07-11 00:30:38    收藏:0  评论:0  赞:0  阅读:360
eclipse 乱码问题总结
Eclipse 的控制台必须用GBK编码。所以条件1和条件4必须同时满足否则运行的还是乱码。才能保证不是乱码。 条件1,Window | Preferences | Workspace | Text fileencoding | GBK编码。这样定义的是整个工作区间的编码。这样就把整个工作空间的编码 ...
分类:系统服务   时间:2017-07-11 00:30:26    收藏:0  评论:0  赞:0  阅读:367
windows平台python 2.7环境编译安装zbarlight
类似于前一篇博文,http://www.cnblogs.com/zhongtang/p/7148082.html中描述的情况。 编译zbarlight同样出现问题,简要处理步骤如下: 1、到https://pypi.python.org/pypi/zbarlight下载源文件。 2、解压到桌面目录, ...
分类:编程语言   时间:2017-07-11 00:30:16    收藏:0  评论:0  赞:0  阅读:966
noip 2017 提高组
T1 神奇的幻方 题目传送门 就只是一道模拟题 水水水 #include<cstdio> #include<cstring> #include<algorithm> using namespace std; int read(){ int ans=0,f=1,c=getchar(); while(c ...
分类:其他   时间:2017-07-11 00:29:59    收藏:0  评论:0  赞:0  阅读:862
排序算法——冒泡排序
冒泡排序是一种交换排序,每一趟排序过程中都不断的比较相邻两个元素的大小,如果满足条件(递增或者递减),则交换相邻两个元素的位置。 冒泡排序比较简单,就不必过多阐述,代码实现如下: 冒泡排序的时间复杂度为O(n2),空间复杂度为O(1)。 ...
分类:编程语言   时间:2017-07-11 00:29:47    收藏:0  评论:0  赞:0  阅读:372
2017.7.10
一、32个关键词 cuto break case char const continuse default do double else enum extern float for goto if int long register return shrt signed sizeof stastic ...
分类:其他   时间:2017-07-11 00:29:35    收藏:0  评论:0  赞:0  阅读:363
使用electron构建跨平台Node.js桌面应用
最近,把团队内经常使用的一个基于Node.js制作的小工具给做成了可视化操作的桌面软件,使用的是electron,这里简单分享一下使用electron的一些经验和心得。 一、如何使用electron把基本的开发环境给跑起来? 我是这么处理的,electron官方提供了一个名为“electron-qu ...
分类:Web开发   时间:2017-07-11 00:29:04    收藏:0  评论:0  赞:0  阅读:452
解决中文乱码问题
一.页面加载时 保证contentType="text/html",charset="UTF-8",pageEncoding="UTF-8" 且客户端浏览器的字符编码也要与JSP页面保持一致 二.获取中文参数值时 因为默认参数在传输过程中使用的编码为 ISO-8859-1 。 1.当请求为POST时 ...
分类:其他   时间:2017-07-11 00:28:37    收藏:0  评论:0  赞:0  阅读:328
LeetCode 604. Design Compressed String Iterator (设计压缩字符迭代器)
Design and implement a data structure for a compressed string iterator. It should support the following operations: next and hasNext. The given compre ...
分类:其他   时间:2017-07-11 00:28:24    收藏:0  评论:0  赞:0  阅读:335
Codeforces 321E Ciel and Gondolas
传送门:http://codeforces.com/problemset/problem/321/E 【题解】 首先有一个$O(n^2k)$的dp。 # include <stdio.h> # include <string.h> # include <iostream> # include <al ...
分类:其他   时间:2017-07-11 00:27:55    收藏:0  评论:0  赞:0  阅读:388
1409条   上一页 1 ... 66 67 68 69 70 71 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!