1、U盘构造 U盘由芯片控制器和闪存两部分组成。 芯片控制器负责与PC的通讯和识别,闪存用来做数据存储; 闪存中有一部分区域用来存放U盘的固件,它的作用类似于操作系统,控制软硬件交互;固件无法通过普通手段进行读取。 BadUSB就是通过对U盘的固件进行逆向重新编程,相当于改写了U盘的操作系统而进行攻 ...
分类:
其他好文 时间:
2017-04-12 11:50:31
阅读次数:
2408
One of the most important thing when building custom form component is adding accessbility support. The component should be focusable. we can achieve ...
分类:
数据库 时间:
2017-04-12 10:04:46
阅读次数:
207
$("#模态框名字").modal({ show:true, backdrop:'static' }); 或者$('#模态框名字').modal({backdrop: 'static', keyboard: false}); ...
分类:
其他好文 时间:
2017-04-11 01:12:57
阅读次数:
197
http://www.ziqiangxuetang.com/bootstrap/bootstrap-modal-plugin.html 方法 下面是一些可与 modal() 一起使用的有用的方法。 1 2 3 $('#identifier').modal({ keyboard: false }) $ ...
分类:
其他好文 时间:
2017-04-09 18:01:33
阅读次数:
159
云计算中最主要的技术就是虚拟机,开源虚拟机已经kvm已经集成到Linux内核!针对虚拟机浪费资源(CPU、内存、存储等)较大的缺陷,google力推Docker容器和容器管理平台Kubernetes。 KVM:就是Keyboard Video Mouse的缩写。KVM 交换机通过直接连接键盘、视频和 ...
分类:
其他好文 时间:
2017-04-08 16:01:00
阅读次数:
297
打开电源后,先加载基本输入/输出系统BIOS进行自检,即所谓的PSOT(Powdr-on Self Test),包括内存memory、键盘keyboard?、显卡Graphics?、RAID卡、硬盘Hard drive/disk等;其详细过程如下: 首先加载BIOS程序,并通过BIOS程序的运行去加 ...
分类:
移动开发 时间:
2017-04-01 13:48:51
阅读次数:
199
个人认为ubantu下fcitx比sogo好用 安装fcitx首先到ubantu软件中心下载fcitx两个软件,一个是配置软件,一个是输入法软件 到system setting中language support里将keyboard input method system改成fcitx 然后安装中文输 ...
分类:
系统相关 时间:
2017-03-31 12:51:34
阅读次数:
170
Given a List of words, return the words that can be typed using letters of alphabet on only one row's of American keyboard like the image below. Examp ...
分类:
其他好文 时间:
2017-03-30 22:28:51
阅读次数:
165
1、更新,相信大家都是有强迫症的 sudo apt-get update & apt-get upgrade 2、键盘会打出乱码是选择键盘不对,可以使用如下命令选择 English(US) sudo dpkg-reconfigure keyboard-configuration 3、网卡只有NAT一 ...
分类:
系统相关 时间:
2017-03-29 12:24:30
阅读次数:
265
一、Android的LaunchMode 共有四种启动模式 1、standard 标准启动模式,Activity的默认启动模式。Activity的每次启动都创建新的示例 2、singleTop 栈顶复用模式,当启动的Activity处于栈顶时,不再创建新的活动实例。将回调onNewIntent方法。 ...
分类:
移动开发 时间:
2017-03-26 15:27:21
阅读次数:
293