[C++]An example of hash_map

2019-4-23 写技术

#include <hash_map> #include <string> #include <iostream> using namespace std; using namespace stdext; int main(){ hash_map<string, string> mymap; mymap["aa"] = "Hello!"; mymap["bb"] = "You are who?"; mymap["cc"] = "See you!"; cout<<mymap["bb"]<<...

阅读全文>>

标签: C++

评论(0) 浏览(1208)

[PHP]How to enable mod_expires&mod_headers in order to achive static cache

2019-4-10 写技术

First: Open this line. LoadModule expires_module modules/mod_expires.so Second: Add this segment. <IfModule mod_expires.c>     ExpiresActive On     ExpiresByType text/html "now plus 5 minutes"     ExpiresByType text/css "now p...

阅读全文>>

标签: php

评论(0) 浏览(1241)

How to download ckplayer video

2019-4-1 写技术

There is a simple program by which you can download the ckplayer video. After create the list of download URL, copy it to download tools. After download aff of the files. Use the command to compare into a big file in windows: copy/b E:\temps\*.ts E:\temps\new.ts There is the...

阅读全文>>

标签: JS html

评论(0) 浏览(2928)

通过禁止Flash干掉“FF新鲜事”广告弹窗

2019-3-23 写技术

最近Addobe 的Flash被国厂化之后,每天弹名为“FF新鲜事”的广告窗口,霸占大半个屏幕,无齿之极。用各种杀毒软件删除、禁用Flash软件都没有,下次打开电脑又死灰复燃,一次我在别人电脑上发现金山杀毒都把Flash的广告进程作为自己的保护进程在跑,看来这棵毒瘤来头不小。 后来我手动删除整个Macromed目录,并且在同位置建了一个同名的文件,且改为只读,且不知有没有效。 直到有一天,我要用Dreamweaver了,一打开Dreamweaver,显示搜索信息中,没过多久显示无法创建目录 C:\Windows\SysWOW64\Macromed\Flash...

阅读全文>>

评论(0) 浏览(2480)

[JS]Load pictures lasily

2019-3-23 写技术

/* Load pictures lasily. */ $("img.data_lazy").each(function(){ var id = $(this); var data = $(this).attr("data_lazy"); var img = new Image(); img.src = data; img.onload = function(){ img.onload = null; id.attr("src", data); } });

阅读全文>>

标签: JS

评论(0) 浏览(1259)

VS2005添加X64编译平台

2019-3-21 写技术

VS2005添加X64编译平台,方法如下: 1)打开控制面板->程序/卸载程序->更改->下一步->添加或移除功能; 控制面板里,右击“VS2005 ”->更改->点击“添加或移除功能” 2)在语言工具里,点开”+Visual C++”–>选择“X64编辑器和工具”,以及“Visual C++运行库”–>OK–>安装即可。

阅读全文>>

标签: C++

评论(0) 浏览(1536)

[php]Onethink used 8421 code in checkbox

2019-3-16 写技术

Onethink used 8421 code in checkbox, and if it is extra values must add processing function in logic model. Like that: Application\Admin\Logic\ProductLogic.class.php   protected $_auto = array( array('duoxuan', 'getDuoxuan', self::MODEL_BOTH, 'callback'), );  ...

阅读全文>>

标签: php

评论(0) 浏览(1248)

[html]Bootstrat dropdown menu while hover

2019-3-11 写技术

In order to display the dropdown menu while hover the nav, I add some scripts like this: function isMobile(){ if (navigator.userAgent.match(/Android/i) || navigator.userAgent.indexOf('iPhone') != -1 || navigator.userAgent.indexOf('iPod') != -1 || navigator.userAgent.indexOf('iPad') != -1) {...

阅读全文>>

标签: html

评论(0) 浏览(1318)

[OJ]1015: 机器人训练

2019-2-25 写技术

Description Dr. Shelden最近制造了一种新机器人,现在他要开始给他的机器人做一些简单训练啦。 Shelden在实验室的地面上铺了一些箭头,这些箭头可以看成是二维平面上的一些有向线段,而且都是水平线段或垂直线段,将这些线段从1开始编号,机器人一开始在第1条线段的起点处。现在shelden要写一个程序让他的机器人能够规划一条最短的路径按编号顺序从小到大通过所有的有向线段(只有从线段的起点走到终点才算通过)。机器人每次都只能做90°转弯,而且由于每次转弯都将耗费很大能量,所以shelden希望所求路径的转弯总次数最少。比如在下面这个例子中,实验...

阅读全文>>

标签: C

评论(0) 浏览(1296)

[OJ]1014:西湖三人行

2019-2-19 写技术

Description 去年10月份,FightOn队伍的三个人YZW、HKX、WX在参加完杭州赛区后想到杭州最有名的西湖去玩。他们所能选择的交通方式只有三种: 走路,速度为1m/s,每人每千米花费1元钱(因为他们会消耗体力,需要买水、食物等)。 搭公交,速度为4m/s,每人2元,每条公交路线都按照一定的方向。 打的,速度为8m/s,起步价3千米内10元,以后每千米2元,每个站点都有的士。 当然杭州的交通秩序不像长沙,所以如果想改变交通方式只能在每个站点改换。三个人现在囊中羞...

阅读全文>>

标签: C

评论(0) 浏览(1379)

Powered by anycle 湘ICP备15001973号-1