上一页 1 2 3 4 5 6 7 ··· 102 下一页
摘要: c文件 #include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <signal.h> pid_t pid; int counter = 1; void handler(int sig) { counter -= 1; p 阅读全文
posted @ 2019-06-02 15:57 mqxnongmin 阅读(170) 评论(0) 推荐(0)
摘要: 在做内核驱动开发的时候。能够使用/proc下的文件,获取对应的信息。以便调试。 大多数/proc下的文件是仅仅读的。但为了演示样例的完整性。都提供了写方法。 方法一:使用create_proc_entry创建proc文件(简单,但写操作有缓冲区溢出的危急)。 方法二:使用proc_create和se 阅读全文
posted @ 2019-06-02 14:02 mqxnongmin 阅读(359) 评论(0) 推荐(0)
摘要: 版权声明:本文为博主原创文章,未经博主同意不得转载。 https://blog.csdn.net/linlin2294592017/article/details/30468975 实现效果: 随着尺码框选项变多,高度也就添加。上边整体的大框高度也添加。简单的样式代码例如以下 代码: <div st 阅读全文
posted @ 2019-06-02 13:34 mqxnongmin 阅读(135) 评论(0) 推荐(0)
摘要: 版权声明:本文为博主原创文章,转载请说明原文链接。 https://blog.csdn.net/zhengwei223/article/details/30510149 --****************基本查询**************** --查询全部员工的姓 --消除反复的姓 --创建一个 阅读全文
posted @ 2019-06-02 11:40 mqxnongmin 阅读(299) 评论(0) 推荐(0)
摘要: 版权声明:本文为博主原创文章,未经博主同意不得转载。 https://blog.csdn.net/Henzox/article/details/34410137 因为 QQ password做了特殊的保护,所以通过远程注入得到password框内容以及通过钩子来得到键盘消息均不能探測到 QQ 的pa 阅读全文
posted @ 2019-06-02 10:36 mqxnongmin 阅读(524) 评论(0) 推荐(0)
摘要: 版权声明:本文为博主原创文章,未经博主同意不得转载。 https://blog.csdn.net/zhsenl/article/details/37565519 本文为senlie原创。转载请保留此地址:http://blog.csdn.net/zhengsenlie 1.内存管理架构 Python 阅读全文
posted @ 2019-06-02 08:56 mqxnongmin 阅读(294) 评论(0) 推荐(0)
摘要: 版权声明:本文为博主原创文章。未经博主同意不得转载。 https://blog.csdn.net/akof1314/article/details/36048747 捕获的方法摘自《IronPython in Action》一书,代码例如以下: 1 2 3 4 5 6 7 8 9 10 11 12 阅读全文
posted @ 2019-06-01 20:32 mqxnongmin 阅读(332) 评论(0) 推荐(0)
摘要: Antenna Placement Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 6445 Accepted: 3182 Description The Global Aerial Research Centre has bee 阅读全文
posted @ 2019-06-01 19:25 mqxnongmin 阅读(93) 评论(0) 推荐(0)
摘要: 版权声明:本文为博主原创文章,未经博主同意不得转载。 https://blog.csdn.net/xcltapestry/article/details/25471361 关于线图(Line Chart)怎样画,我曾经写过非常具体的说明,仅仅是在这附一下,如今的基类是怎么弄的。 基类把有关线图的全部 阅读全文
posted @ 2019-06-01 18:02 mqxnongmin 阅读(730) 评论(0) 推荐(0)
摘要: android设置背景色为透明 方法一: 仅仅要在配置文件内activity属性配置内加上 android:theme="@android:style/Theme.Translucent" 就好了。 这样就调用了android的透明样式。 方法二: 先在res/values下建colors.xml文 阅读全文
posted @ 2019-06-01 16:05 mqxnongmin 阅读(3079) 评论(0) 推荐(1)
上一页 1 2 3 4 5 6 7 ··· 102 下一页