jiangtao.me
域名年龄: 11年17天HTTP/1.1 302 Found 连接:关闭 其他指令:不缓存 缓存控制:不缓存 目标网址:/ HTTP/1.1 301 永久重定向 缓存控制:max-age=900 类型:text/html 目标网址:http://vnady.github.io 服务器:Microsoft-IIS/7.5 ASP.NET版本:4.0.30319 语言环境:ASP.NET 访问时间:2016年09月22日 21:23:58 文件大小:0 文件时间(秒):0 连接:keep-alive HTTP/1.1 200 OK 服务器:GitHub.com 类型:text/html; charset=utf-8 修改日期:2016年09月18日 18:45:24 Access-Control-Allow-Origin: * 过期时间:2016年09月22日 21:33:58 缓存控制:max-age=600 Content-Encoding: gzip X-GitHub-Request-Id: 17EB2F1F:3681:C5CE85:57E3DB6C 文件大小:9321 接受单位:字节 访问时间:2016年09月22日 21:23:58 代理服务器:1.1 varnish 文件时间(秒):0 连接:keep-alive X-Served-By: cache-sjc3135-SJC 缓存代理:MISS X-Cache-Hits: 0 动作:Accept-Encoding X-Fastly-Request-ID: 59503de24e07beb9943e7af66a32289a4a8f7309 网站编码:utf-8
jiangtaoAll Articles日 18 九月 2016python,leetcodeleetcode-Power of Four题目:判断一个整数是否是4的幂。 测试举例: 输入16,返回true;输入5,返回false。 选择用python实现: ass Solution(object): def isPowerOfFour(self, num): """ :type num: int :rtype: bool """ import math num_sqrt = int(math.sqrt(float(num))) a = int(math.log(num_sqrt)/math.log(2)) return num == ...六 17 九月 2016总结2016校招初期总结简历 1.简历凸显的个人技能与职位匹配度(投递多个职位需要多份不一样的简历) 2.不同风格的职位需要不同的排版(勿用同一排版) 简历虽然很多人说最好一页,但也可以提供证明自己能力的更多证据。多与同学交流,多总结。 内推 1.本人实习找的内推都没过,所以校招就没有找内推了 2.内推就是提前批,如果提前拿到offer了心里就不慌了,强烈建议找师兄师姐同学内推 笔试准备 1.自己投了简历一定要用excel(或其他记录形式)罗列所有的笔试时间大致内容 ...二 06 九月 2016pythonpython正则匹配匹配子串,输出子串: import re while(1): str=raw_input(">") if str == "": break m = re.match(r'^[aeiouAEIOU]*',str) if m != None: print m.group() r'^[aeiouAEIOU]*'只会匹配方括号中重复出现的字符串并返回匹配上的局部字符串,r'^[aeiouAEIOU].*'会把开头是元音字母的字符串整个返回(而不是只返回元音字母)。这体现了*的作用是前一个字母或整体的重复。日 26 六月 2016linux,dev-tools多路终端复用器tmux入门配置tmux 是一个优秀的终端复用软件,类似 GNU Screen ,但来自于 OpenBSD ,采用 BSD 授权。使用它最直观的好处就是,通过一个终端登录远程主机并运行 tmux 后,在其中可以开启多个控制台而无需再“浪费”多余的终端来连接这台远程主机;当然其功能远不止于此。 [ from 百度百科] 我的配置文件主要进行如下定制: 修改 prefix 键为 C-a 分屏快捷键为 | - 窗格选择移动键与 vim 移动键一致 窗格尺寸调整,边界移动键 GHJK (与 vim ...六 25 六月 2016pythonpython异步io,kqueue模式本实验实现了一个server同时响应多个client的字符回显。 Server端代码kqueue-socket.py #!/usr/bin/env python import socket, select HOST = 'localhost' PORT = 5000 ADDR = (HOST, PORT) serversocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) ...二 21 六月 2016python网络socket cs最小通信系统创建一个能接受客户端消息,在消息前加一个时间戳后返回的TCP服务器。 tsTclnt.py #!/usr/bin/env python from socket import * from time import ctime HOST='' PORT=21567 BUFSIZ = 1024 ADDR = (HOST, PORT) tcpSerSock = socket(AF_INET, SOCK_STREAM) tcpSerSock.bind(ADDR) tcpSerSock.listen(5) ...一 20 六月 2016shellValid Phone Numbers with shell scriptValid phone numbers must appear in one of the following two formats: (xxx) xxx-xxxx or xxx-xxx-xxxx. (x means a digit) Given a text file file.txt that contains list of phone numbers (one per line), write a one liner bash script to print all valid phone ...一 20 六月 2016shellshell script to read lines from fileHow would you print just the 10th line of a file with the shell script? Shell script is as below: #!/bin/bash k=0 while IFS='' read -r line || [[ -n "$line" ]] do ((k++)) if [ $k -eq 10 ] then echo "Text read from file: $line" fi done日 19 六月 2016shellshell script to evaluate expressionTo evaluate expressions involving decimal places (floating points) "bc -l" is very useful. Your task is to evaluate the expression and display the output correct to decimal places. Shell script is as below: #!/bin/bash read expression printf "%.3f\n" ...一 21 三月 2016dev-toolsJetBrains Makes its Products Free for StudentsAre you learning Java, PHP, Ruby, Python, JavaScript, Objective-C or .NET technologies? Or maybe you just plan to?Do it right from the start, with award-winning professional developer tools from JetBrains. And the best part: it's free of charge. more ...一 21 三月 2016about测试markdown关于我 一个酷酷的男生 一个热爱运动的男生 一个阳光的男生 一个不太极客的程序员 联系我 Email: taojian
© 2010 - 2020 网站综合信息查询 同IP网站查询 相关类似网站查询 网站备案查询网站地图 最新查询 最近更新 优秀网站 热门网站 全部网站 同IP查询 备案查询
2025-05-10 20:49, Process in 0.0082 second.