上一页 1 2 3 4 5 6 7 8 ··· 21 下一页
摘要: 在網頁中如何使用Sikuli找特定字串呢?原理:我們可以使用 組合鍵 ctrl + 來放大網頁的比例,使得sikuli的OCR功能找的更清準實作:for i in range(4): type("+", KEY_CTRL)which = input() # Let user type the... 阅读全文
posted @ 2014-10-20 22:55 jeremyatchina 阅读(352) 评论(0) 推荐(0) 编辑
摘要: each of which 在以下為 同位語,非關代。1. An urn contains two balls, each of which is known to be either white or black.2. Q. Many companies set a number of objec... 阅读全文
posted @ 2014-10-19 18:51 jeremyatchina 阅读(2245) 评论(0) 推荐(0) 编辑
摘要: have PP是表示"從以前到現在"都直在做的事情Mr. Chen has taught English for 30 years.---表示teach的動作持續了30年,但Mr. Chen has died for 30 years.---就錯了!Mr. Chen 不能死了,隔天再die一次,一直... 阅读全文
posted @ 2014-10-19 17:42 jeremyatchina 阅读(302) 评论(0) 推荐(0) 编辑
摘要: from time import strftimesetTime = strftime("%Y_%m_%d_%H_%M_%S", time.localtime()) // In Jython我们先导入必须用到的一个module>>> import time设置一个时间的格式,下面会用到>>>ISOT... 阅读全文
posted @ 2014-10-15 11:41 jeremyatchina 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 1. git the AlarmClock source code on AOSP2. select 'import project' by android-studio & we will revise this codeAlarmKlaxon.java L89 //mVibrator ... 阅读全文
posted @ 2014-10-07 16:22 jeremyatchina 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 以橫式格式輸入方程式您可以使用數學自動校正程式碼,迅速輸入大多數的方程式。例如,若要對齊方程式陣列,您可以使用 @ 和 &,如下所示:\eqarray(x+1&=2@1+2+3+y&=z@3/x&=6)解析成:以下是其他一些範例:範例橫式格式內建格式向量(abc)\vec(abc)\hat方塊化公式... 阅读全文
posted @ 2014-08-08 13:07 jeremyatchina 阅读(727) 评论(0) 推荐(0) 编辑
摘要: /*** CVE-2014-4014 Linux Kernel Local Privilege Escalation PoC** Vitaly Nikolenko* http://hashcrack.org** Usage: ./poc [file_path]* * where file_path ... 阅读全文
posted @ 2014-07-19 10:00 jeremyatchina 阅读(523) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include MODULE_LICENSE("GPL");struct desc_ptr idt;int init_module(void){ asm volatile ("sidt %0" ... 阅读全文
posted @ 2014-07-18 11:18 jeremyatchina 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 在Linux Kernel中有些constant需要被C code 跟 assembler共同使用在用constant的時候,不能單方面給0x1000UL因為assembler無法看這東西。但是C compiler卻可以。所以使用這個gcc feature.讓C compiler看到的constan... 阅读全文
posted @ 2014-07-12 12:47 jeremyatchina 阅读(611) 评论(0) 推荐(0) 编辑
摘要: Kernel Page Global Directory(PGD)of User process created在早期版本:在fork一个进程的时候,必须建立进程自己的内核页目录项(内核页目录项要与用户空间的页目录放在同一个物理地址连续的页面上,所以不能共享,但所有进程的内核页表与进程0共享)3G用... 阅读全文
posted @ 2014-07-09 15:02 jeremyatchina 阅读(1190) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 21 下一页