1.解压缩文件:tar -xzvf ***.tar.gz会解出一个文件:libflashplayer.so 和一个目录 usr2.将文件libflashplayer.so 拷贝到目录 /usr/lib/mozilla/plugins/(火狐浏览器plugins 目录)cp libflashplay....
分类:
其他好文 时间:
2014-11-17 01:40:33
阅读次数:
205
前言:本文翻译自Dean Edwards的一篇文章,原文地址:http://dean.edwards.name/weblog/2009/03/callbacks-vs-events/。 文章主要指出了用“回调模式实现自定义事件”的一些弊端,同时提出了一种解决方案,即将回调的函数包装成原生事件,...
分类:
其他好文 时间:
2014-11-17 01:40:58
阅读次数:
227
Session:import java.lang.reflect.Method;import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.util.Ha...
分类:
其他好文 时间:
2014-11-17 01:43:02
阅读次数:
199
3.3.7-- =============================================-- Create database template-- =============================================USE masterGO-- Drop th...
分类:
数据库 时间:
2014-11-17 01:40:04
阅读次数:
308
aspxgridview在使用window.showModelDialog(或者window.showModelessDialog)打开的窗体中居然无法进入编辑!好奇怪啊 。点击后显示“无法显示网页”。。。地址栏变成“javascript:aspxGVStartEditRow('ASPxGridVi...
分类:
Web程序 时间:
2014-11-17 01:41:18
阅读次数:
235
对比表单[url=javascript:;]POST[/url]和fsockopen提交两种不同方式的区别。表单POST方式提交情况下$_POST 与 [url=javascript:;]php[/url]://input可以取到值,$HTTP_RAW_POST_DATA 为空$_POST 以关联....
分类:
Web程序 时间:
2014-11-17 01:40:18
阅读次数:
191
对象其实就是一种引用类型。而对象的值就是引用类型的实例。在JavaScript 中引用类型是一种数据结构,将数据和功能组织在一起。它也常被称做为类,但JavaScript 中却没有类的概念。虽然JavaScript 是一门面向对象的语言,却不具备传统面向对象语言所支持的类和接口等基本结构。## 对象...
分类:
编程语言 时间:
2014-11-17 01:41:08
阅读次数:
393
DOM树模型document |-html |-head |-.... |-body |-.....要解析页面的前提是要拿到一个对象,然后利用树之间前后的关系进行对象的遍历和操作。在DHTML的帮助文档当中每个对象有属性、行为、集合、事件、滤镜、方法、对象、样式等描...
分类:
其他好文 时间:
2014-11-17 01:40:08
阅读次数:
174
在ExtJS中,构造一个树形结构变得很简单。 需要用到的: Ext.tree.Panel TreePanel提供树形结构的UI表示的树状结构数据。 一个TreePanel必须绑定一个Ext.data.TreeStore。TreePanel通过columns配置,支持多列。 ...
分类:
Web程序 时间:
2014-11-17 01:40:36
阅读次数:
278
又是考输入输出#include #include #include #include #include #include using namespace std;char buf[1048577];bool is_alphanumerical(char &ch) { if (ch >= '0'...
分类:
其他好文 时间:
2014-11-17 01:40:14
阅读次数:
205
node-webkit 是什么就不介绍了注意官网的一句话 ”node-webkit is based onChromiumandnode.js " 所以node-webkit 实际是嵌套了个Chromium浏览器 ,而不是webkit内核。1前端目录,配置package.json{ "main...
分类:
Web程序 时间:
2014-11-17 01:38:36
阅读次数:
220
打开网络的 Socket 链接。 语法: resuce fsockopen(string hostname, int port, int [errno], string[errstr], int [timeout]);返回值: 资源;函数种类: 网络系统;内容说明: 目前这个函数提供两个 Soc.....
分类:
Web程序 时间:
2014-11-17 01:39:25
阅读次数:
244
Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path.N...
分类:
其他好文 时间:
2014-11-17 01:39:53
阅读次数:
173
Implement int sqrt(int x).Compute and return the square root of x.Analysis:Using binary search to find the solution. However, what need to be consider...
分类:
其他好文 时间:
2014-11-17 01:40:04
阅读次数:
205
Uva 10583 Ubiquitous Religions
分类:
其他好文 时间:
2014-11-17 01:38:13
阅读次数:
405
BIOS中断大全:“INT 14H ~ INT 1AH” 3、串行口服务(Serial Port Service——INT 14H) 00H —初始化通信口01H —向通信口输出字符02H —从通信口读入字符 03H —读取通信口状态 04H —扩充初始化通信口 (1)、功能00H功能描述:初始化通...
分类:
其他好文 时间:
2014-11-17 01:38:04
阅读次数:
240
给定一个board字符矩阵,可以从任意一个点开始经过上下左右的方式走,每个点只能走一次,如果存在一条路走过的字符等于给定的字符串,那么返回trueGiven a 2D board and a word, find if the word exists in the grid.The word can...
分类:
其他好文 时间:
2014-11-17 01:37:43
阅读次数:
306