最近使用bootstrap做网站的时候发现,在ie8下的媒体查询一直失效: 后来解决了,做如下记录: 1、必须运行在服务器下 2、hack 条件语法,如下: 这样写有一点不足的地方是,ie9同样也加载了上述两个文档,改成[if lte ie 8] 或者 [if lt IE 8] 都不生效,不知道为什 ...
分类:
其他好文 时间:
2017-02-27 22:55:31
阅读次数:
172
Curious Cupid Curious Cupid Curious Cupid There are K There are K different languages in the world. Each person speaks one and only one language. Ther ...
分类:
编程语言 时间:
2017-02-27 22:54:57
阅读次数:
222
I have recently completed a project which was the big job of visual course. As a homework, of course, it is non-routine. It need a plan to finish the ...
分类:
其他好文 时间:
2017-02-27 22:54:39
阅读次数:
237
题意:给定限制条件(a,b)表示a必须在b之前,求所有合法序列中,小的数尽量在前面的方案 题解:首先我们根据限制条件建反向图,然后在反向图上求字典序最小的拓扑序(队列改为堆),逆序输出即可。 #include <queue> #include <functional> #include <cstdi ...
分类:
编程语言 时间:
2017-02-27 22:54:20
阅读次数:
243
申明:该文档只是记录我的编写和理解过程,代码部分参考了较多的文章,如有意见请联系我删除,谢谢。 目标: 使用v4l2提供API,完成摄像头视频采集,并使用帧缓存显示。 准备工作: 框架理解: 关键点理解: 摄像头采集的循环buf 必须使用循环buf,否则摄像头采集图像显示不会连续。 摄像头的分辨率和 ...
分类:
其他好文 时间:
2017-02-27 22:52:30
阅读次数:
510
http://codeforces.com/problemset/problem/765/F (题目链接) 题意 给出$n$个数的序列,$m$次询问,每次查询区间$[l,r]$之间相差最小的两个数的差。 Solution 迷,右转题解→_→:jump 奇怪的线段树 细节 不造 代码 ...
分类:
其他好文 时间:
2017-02-27 22:52:00
阅读次数:
242
Allows for making a properties file from a classpath location available as Properties instance in a bean factory. Can be used to populate any bean pro ...
分类:
编程语言 时间:
2017-02-27 22:51:09
阅读次数:
300
电脑异常报警声音:1短 内存刷新失败2短 内存ECC较验错误3短 系统基本内存(第一个64KB)检查失败4短 系统时钟出错5短 中央处理器(CPU)错误6短 键盘控制器错误7短 系统实模式错误,不能切换到保护模式8短 显示内存错误(显示内存可能坏了)9短 ROM BIOS校验和错误1长3短 内存错误 ...
分类:
其他好文 时间:
2017-02-27 22:49:57
阅读次数:
193
sudoapt-getupdate#升级aptsudoapt-getinstallopenssh-server#安装opensshps-ef|grepsshDf-hsudofdisk-lsudomkfs.ext4/dev/sdb获取分区UUIDsudoblkid/dev/sdb查看权限sudolletc/fstab夺取权限sudochmod775etc/fstab权限变化编辑挂在点sudovietc/fstabUUID=caef2e94-b881-4032-a..
分类:
系统相关 时间:
2017-02-27 22:08:37
阅读次数:
262
随着云撞库傻大黑粗攻击,AD已经成为最严重的攻击目标二次校验系统是目前各企业sa都梦寐以求的神器,由于攻击手段千变万化,各商业二次校验产品应变能力较弱,结合多变的业务需求,小米自己开发了一套二次校验系统二次校验系统覆盖:邮箱客户端outlookanywhereEWS手机邮箱actives..
分类:
移动开发 时间:
2017-02-27 22:08:27
阅读次数:
397
Nginx的rewriterewriteregexreplacementflag;rewrite^/p_w_picpaths/(.*\.jpg)$/imgs/$1所有的图片跳转到/imgs/$1break;(结束位)rewrite^/shop/(.*\html)$/tuangou/$1break;rewrite^/shop/(.*\.php)$http://www.baidu.com/$1[redirect|permanent];last-基本上都用这个Flag(多级..
分类:
其他好文 时间:
2017-02-27 22:05:56
阅读次数:
186
进程是什么?狭义定义:进程是正在运行的程序的实例(aninstanceofacomputerprogramthatisbeingexecuted)。广义定义:进程是一个具有一定独立功能的程序关于某个数据集合的一次运行活动。它是操作系统动态执行的基本单元,在传统的操作系统中,进程既是基本的分配单元,也是基..
分类:
编程语言 时间:
2017-02-27 22:05:00
阅读次数:
286
环境:Python3.5[root@xiaoshui23:52:22~/test]#ll
total16
drwxr-xr-x.2rootroot4096Feb2222:45sed
-rwxr-xr-x.1rootroot105Feb2723:47test01.py
-rw-r--r--.1rootroot41Feb2723:48test02.sh
drwxr-xr-x.2rootroot4096Feb2723:36tmp3
[root@xiaoshui23:52:25~/test]#cattest01..
分类:
编程语言 时间:
2017-02-27 22:04:11
阅读次数:
236
ES老集群用的2.4.1版本,跑的比较好就一直没动,最近看资料ES5.X已经稳定,并且性能有较大提升,心里就发痒了,但由于业务要保持高可以用的属性,就得想一个平滑升级的方案,最后想到了多实例过度的办法,5.X版本网上介绍配置变化较大,也做好了踩坑准备,确定好要升级后,立刻..
分类:
其他好文 时间:
2017-02-27 22:02:49
阅读次数:
1671
1,Linux下打开串口设备,信号模型读写程序2,串口读写的IO复用Select模型3,Linux下打开串口设备,读写程序1,Linux下打开串口设备,信号模型读写程序
root@linux:/tmp/serial#catmain.c
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<..
分类:
系统相关 时间:
2017-02-27 22:02:26
阅读次数:
211
参考链接:1.https://technet.microsoft.com/zh-cn/library/dn486809(v=ws.11).aspx2.https://technet.microsoft.com/zh-cn/library/jj863566(v=ws.11).aspx3.https://technet.microsoft.com/zh-cn/library/jj863563(v=ws.11).aspx4.https://technet.microsoft.com/zh-cn/libra..
分类:
Windows程序 时间:
2017-02-27 22:01:41
阅读次数:
1515
Givenacirculararray(thenextelementofthelastelementisthefirstelementofthearray),printtheNextGreaterNumberforeveryelement.TheNextGreaterNumberofanumberxisthefirstgreaternumbertoitstraversing-ordernextinthearray,whichmeansyoucouldsearchcircularlytofinditsnextg..
分类:
编程语言 时间:
2017-02-27 22:01:23
阅读次数:
253