上一页 1 2 3 4 5 6 ··· 21 下一页
摘要: void die(const char *msg) { perror(msg); exit(errno); } 阅读全文
posted @ 2016-09-27 19:06 jeremyatchina 阅读(346) 评论(0) 推荐(0) 编辑
摘要: Re-execute itself from elf file. 阅读全文
posted @ 2016-09-27 18:40 jeremyatchina 阅读(243) 评论(0) 推荐(0) 编辑
摘要: <pre name="code" class="brush: cpp;"> 代码 </pre> 阅读全文
posted @ 2016-08-15 13:55 jeremyatchina 阅读(125) 评论(0) 推荐(0) 编辑
摘要: CVE-2016-0822-MTK-drivers/misc/mediatek/connectivity/common/combo/linux/wmt_dev.c#1158 CVE-2016-0822 PoC : https://github.com/ScottyBauer/Android_Kern 阅读全文
posted @ 2016-08-15 13:54 jeremyatchina 阅读(479) 评论(0) 推荐(0) 编辑
摘要: CVE-2016-2502-drivers/usb/gadget/f_serial.c in the Qualcomm USB driver in Android.Buffer Overflow Vulnerability reported by #plzdonthackme, Soctt. 阅读全文
posted @ 2016-08-15 13:43 jeremyatchina 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 原理 : 將資料逐一插入以排序好的序列中 Algo : for i <- 2 to n do 將a[i] 插入 a[1] ~ a[i-1] 之間適當的位置,使a[1]~a[i]排好 #include <stdio.h> #define SIZE 8 void sort(int array[], in 阅读全文
posted @ 2016-02-29 18:05 jeremyatchina 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 前言: 很多接案的人,都會碰到需要接金流的時候。而歐付寶是個台灣的金流平台。 這邊記錄下,串接的心得。我用的語言是Java, 採liferay這個portal平台,不過這份教學當然適合servlet. 不過官方技術文件,太規格導向了。應該要方便developer快速開發才是 很多資訊還是要向官... 阅读全文
posted @ 2015-12-11 01:52 jeremyatchina 阅读(1453) 评论(0) 推荐(0) 编辑
摘要: int x = 0;if (x = 0 || x == 0) printf("%dn", x);printf("%dn", x); 參考C的優先表, 其實就是if (x = (0 || x == 0))會printf出兩個1.同一优先级的运算符,运算次序由结合方向所决定。简单记就是:! > 算术运... 阅读全文
posted @ 2015-09-24 14:16 jeremyatchina 阅读(257) 评论(0) 推荐(0) 编辑
摘要: Question : Write an efficient algorithm that searches for a value in anmxnmatrix. This matrix has the following properties:Integers in each row are s... 阅读全文
posted @ 2015-08-30 10:48 jeremyatchina 阅读(228) 评论(0) 推荐(0) 编辑
摘要: Question :Search a 2D Matrix IIWrite an efficient algorithm that searches for a value in anmxnmatrix. This matrix has the following properties:Integer... 阅读全文
posted @ 2015-08-19 13:09 jeremyatchina 阅读(335) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 21 下一页