This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
深入探索Android熱修復技術原理 | |
Android插件化開發指南 | |
最強Android書:架構大剖析 | |
深入剖析Android新特性 | |
Android軟件安全攻防實例分析 | |
Android高性能編程 | |
Android移動性能實戰 | |
Android系統優化從入門到精通 | |
Java高並發編程詳解:多線程與架構設計 | |
Spring微服務實戰 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
260 航天高可靠嵌入式實時操作系統原理與技術 | |
300 航天器控制計算機容錯技術 | |
300 Windows環境下32位彙編語言程序設計 | |
420 Windows內核安全與驅動開發 | |
210 嵌入式Linux系統工程師實訓教程 | |
500 徹底研究Linux核心API | |
150 (影印)嵌入式Linux性能詳解 | |
300 操作系統真象還原 | |
180 軟件測試之魂: 核心測試設計精解 | |
200 格蠹匯編:軟件調試案例集錦 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x = [Int('x'+i) for i in xrange(1,9)] | |
s = Solver() | |
for i in xrange(1,9): | |
s.add(x[i] < 256) | |
# first | |
s.add(((x[5] + x[6])*(x[5] + x[6]) + x[4] * x[4]) == 153844) | |
s.add(((x[5] + x[6])*(x[5] + x[6]) + x[3] * x[3]) == 131400) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <printf.h> | |
struct widget { | |
size_t length; | |
size_t width; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <sys/types.h> | |
#include <sys/stat.h> | |
#include <fcntl.h> | |
#include <unistd.h> | |
#include <errno.h> | |
#include <sys/ipc.h> | |
#include <sys/shm.h> | |
#include <memory.h> | |
#define IPC_PERMS 0664 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"strings" | |
"log" | |
"os" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> | |
<script src="https://unpkg.com/vue/dist/vue.js"></script> | |
</head> | |
<body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> | |
<script src="https://unpkg.com/vue/dist/vue.js"></script> | |
</head> | |
<body> | |
aaaaa | |
<div id="selected-list" class="container"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <iterator> | |
#include <algorithm> | |
#include <string> | |
using namespace std; | |
int main(){ | |
for( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <CL/cl.hpp> | |
#include <iostream> | |
#include <vector> | |
#include <algorithm> | |
#include <opencv2/opencv.hpp> | |
#include <boost/compute.hpp> | |
#include <string> | |
#include <bitset> | |
using namespace std; |