码迷,mamicode.com
首页 > 2014年11月23日 > 全部分享
robot.txt
在国内,网站管理者似乎对robots.txt并没有引起多大重视,可是一些功能离开它又不能是,因此今天石家庄SEO想通过这篇文章来简单谈一下robots.txt的写作。?的部分,或者指定搜索引擎只收录指定的内容。当一个搜索机器人(有的叫搜索蜘蛛)访问一个站点时,robots.txt基本介绍robots...
分类:其他好文   时间:2014-11-23 01:51:58    阅读次数:205
10款web前端动感的图片动画效果
1.Salvattore:CSS 驱动的 jQuery Masonry 插件Salvattore 是一个 jQuery 砌体的替代,使用 CSS 驱动的配置。Salvattore 根据您指定的列数组织你的 HTML 元素。容器中的每一个项目会一个接一个被放置在列内,只需要简单地添加一个 data-c...
分类:Web程序   时间:2014-11-23 01:52:09    阅读次数:1642
Cocos2d-x 3.0 Json用法 Cocos2d-x xml解析
Cocos2d-x 3.0 加入了rapidjson库用于json解析。位于external/json下。rapidjson 项目地址:http://code.google.com/p/rapidjson/wiki:http://code.google.com/p/rapidjson/wiki/Us...
分类:Web程序   时间:2014-11-23 01:50:52    阅读次数:428
(转)vim 常用快捷键 二
转自:http://www.cnblogs.com/wangkangluo1/archive/2012/04/12/2444952.html 键盘移动 (Move) 一切都从键盘的移动 k -> 上 up j -> 下 down h -> 左 left l -> 右 right z -> 重画屏幕,...
分类:系统相关   时间:2014-11-23 01:49:51    阅读次数:411
python yield 生成器
一。深入研究>>> def get_0_1_2():... yield 0... yield 1... yield 2...>>> get_0_1_2 #函数类型>>> generator = get_0_1_2()>>> generator #生成器>>> generat...
分类:编程语言   时间:2014-11-23 01:51:48    阅读次数:280
关于解决 The processing instruction target matching "[xX][mM][lL]" is not allowed
在处理和保存XML文件时,出现The processing instruction target matching "[xX][mM][lL]" is not allowed 错误,也就是你的xml配置文件格式错误。所以,要自己检查一下格式,这个在网上是搜不到的。最容易疏忽的错误就是,用eclips...
分类:其他好文   时间:2014-11-23 01:50:48    阅读次数:201
从Objective-C转战C++ Android平台开发实践(C++/Java)
是否使用虚拟方法最好在不用“virtual”关键字的情况下声明所有cpp成员方法但是在写CPP头文件时,请检查有没有父类的方法被当前的工作覆盖。如果有,请确保将这些方法改为虚拟方法。如果从父类继承了一个虚拟方法,确保这个方法可以继承“virtual”(虚拟)关键字public/protected/p...
分类:移动开发   时间:2014-11-23 01:50:48    阅读次数:259
Check .NET Version with Inno Setup
原文 http://www.kynosarges.de/DotNetVersion.htmlInno Setupby Jordan Russell is a great installation scripting program, but lacks a built-in function to ...
分类:Web程序   时间:2014-11-23 01:49:26    阅读次数:284
汇编 .s 与 .S大小写区别
汇编 .s 与 .S大小写区别...
分类:其他好文   时间:2014-11-23 00:45:21    阅读次数:776
Android在thread中Toast不能显示问题解决
Android在thread中Toast不能显示问题解决方案...
分类:移动开发   时间:2014-11-23 00:47:28    阅读次数:222
怎么用PHP在HTML中生成PDF文件
原文:Generate PDF from html using PHP 译文:使用PHP在html中生成PDF 译者:dwqs 利用PHP编码生成PDF文件是一个非常耗时的工作。在早期,开发者使用PHP并借助FPDF来生成PDF文件。但是如今,已经有很多函数库可以使用了,并且能够从你提供的HTML文件生成PDF文档。这让原先耗时的工作变得非常简单了。 FPDF是很早就被使用的,其特点如下: FPDF FPDF是一个允许使用纯PHP生成PDF文档的P...
分类:Web程序   时间:2014-11-23 00:48:07    阅读次数:186
最短路径问题(杭电3790)(Dijsktra)
最短路径问题 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 14187    Accepted Submission(s): 4340 Problem Description 给你n个点,m条无向边,每条边都有长...
分类:Web程序   时间:2014-11-23 00:47:28    阅读次数:251
UVA 10534 Wavio Sequence(LIS)
Problem D Wavio Sequence  Input: Standard Input Output: Standard Output Time Limit: 2 Seconds   Wavio is a sequence of integers. It has some interesting properties. ·  Wavio is of odd length i....
分类:其他好文   时间:2014-11-23 00:46:56    阅读次数:343
Vs2012在Linux开发中的应用(7): 编译UBOOT
在完成前一节所述的操作后,我们就可以尝试在VS下编译UBOOT了。 我们仅仅需要改写项目中的make.py: #user code begin    classCUBootMake:    error=False    defBuild(self,chan):         self.error=False         exec_command(chan,          ...
分类:系统相关   时间:2014-11-23 00:45:07    阅读次数:251
UVA 10651 Pebble Solitaire(记忆化)
Pebble solitaire is an interesting game. This is a game where you are given a board with an arrangement of small cavities, initially all but one occupied by a pebble each. The aim of the game is to re...
分类:其他好文   时间:2014-11-23 00:47:03    阅读次数:196
3n+1问题(南阳oj)
3n+1问题 时间限制:1000 ms  |  内存限制:65535 KB 难度:0 描述 对于任意大于一的自然数n,若n为奇数,则将n变为3n+1,否则变为n的一半,经过若干次这样的变换,一定会使n变为1.求输出变换的次数,注 要求次数要对3取余;例如3->10->5->16->8->4->2->1 变换了7次,对3取余的1; n9   输入测试数...
分类:其他好文   时间:2014-11-23 00:43:56    阅读次数:179
UVA 590 Always on the run(DP)
Screeching tires. Searching lights. Wailing sirens. Police cars everywhere. Trisha Quickfinger did it again! Stealing the `Mona Lisa' had been more difficult than planned, but being the world's best a...
分类:其他好文   时间:2014-11-23 00:45:42    阅读次数:151
1358条   上一页 1 ... 72 73 74 75 76 77 78 ... 80 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!