码迷,mamicode.com
首页 >  
搜索关键字:bus pass    ( 9606个结果
cgi与html
html中调用cgi。html中调用html:cgi中调用html: if( (strcmp(name,"root")+1) && (strcmp(pass,"password")+1) ) printf("%s",name);cgi接受html信息: date = g...
分类:Web程序   时间:2014-07-22 22:55:33    阅读次数:518
解决nginx中fastcgi(php-fpm)60s超时的问题
在配置中加上location ~ .*\.(php|php5)?$ {fastcgi_pass 127.0.0.1:9000;fastcgi_read_timeout 700;fastcgi_index index.php;include fastcgi.conf;}
分类:Web程序   时间:2014-07-18 15:17:43    阅读次数:335
【leetcode刷题笔记】Reverse Linked List II
Reverse a linked list from positionmton. Do it in-place and in one-pass.For example:Given1->2->3->4->5->NULL,m= 2 andn= 4,return1->4->3->2->5->NULL.No...
分类:其他好文   时间:2014-07-18 00:32:24    阅读次数:271
mysql创建用户两次授权
mysql> GRANT ALL PRIVILEGES ON *.* TO 'monty'@'localhost' -> IDENTIFIED BY 'some_pass' WITH GRANT OPTION;mysql> GRANT ALL PRIVILEGES ON *.* TO ...
分类:数据库   时间:2014-07-17 22:04:27    阅读次数:317
公交线路免费api接口代码
描述:本接口主要是根据城市名称 +  线路名称 模糊查找城市公交线路信息。 开源api接口:http://openapi.aibang.com/bus/lines?app_key=f41c8afccc586de03a99c86097e98ccb&city="+cityName+"&q="+line 其中cityName = URLEncoder.encode(cityName,"utf-8")...
分类:Windows程序   时间:2014-07-17 16:22:48    阅读次数:697
python   memcached
管理服务startstopstatusrestart启动脚本namememcachedprogram/usr/bin/memcachedpidfileargs#参数-u-p-m-cwork-dirpython-mSimpleHTTPServer#启动一个小型的web服务函数pass占位脚本名称+num直接进入num行pidofmemcached查看进程num读成字典lines列表变成字典dict([i.strip..
分类:编程语言   时间:2014-07-17 08:06:49    阅读次数:312
Python自省学习
1. 访问对象的属性class MyClass(): a='1' b='2' def __init__(self): pass def write(self): print self.a,self.bmyClass=MyClass()print d...
分类:编程语言   时间:2014-07-16 15:15:04    阅读次数:302
UVA-1400 Ray, Pass me the Dishes, LA 3938 , 线段树,区间查询
题意:给出一列数(n个),m次查询区间[l,r]的最大连续区间[x,y](l 思路:动态查询区间最大连续区间; 如果是求最大连续区间和: 用线段树维护最大连续和sum_sub、最大前缀和sum_prefix、最大后缀和sum_suffix。 root.sum_sub = max{l.sum_sub, r.sum_sub, (l.sum_suffix + r.sum_prefix)...
分类:其他好文   时间:2014-07-16 11:42:15    阅读次数:222
hdu 1960 Bus System
Bus SystemTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 6166Accepted Submission(s): 1580Problem ...
分类:其他好文   时间:2014-07-13 23:10:35    阅读次数:264
nginx php No input file specified 如何处理?
配置nginx支持php 出现了No input file specified ? 只要修改下安装目录下的  nginx.conf下的  location ~ \.php$ {              root           html;              fastcgi_pass   127.0.0.1:9000;              fastcgi_index  ...
分类:Web程序   时间:2014-07-13 16:16:48    阅读次数:270
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!