301重定向(301 redirect)又叫301代表永久性转移(Permanently Moved),将各种网络请求重新定个方向转到其它位置,是网页更改地址后对搜索引擎友好的最好方法,只要不是暂时搬移的情况,都建议使用301来做转址。下面说下两种情况下的301重定向方法。 一、WWW域名的重定向。 ...
分类:
Web程序 时间:
2017-10-30 18:18:03
阅读次数:
189
一.删除模板片段使用th:remove属性 th:remove的值如下: 1.all:删除包含标签和所有的孩子。 2.body:不包含标记删除,但删除其所有的孩子。 3.tag:包含标记的删除,但不删除它的孩子。 4.all-but-first:删除所有包含标签的孩子,除了第一个。 5.none:什 ...
分类:
其他好文 时间:
2017-10-30 17:03:34
阅读次数:
235
If you start to use a DB like mongo, you might be better off creating objects with mongoose but that's personal preference as well. As for your exampl... ...
分类:
Web程序 时间:
2017-10-30 16:04:05
阅读次数:
203
You're now a baseball game point recorder. Given a list of strings, each string can be one of the 4 following types: Each round's operation is permane ...
分类:
其他好文 时间:
2017-10-28 18:52:58
阅读次数:
183
今天在在公司做网络驱动开发测试时,随机包出现收包计数停止的现象,当时怀疑是DMA rx buffer不足导致,想通过对比收发包正常和收发包不正常是DMA相关寄存器的情况。 后跟踪代码,若在收发包里面增加打印,必定回降低收发包性能,对比结果也就不准了,分析代码分析来分析去,最终发现做合适的就是采用pr ...
分类:
其他好文 时间:
2017-10-25 00:44:36
阅读次数:
175
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate extra space fo ...
分类:
其他好文 时间:
2017-10-24 22:29:37
阅读次数:
154
Problem Symptom In a native IPv6 network, all the servers receive IPv6 prefix from IPv6 router, and subsequently generate an Ipv6 address as well as a ...
分类:
其他好文 时间:
2017-10-24 18:18:33
阅读次数:
302
一.注释 LRUCache的原理,基本都在注释里面描述清楚了。 /** * A cache that holds strong references to a limited number of values. Each time * a value is accessed, it is moved ...
分类:
系统相关 时间:
2017-10-19 15:06:52
阅读次数:
326
os模块提供对操作系统进行调用的接口 import os os.getcwd() # 获取当前工作目录 os.chdir(r'd:\fansik') # 修改对当前工作目录 print(os.curdir) # 返回当前目录(这里的返回是返回值) print(os.pardir) # 返回父级目录 ... ...
分类:
编程语言 时间:
2017-10-19 15:03:50
阅读次数:
263
1、OnTouchBegan():触摸开始,就是触碰的一瞬间会调用这个函数。 2、OnTouchMoved():在触摸中,触摸不放开移动会调用这个函数。 3、OnTouchEnded():触摸结束,就是触摸结束的一瞬间会调用这个函数。 ...
分类:
其他好文 时间:
2017-10-19 11:05:35
阅读次数:
196