eth0,eth1,eth2……代表网卡一,网卡二,网卡三……lo代表127.0.0.1,即localhost参考:Linux命令:ifconfig功能说明:显示或设置网络设备 语 法:ifconfig [网络设备][down up -allmulti -arp -promisc][add][de....
分类:
其他好文 时间:
2014-09-04 18:56:09
阅读次数:
190
原文:http://www.cnblogs.com/xiezhengcai/p/3956401.html1. 服务端io.on('connection',function(socket));监听客户端连接,回调函数会传递本次连接的socketio.sockets.emit('String',data...
先说说我的使用场景:我写了一个activity,使用了actionbar.在这个activity中,有fragment,默认先打开一个 homeFragment,点击某个按钮会进入 detailFragment.当启动detailFragment 时,问题出现了:我希望在detailFragment...
分类:
移动开发 时间:
2014-09-04 18:18:19
阅读次数:
556
空白最多的最大子矩阵:
#include
#include
#include
using namespace std;
const int maxn = 1005;
int mat[maxn][maxn],up[maxn][maxn],left[maxn][maxn],right[maxn][maxn];
int main()
{
int t;
scanf("%d",&t);
...
分类:
其他好文 时间:
2014-09-04 17:02:59
阅读次数:
209
我们的网页因为 CSS 而呈现千变万化的风格。这一看似简单的样式语言在使用中非常灵活,只要你发挥创意就能实现很多比人想象不到的效果。特别是随着 CSS3 的广泛使用,更多新奇的 CSS 作品涌现出来。今天给大家带来 CSS 三角形绘制方法复制代码 代码如下:#triangle-up {width: ...
分类:
Web程序 时间:
2014-09-04 14:40:49
阅读次数:
173
做搜索图片时发现searchView系统显示默认的搜索按钮只是一个小箭头,样子很丑,想改变这个图标。于是就在stackoverflow这个网站找到了答案,直接上代码:
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
inflater.inflate(R....
分类:
移动开发 时间:
2014-09-04 13:27:09
阅读次数:
264
在 首选项 中,Android--> Build 下,有一个复选框: skip packaging and dexing until export or launch.(Speed up automatic builds on file save )取消该选项,再重新cleanup一下,即可在bin...
分类:
系统相关 时间:
2014-09-04 10:28:59
阅读次数:
238
1.tp driver的tpd_down()和tpd_up()函数中不需要上报id号,上层会自动进行匹配;
2.tpd_up()函数中只需要上报BTN_TOUCH和mt_sync信息,其他信息不用上报,如下:
static void tpd_up(int x, int y,int *count)
{
input_report_key(tpd->dev, BTN_TOUCH, ...
分类:
移动开发 时间:
2014-09-04 09:47:07
阅读次数:
283
Two SumGiven an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the...
分类:
其他好文 时间:
2014-09-03 22:31:37
阅读次数:
386
Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to root).For e...
分类:
其他好文 时间:
2014-09-03 21:13:57
阅读次数:
142