网站综合信息 waiting.cc
    • 标题:
    • Waiting~G 
    • 关键字:
    •  
    • 描述:
    • 一起走过的日子 
    • 域名信息
    • 域名年龄:15年5个月7天  注册日期:2010年06月29日  到期时间:2013年06月29日
      邮箱:444987225  电话:+86.13500395045
      注册商:1 API GMBH 
    • 服务器空间
    • IP:124.248.194.62 同IP网站3个 详情
      地址:香港 新力讯(Sunnyvision)数据中心(九龙新蒲岗八达街9号威达工贸商业中心)
    • 备案信息
    • 备案号:
    网站收录SEO数据
    • 搜索引擎
    • 收录量
    • 反向链接
    • 其他
    • 雅虎
    •  
    •  
    •  
    • 搜搜
    •  
    •  
    •  
    • 搜狗
    •  
    •  
    • 评级:-/10  
    • 360搜索
    •  
    •  
    •  
    域名流量Alexa排名
    •  
    • 一周平均
    • 一个月平均
    • 三个月平均
    • Alexa全球排名
    • -  
    • 平均日IP
    • 日总PV
    • 人均PV(PV/IP比例)
    • 反向链接
    • dmoz目录收录
    • -  
    • 流量走势图
    域名注册Whois信息

    waiting.cc

    域名年龄: 15年5个月7天
    注册时间: 2010-06-29
    到期时间: 2013-06-29
    注 册 商: 1 API GMBH
    注册邮箱: 444987225
    联系电话: +86.13500395045

    获取时间: 2012年06月24日 21:00:26
    Domain Name: WAITING.CC
    Registrar: 1 API GMBH
    Whois Server: whois.1api.net
    Referral URL: http://www.1api.net
    Name Server: F1G1NS1.DNSPOD.NET
    Name Server: F1G1NS2.DNSPOD.NET
    Status: ACTIVE
    Updated Date: 2012-06-05
    Creation Date: 2010-06-29
    Expiration Date: 2013-06-29

    >>> Last update of whois database: Sun, 2012-Jun-24 07:20:43 EDT <<<

    DOMAIN: WAITING.CC

    RSP: HEXONET GmbH
    URL: http://www.hexonet.net/

    created-date: 2010-06-29 14:14:32
    updated-date: 2012-06-05 14:30:38
    registration-expiration-date: 2013-06-29 14:14:32

    owner-organization: 444987225
    owner-name: tianhua xu
    owner-street: cqdz
    owner-city: chongqing
    owner-state: chongqing
    owner-zip: 402360
    owner-country: CN
    owner-phone: +86.13500395045
    owner-fax:
    owner-email: 444987225

    admin-organization: 444987225
    admin-name: tianhua xu
    admin-street: cqdz
    admin-city: chongqing
    admin-state: chongqing
    admin-zip: 402360
    admin-country: CN
    admin-phone: +86.13500395045
    admin-fax:
    admin-email: 444987225

    tech-organization: 444987225
    tech-name: tianhua xu
    tech-street: cqdz
    tech-city: chongqing
    tech-state: chongqing
    tech-zip: 402360
    tech-country: CN
    tech-phone: +86.13500395045
    tech-fax:
    tech-email: 444987225

    billing-organization: 444987225
    billing-name: tianhua xu
    billing-street: cqdz
    billing-city: chongqing
    billing-state: chongqing
    billing-zip: 402360
    billing-country: CN
    billing-phone: +86.13500395045
    billing-fax:
    billing-email: 444987225

    nameserver: f1g1ns1.dnspod.net
    nameserver: f1g1ns2.dnspod.net

    ; --
    ; --
    ; domain managed by HEXONET GmbH
    同IP网站(同服务器)
  • 124.248.194.62 共3个网站 (香港 新力讯(Sunnyvision)数据中心(九龙新蒲岗八达街9号威达工贸商业中心))
  • ENLIGHT INT'L (CHINA) CO
  • 上海教育资源网 021edu.net
  • Waiting~G waiting.cc
  • 其他后缀域名
    • 顶级域名
    • 相关信息
    网站首页快照(纯文字版)
    抓取时间:2014年04月07日 05:41:15
    网址:http://waiting.cc/
    标题:Waiting~G
    关键字:
    描述:一起走过的日子
    主体:
    Waiting~G一起走过的日子客户端配置DNS不生效,如何解决without comments有时候一台DNS服务器配置好;其他的客户端都能正常使用;唯独只有你这一台按照相同配置后,也不生效;如何解决呢?1、修改/etc/nsswitch.conf文件hosts: files dns2、修改/etc/nscd.conf文件enable-cache hosts yespositive-time-to-live hosts 600negative-time-to-live hosts 0suggested-size hosts 211check-files hosts yespersistent hosts noshared hosts yesmax-db-size hosts 33554432与paranoia                yesrestart-interval        10enable-cache            passwd          yespositive-time-to-live   passwd          600negative-time-to-live   passwd          20suggested-size          passwd          211check-files             passwd          yesDNS缓存客户端重启,读取新的配置/usr/sbin/nscd -K/usr/sbin/nscd &/usr/sbin/nscd -i hostsWritten by Skyma 三月 25th, 2014 at 3:13 上午Posted in 学.Linuxpython 获取关键位置without commentspyton提供了对字符串的一些操作,但是对一些复杂的语句来说;不是那么见效;使用两个函数对语句进行处理;可以获取你想要关键字的开始位置与结束位置;从而获得你想要的substring举例说明:import reimport osimport subprocessimport timeimport signalimport tracebackimport datetime from multiprocessing import Process, Queue, active_children from subprocessimport Popen,PIPE,STDOUTimport MySQLdbimport psycopg2import sys#获取开始位置def getStartPos(line_str, key_word):    pos=line_str.lower().find(key_word)if (pos==-1):        return -1    else:        i = pos+len(key_word)      while (line_str[i]==” ” or line_str[i]==”\t” or line_str[i]==”\n”):            i=i+1      return i#获取结束位置def getEndTbPos(line_str, start_from_pos):    ch=[' ', '(', '"', ';', '\n','\t','\r']    pos=5000    if line_str.lower().find(“:: “) or line_str.lower().find(” :: “) or line_str.lower().find(“::”) or line_str.lower().find(” ::”):        line_str,number=re.subn(” ::”,”::”,line_str)        line_str,number=re.subn(” :: “,”::”,line_str)        line_str,number=re.subn(” :: “,”::”,line_str)        line_str,number=re.subn(“\s*::”,”::”,line_str)        line_str,number=re.subn(“\s*::\s*”,”::”,line_str)        line_str,number=re.subn(“::\s*”,”::”,line_str)        line_str,number=re.subn(“:\s:”,”::”,line_str)        line_str,number=re.subn(“:\s*:”,”::”,line_str)else:        line_str=line_strfor c in ch:        pos_tmp =line_str[start_from_pos:].find(c)        if (pos_tmp!=-1 and pos_tmp < pos):            pos = pos_tmp    if pos==5000:        return -1    else:        return pos+start_from_pos#语句testA=’SELECT user_uin,sum_deal_total_amount_309163,ftime FROM t_task_aggr_115800′pos_start=getStartPos(testA, ‘from’)pos_end=getEndTbPos(testA, pos_start)print “==============”,testA[pos_start:pos_end].strip(),len(testA[pos_start:pos_end].strip())Written by Skyma 三月 20th, 2014 at 8:52 上午Posted in 学.LinuxHBase基本操作without commentsHbase操作常见命令1.查询服务器状态:status2.查询hive版本:version3.创建一个表:create ‘member’,'member

    © 2010 - 2020 网站综合信息查询 同IP网站查询 相关类似网站查询 网站备案查询网站地图 最新查询 最近更新 优秀网站 热门网站 全部网站 同IP查询 备案查询

    2025-11-29 06:57, Process in 0.0049 second.