求职笔试中,考察进程通信方式是一个老生长谈的问题,每次都让我答得一头雾水,于是我总结了一下 这些必须了解的知识点。
实现linux进程通信的方式有6种:
--内存共享
--信号(Singal)
--管道(Pipe)
--消息队列(Message)
--信号量(Semaphore)
--socket
消息队列通信 请关注:h...
分类:
系统相关 时间:
2014-11-24 19:16:23
阅读次数:
199
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ UIAlertView *dialog = [[UIAlertView alloc] initWithTitle:@"请输入分组名称" message:@"\n" de....
分类:
其他好文 时间:
2014-11-24 17:06:04
阅读次数:
160
In Ubuntu 14.04 with Samba server installed, every time you will get this error message when execute sudo command. run sudo?pam-auth-update and unselect "SMB password synchronization", this error...
分类:
其他好文 时间:
2014-11-24 15:32:00
阅读次数:
202
想跟一个不认识的人聊天,在ie中输入tencent://message/?Menu=yes&uin=这里替换成QQ号码&Site=itbulu&Service=300&sigT=45a1e5847943b64c6ff3990f8a9e644d2b31356cb0b4ac6b24663a3c8dd0f8aa12a595b1714f9d45
邮箱...
分类:
其他好文 时间:
2014-11-24 15:27:38
阅读次数:
221
what is mosquitto?check this out!http://mosquitto.orgwhat is MQTT?check this out.http://mqtt.orgsudo apt-get install libc-ares-dev libc-ares2 -ywget -...
分类:
系统相关 时间:
2014-11-23 18:57:35
阅读次数:
312
首先要提醒,mu4e发送邮件是基于gnus的,如果不知道这点,基本上是不会发送成功的。我持续遇到503认证失败错误。配置如下:首先在.emacs.d/init.el文件中如下:;; alternatively, for emacs-24 you can use:
(setq message-send-mail-function 'smtpmail-send-it
smtpmail-def...
分类:
其他好文 时间:
2014-11-23 15:59:32
阅读次数:
166
网页中插入QQ在线功能本随笔记录的是网页中如何插入qq在线聊天,这里讲解的是 普通QQ在线聊天操作。例:第一种方式 使用tencent://message/?uin=QQ号码&Site=blog.sina.com.cn&Menu=yes 链接来操作 这里注意 img标签,这里例出三....
分类:
Web程序 时间:
2014-11-23 15:57:00
阅读次数:
258
从远程shell中注销时,直接关闭shell(或输入exit 或 logout)。 作为superuser从shell中关机时,向下面介绍的这样运行shutdown命令即可:shutdown ? [options]?? time?? [message] shutdown命令让linux系统...
分类:
系统相关 时间:
2014-11-23 11:50:43
阅读次数:
387
题目:如下对应关系'A' -> 1'B' -> 2...‘Z’ -> 26现在给定一个字符串,返回有多少种解码可能。例如:Given encoded message"12", it could be decoded as"AB"(1 2) or"L"(12).思路:动态规划。dp[i]表示s[0,....
分类:
其他好文 时间:
2014-11-23 00:27:03
阅读次数:
237
Decode WaysA message containing letters from A-Z is being encoded to numbers using the following mapping:'A' -> 1'B' -> 2...'Z' -> 26Given an encoded ...
分类:
其他好文 时间:
2014-11-22 18:53:35
阅读次数:
308