-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.html
More file actions
764 lines (718 loc) · 29.7 KB
/
common.html
File metadata and controls
764 lines (718 loc) · 29.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
<html>
<head>
<style>
.contentClass {
/*主容器类*/
float: right;
width: 80%;
border: solid 1px #000;
margin-right: 10px
/*设置右边距*/
}
/*
margin:auto;*/
.cities {
background-color: #feedf7;
color: #dfbbc5;
margin: 10px;
padding: 10px;
width: 20%;
min-height: 10%;
display: inline-block;
}
.leftBar {
/*侧边栏*/
float: left;
width: 260px;
border: 1px solid #fff;
display: inline;
background: #F0FFF0;
}
.menu--small {
/*侧边栏-标题*/
width: 250px;
}
.list {
background-color: #99ccff;
color: #336699;
margin: 5px;
padding: 20px;
width: 15%;
display: inline-block;
}
.menu__header {
background: #4B4F55;
border-bottom: 1px solid #353A40;
border-radius: 0px 8px 0px 8px;
}
.menu__header-title {
color: #fff;
text-align: center;
padding: 8px;
margin: 0px;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}
.menu__body {
border-radius: 0 0 5px 5px;
}
.nav {
list-style: none;
}
.nav__item {
position: relative;
padding: 5px;
}
.nav__item-link {
padding: 10px 15px;
text-decoration: none;
color: #8B8E93;
display: block;
border-bottom: 1px solid #F0F0F0;
}
.nav__item-link:hover {
background: #f0f0f0;
}
.nav__item-link.is-active {
background: #6E757F;
color: #fff;
border-bottom-color: #4B4F55;
box-shadow: 0 1px 0 #7A828D inset;
}
.nav__item-link.is-active:after {
content: '';
display: block;
position: absolute;
top: 50%;
right: -6px;
margin-top: -6px;
border-top: 6px solid transparent;
border-bottom: 6px solid transparent;
border-left: 6px solid #6E757F;
}
.nav__item-link.is-active .nav__item-icon {
color: #fff;
}
.nav__item:last-child .nav__item-link {
border-bottom: none;
}
.nav__item-icon {
color: #D2D5DA;
width: 15px;
text-align: center;
font-size: 18px;
margin-right: 10px;
}
.a {
width: 205px;
}
.b {
width: 200px;
height: 50px;
background-color: limegreen;
text-align: center;
line-height: 50px;
color: #ffffff;
}
.c {
width: 200px;
height: 300px;
background-color: gainsboro;
display: none;
}
ul {
list-style: none;
margin-left: -40px;
}
ul li {
line-height: 50px;
display: block;
width: 200px;
text-align: center;
}
.a:hover {
cursor: pointer;
}
.a:hover .c {
display: block;
}
.a:hover .b {
background-color: green;
}
li:hover {
background-color: gray;
color: #FFFFFF;
}
</style>
<!-- <link rel="shortcut icon" href="你存放图标的路径/1616.ico"/> -->
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<title>常用网站</title>
<div
style="border:1px solid rgb(10, 0, 0);border-style: double;margin:0.1cm 0.1cm 0.1cm 0.1cm;border:2px solid;padding:0.1cm 1cm 0.1cm 1cm;border-radius: 2em 1em 4em / 0.5em 3em;">
<table border="0" cellspacing="1" cellpadding="10">
<tr>
<td class="nav__item">
<img class="nav__item-icon"
src="https://www.gstatic.cn/devrel-devsite/prod/v33e7b2dc41690dd155c39da725d6a2a9b37af85c625b82149b8b1a06c071a1a2/android/images/favicon.png" /><a
href="https://developer.android.google.cn/index.html" target="_blank"><B>Android开发指南(官网)</B></a>
</td>
<td> <a href="https://www.runoob.com/python3/python3-tutorial.html" target="_blank">Python 3 教程</a> </td>
<td> <a href="http://www.runoob.com/java/java-tutorial.html" target="_blank">Java 教程</a> </td>
<td> <a href="http://www.runoob.com/w3cnote/android-tutorial-intro.html" target="_blank">Android 教程</a> </td>
<td> <a href="http://www.runoob.com/linux/linux-tutorial.html" target="_blank">Linux 教程</a> </td>
<td> <a href="https://www.runoob.com/android/android-tutorial.html" target="_blank">《Android教程》</a> </td>
<td> <a href="https://www.runoob.com/svn/svn-tutorial.html" target="_blank">《Svn教程》</a> </td>
<td> <a href="https://www.runoob.com/w3cnote/jni-getting-started-tutorials.html" target="_blank">《JNI入门教程》</a>
</td>
<td> <a href="https://www.runoob.com/git/git-tutorial.html" target="_blank"> Git 教程 </a> </td>
<td> <a href="https://www.runoob.com/markdown/md-tutorial.html" target="_blank"> Markdown教程 </a> </td>
</tr>
</table>
</div>
<div class="contentClass">
<div class="cities">
<h2>推送</h2>
<!-- <select>
<option value="volvo">PHP中文网</option>
<option value="saab">百度</option>
<option value="opel">腾讯</option>
<option value="audi">新浪</option>
</select> -->
<table border="0">
<tbody>
<tr>
<td> <a href="https://www.jiguang.cn/" target="_blank">极光推送</a> </td>
<td> <a href="http://docs.jiguang.cn/jpush/client/Android/android_guide/" target="_blank">极光集成指南</a> </td>
</tr>
<tr>
<td> <a href="http://push.umeng.com/pushIndex" target="_blank">友盟推送</a> </td>
<td> <a href="http://dev.umeng.com/push/android/integration" target="_blank">友盟集成指南</a> </td>
</tr>
<tr>
<td> </td>
<td> <a href="http://dev.umeng.com/push/android/api-doc#4_8_2" target="_blank">API服务错误码</a> </td>
</tr>
<tr>
<td> </td>
<td> <a href="http://dev.umeng.com/social/android/login-page" target="_blank">第三方登录集成</a> </td>
</tr>
<tr>
<td> <a href="http://mobile.umeng.com/analytics" target="_blank">友盟统计</a> </td>
<td> <a href="http://dev.umeng.com/analytics/android-doc/integration" target="_blank">集成文档</a></td>
</tr>
<tr>
<td> <a href="http://www.talkingdata.com/" target="_blank">talkingdata统计</a> </td>
<td> <a href="http://doc.talkingdata.com/posts/21" target="_blank">集成文档</a></td>
</tr>
<tr>
<td colspan="2" style="padding:10px 0px 10px 0px;"> <a href="http://game.reyun.com/arddoc"
target="_blank">热云统计-集成文档</a> </td>
</tr>
<tr>
<td colspan="2" style="padding:10px 0px 10px 0px;"> <a href="https://ks3.ksyun.com/doc/sdk/android.html"
target="_blank">安卓金山云存储集成文档</a> </td>
</tr>
<tr>
<td colspan="2" style="padding:10px 0px 10px 0px;"> <a
href="https://support.huaweicloud.com/devg-obs_android_sdk_doc_zh/zh-cn_topic_0041181749.html"
target="_blank">【华为】云存储</a> </td>
</tr>
<tr>
<td colspan="2" style="padding:10px 0px 10px 0px;"> <a
href="https://leohxj.gitbooks.io/a-programmer-prepares/content/healthy/detect-overwork.html"
target="_blank">《程序员的自我修养》- GitBook</a> </td>
</tr>
<tr>
<td colspan="2" style="padding:0px 0px 0px 0px;"> <a href="http://www.jianshu.com/c/0f8bf9ffd608"
target="_blank">Android Tech 小技巧</a> </td>
</tr>
<tr>
<td colspan="2" style="padding:0px 0px 0px 0px;"> <a href="https://www.qvdv.com/tools/qvdv-coordinate.html"
target="_blank">经纬度定位查询</a> </td>
</tr>
</tbody>
</table>
</div>
<div class="cities">
<h2>在线工具</h2>
<table border="0" cellspacing="10">
<tbody>
<tr>
<td> <a href="http://192.168.11.132:8200/" target="_blank">在线DES解密工具<b><I style="font-family:verdana;color:red;font-size:10px">(New)</I></b></a> </td>
</tr>
<tr>
<td> <a href="http://192.168.11.132:8080/" target="_blank">Jenkins</a> </td>
</tr>
<tr>
<td> <a href="http://192.168.2.40:8200/" target="_blank">在线DES解密工具</a> </td>
</tr>
<tr>
<td> <a href="https://www.lzltool.com/" target="_blank">LZL在线工具</a> </td>
</tr>
<tr>
<td> <a href="https://ts.nodejs.cn/play?" target="_blank">在线运行TypeScript</a> </td>
</tr>
<tr>
<td> <a href="http://www.bejson.com/jsonviewernew/" target="_blank">在线JSON格式化</a> </td>
</tr>
<tr>
<td> <a href="http://www.json.org.cn/tools/JSONEditorOnline/index.htm" target="_blank">在线JSON编辑工具</a> </td>
</tr>
<tr>
<td> <a href="https://netcut.cn/qaw/" target="_blank">【在线黏贴版】</a> </td>
</tr>
<tr>
<td> <a href="https://www.wenshushu.cn/" target="_blank">【在线U盘】</a> </td>
</tr>
<tr>
<td> <a href="https://www.pgyer.com/devsoft" target="_blank" title="辅助开发工具集合">【辅助开发apk工具集合】</a> </td>
</tr>
<tr>
<td> <a href="https://tmp.link/" target="_blank">钛盘-在线网盘</a> </td>
</tr>
<tr>
<td> <a href="https://www.345tool.com/zh-hans" target="_blank">在线生产效率工具</a> </td>
</tr>
<tr>
<td> <a href="http://tool.oschina.net/codeformat/" target="_blank">在线代码格式化</a> </td>
</tr>
<tr>
<td> <a href="http://www.planetb.ca/syntax-highlight-word" target="_blank">word文档高亮代码</a> </td>
</tr>
<tr>
<td> <a href="https://developers.google.cn/" target="_blank">Google Developers</a> </td>
</tr>
<tr>
<td> <a href="https://www.sojson.com/http/test.html" target="_blank">Http模拟请求</a> </td>
</tr>
<tr>
<td> <a href="https://getman.cn/" target="_blank">Http模拟请求【简单版本】</a> </td>
</tr>
<tr>
<tr>
<td> <a href="https://c.runoob.com/" target="_blank">在线工具</a> </td>
</tr>
<tr>
<td> <a href="https://c.runoob.com/front-end/693" target="_blank">Base64 编码/解码</a> </td>
</tr>
<tr>
<td> <a href="http://tool.chinaz.com/tools/imgtobase/" target="_blank">base64图片在线转换工具</a> </td>
</tr>
<tr>
<td> <a href="https://c.runoob.com/front-end/695" target="_blank">URL 编码/解码</a> </td>
</tr>
<tr>
<td> <a href="http://www.bejson.com/convert/unicode_chinese/" target="_blank">unicode转中文</a> </td>
</tr>
<tr>
<td> <a href="https://c.runoob.com/front-end/703" target="_blank">MD5 加密</a> </td>
</tr>
<tr>
<td> <a href="https://c.runoob.com/codedemo/3041" target="_blank">字符串小写字母转大写</a> </td>
</tr>
<tr>
<td>
<hr /><a href="http://www.telerik.com/download/fiddler/update-installed" target="_blank">Fiddler Use</a>
</td>
</tr>
</tbody>
</table>
</div>
<div class="cities">
<h2>在线工具2</h2>
<table border="0" cellspacing="20">
<tbody>
<tr>
<td> <a href="https://loocode.com/tool/json-to-typescript" target="_blank" title="在线工具">JSON转TypeScript接口</a> </td>
</tr>
<tr>
<td> <a href="https://www.ip138.com/" target="_blank" title="在线工具">iP地址归属地查询</a> </td>
</tr>
<!-- <tr>
<td> <a
href="http://ydl.ifengwoo.com/Game/GetServerIP?channelname=xth&devicetype=xth&imei=123456789&orderid=130&packagename=com.cyjh.ygj.PcService&time=1486457101772&userid=-1&userkey=0&versioncode=199&versionname=1.999&Sign=2295cfe374a2989d3bd77975f64c2902&R=0"
target="_blank" title="ygj线上IP">ygj线上IP</a> </td>
</tr>
<tr>
<td> <a
href="http://117.27.139.231:20001/Game/GetServerIP?channelname=xth&devicetype=xth&imei=123456789&orderid=100011056&packagename=com.cyjh.ygl.PcService&time=1521456657835&userid=-1&userkey=0&versioncode=199&versionname=1.999&Sign=3b12d7edeac2891c8b0bdf950e820a91&R=2"
target="_blank" title="ygl测试IP">ygl测试IP</a> </td>
</tr> -->
</tr>
<tr>
<td> <a href="http://tool.chinaz.com/Tools/unixtime.aspx" target="_blank" title="ygl测试IP">Unix时间戳-转换工具</a>
</td>
</tr>
</tr>
<tr>
<td> <a href="https://www.rapidtables.org/zh-CN/convert/number/scientific-notation-converter.html"
target="_blank" title="科学计数转换">科学计数转换</a>
</td>
</tr>
<tr>
<td> <a href="http://tool.chinaz.com/" target="_blank" title="ygl测试IP">站长工具</a> </td>
</tr>
<tr>
<td> <a href="https://peapix.com/bing/cn" target="_blank" title="必应每日壁纸图片">必应每日壁纸图片</a> </td>
</tr>
<tr>
<td> <a href="https://shrill-pond-3e81.hunsh.workers.dev/" target="_blank" title="GitHub 文件加速">GitHub文件加速</a> </td>
</tr>
<tr>
<td> <a href="http://www.suxieban.com/" target="_blank" title="画画速写板">画画速写板</a> </td>
</tr>
<tr>
<td> <a href="https://c.runoob.com/front-end/710/" target="_blank" title="XML在线格式化">XML在线格式化</a> </td>
</tr>
<tr>
<td> <a href="https://www.w3cschool.cn/tools/index?name=cpicker" target="_blank" title="HTML 拾色器">HTML 拾色器</a> </td>
</tr>
<tr>
<td> <a href="https://tools.fun/" target="_blank" title="工具集合">工具集合</a> </td>
</tr>
<tr>
<td> <a href="http://c.biancheng.net/shell/" target="_blank" title="Shell脚本学习指南">Shell脚本学习指南</a> </td>
</tr>
</tbody>
</table>
</div>
<div class="list">
<h6>--- S K I L L ---</h6>
<table border="0">
<tbody>
<tr>
<td> <a href="https://hao.uisdc.com/" target="_blank">优设网(设计类网站汇总)</a> </td>
</tr>
<tr>
<td> <a href="https://zhuanlan.zhihu.com/jhuster" target="_blank">【Jhuster的专栏-音视频】</a> </td>
</tr>
<tr>
<td> <a href="https://segmentfault.com/a/1190000004881029" target="_blank">Android中使用FindBugs</a> </td>
</tr>
<tr>
<td> <a href="http://blog.csdn.net/yang1982_0907/article/details/18086693"
target="_blank">详解CheckStyle的检查规则</a> </td>
</tr>
<tr>
<td> <a href="https://github.com/github/gitignore/blob/master/Android.gitignore"
target="_blank">Android.gitignore</a> </td>
</tr>
</tr>
<tr>
<td> <a href="https://text2image.jaychen.fun/" title="Text2image 是一个网页工具,可以将文字或代码转换成图片,能够自定义主题、水印、阴影特效等。"
target="_blank" style="background-color: #ac4848;color: #FFFFFF;">Text2image文字转图片</a> </td>
</tr>
<h5>签名生成工具</h5>
<h6>用于获取安装到手机的第三方应用签名的apk包</h6>
<tr>
<td> <a href="https://developers.weixin.qq.com/doc/oplatform/Downloads/Android_Resource.html" title="签名生成工具"
target="_blank" style="background-color: #ac4848;color: #FFFFFF;">(微信开发平台)签名生成工具[页面底部!]</a>
</td>
</tr>
<tr>
<td> <a href="https://github.com/mobileresearch/weibo_android_sdk/blob/master/app_signatures.apk" title="签名生成工具"
target="_blank" style="background-color: #ac4848;color: #FFFFFF;">(新浪微博开放平台)签名生成工具</a>
</td>
</tr>
</tbody>
</table>
</div>
<div class="list">
<h2>--- APP市场 ---</h2>
<table border="0">
<tbody>
<tr>
<td> <a href="http://app.mi.com/" target="_blank">小米应用商店</a> </td>
</tr>
<tr>
<td> <a href="http://zhushou.360.cn" target="_blank">360应用</a> </td>
</tr>
<tr>
<td> <a href="http://sj.qq.com" target="_blank">QQ应用宝</a> </td>
</tr>
<tr>
<td> <a href="http://www.wandoujia.com" target="_blank">豌豆荚</a> </td>
</tr>
</tbody>
</table>
</div>
<div class="list">
<h2>--- Tools ---</h2>
<table border="0" cellspacing="10">
<tbody>
<tr>
<td> <a href="https://www.codota.com/codebox/#/" target="_blank"><b>Codota</b>代码搜索引擎</a> </td>
</tr>
<tr>
<td> <a href="http://unbug.github.io/codelf/" target="_blank">Github变量名搜索</a> </td>
</tr>
<tr>
<td> <a href="https://seositecheckup.com/" target="_blank">Exception异常搜索</a> </td>
</tr>
<tr>
<td> <a href="https://github.com/getlantern/forum" target="_blank">蓝灯(Lantern)官方论坛</a> </td>
</tr>
<tr>
<td> <a href="http://ip.taobao.com/instructions.php" target="_blank">淘宝IP地址库</a> </td>
</tr>
</tbody>
</table>
</div>
<div class="list">
<h2>--- GitHub ---</h2>
<table border="0" cellspacing="10">
<tbody>
<tr>
<td> <a href="https://github.com/koush/AndroidAsync" target="_blank">AndroidAsync</a> </td>
</tr>
<tr>
<td> <a href="https://android-arsenal.com/" target="_blank">第三方开源库集合</a> </td>
</tr>
<tr>
<td> <a href="http://www.androiddevtools.cn/index.html" target="_blank">AndroidDevTools</a> </td>
</tr>
<tr>
<td> <a href="http://androidxref.com/?spm=a2c4e.11153940.blogcont247793.17.78ea144fN93Yb9"
target="_blank">ANDROID SOURCE<img class="nav__item-icon"
src="http://androidxref.com/images/title.png" /></a></td>
</tr>
<tr>
<td> <a href="http://aospxref.com/" target="_blank">ANDROID源码(快速)</a></td>
</tr>
<tr>
<td> <a href="https://cs.android.com" target="_blank">在线搜索及浏览AOSP源码</a></td>
</tr>
<tr>
<td> <a href="https://github.com/aosp-mirror" target="_blank">github-SourceProject</a></td>
</tr>
<tr>
<td> <a href="https://www.androidos.net.cn/sourcecode" target="_blank">Android社区Source</a></td>
</tr>
</tbody>
</table>
</div>
<div class="list">
<h2>--- Learning ---</h2>
<table border="0" cellspacing="10">
<tbody>
<td> <a href="https://android-arsenal.com/" target="_blank">第三方开源库集合</a> </td>
</tr>
<tr>
<td> <a href="https://seositecheckup.com/" target="_blank">Exception异常搜索</a> </td>
</tr>
<tr>
<td> <a href="http://www.w3school.com.cn/" target="_blank">w3school在线教程</a> </td>
</tr>
</tbody>
</table>
</div>
<div class="list">
<h2>--- 官网 ---</h2>
<table border="0" cellspacing="10">
<tbody>
<tr>
<td> <a href="http://www.ifengwoo.com/" target="_blank">游戏蜂窝官网</a> </td>
</tr>
<tr>
<td> <a href="http://tieba.baidu.com/f?kw=%E6%B8%B8%E6%88%8F%E8%9C%82%E7%AA%9D&ie=utf-8"
target="_blank">游戏蜂窝-百度贴吧</a> </td>
</tr>
<tr>
<td> <a href="https://tieba.baidu.com/f?ie=utf-8&kw=%E6%B8%B8%E6%88%8F%E8%80%83%E6%8B%89&fr=search"
target="_blank">游戏考拉-百度贴吧</a> </td>
</tr>
<tr>
<td> <a href="http://www.w3school.com.cn/" target="_blank">w3school在线教程</a> </td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="list">
<h3><a href="http://github201407.github.io/">MY HOME</a></h3>
<h3><a href="http://github201407.github.io/markdown/open_source.html">常用开源项目</a></h3>
<!-- 下拉菜单 -->
<div class="a">
<div class="b">
实用教程整理
</div>
<div class="c">
<ul>
<li><a href="https://www.kotlincn.net/docs/reference/collection-filtering.html" target="_blank">Kotlin语言指南</a>
</li>
<li><a href="https://code.luasoftware.com/tutorials/android/android-get-file-size/"
target="_blank">code代码例子</a>
</li>
</li>
<li><a href="http://c.biancheng.net/android/"
target="_blank">Android代码例子</a>
</li>
</li>
<li><a href="https://cplusplus.com/reference/"
target="_blank">C++语言文档</a>
</li>
</li>
<li><a href="https://zh.cppreference.com/w/cpp"
target="_blank">C语言文档</a>
</li>
</li>
<li><a href="https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects"
target="_blank">前端开发必备MDN文档</a>
</li>
</ul>
</div>
</div>
<h5>--- jar包、Android依赖 ---</h5>
<table border="0" cellspacing="1">
<tbody>
<tr>
<td> <a href="https://android-arsenal.com/" target="_blank">开源库</a> </td>
</tr>
<tr>
<td> <a href="https://mvnrepository.com/" target="_blank">mvnrepository2</a> </td>
</tr>
<tr>
<td> <a href="http://search.maven.org/" target="_blank"><img height="20" width="20"
src="https://search.maven.org/assets/images/logo.svg" />Central Repository</a> </td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="leftBar">
<div class="menu menu--small">
<header class="menu__header">
<p class="menu__header-title">侧边栏</p>
</header>
<div class="menu__body">
<ul class="nav">
<li class="nav__item">
<img class="nav__item-icon" src="/imgs/keyboard39.png" /><a href="http://mykeys.sinaapp.com/index.php"
target="_blank">快捷键大全</a>
</li>
<li class="nav__item">
<img class="nav__item-icon" src="http://static.runoob.com/images/favicon.ico" /><a
href="http://www.runoob.com/" target="_blank">菜鸟教程-学的不仅是技术,更是梦想!</a>
</li>
<li class="nav__item">
<img class="nav__item-icon"
src="http://cdn-qn0.jianshu.io/assets/favicons/favicon-ea87c042cbed82f63ec4cb18d1e1bc8b.ico" /><a
href="http://www.jianshu.com/" target="_blank">简书</a> <a href="http://www.jianshu.com/writer#/"
target="_blank">写文章</a>
</li>
<li class="nav__item">
<img class="nav__item-icon" src="http://outofmemory.cn/favicon.ico" /><a href="http://maven.outofmemory.cn/"
target="_blank">jar库</a>
</li>
<li class="nav__item">
<img class="nav__item-icon" src="https://github.com/fluidicon.png" /><a href="https://github.com/"
target="_blank">GitHub</a>
</li>
<li class="nav__item">
<img class="nav__item-icon" src="https://developer.android.google.cn/studio/images/studio-icon.png" /><a
href="https://developer.android.com/studio/intro/index.html" target="_blank">Android Studio</a>
</li>
<li class="nav__item">
<img class="nav__item-icon"
src="https://www.gstatic.cn/devrel-devsite/prod/v18acaed6c9e1965881c7cfa6f3f9f69e7c37603f6d253114168821ce9e70c645/androidsource/images/lockup.svg?dcb_=0.9136385440911772" /><a
href="https://source.android.google.cn/" target="_blank">Android Source</a>
</li>
<li class="nav__item">
<img class="nav__item-icon" src="https://www.v2ex.com/static/img/v2ex_192.png" /><a
href="https://www.v2ex.com/" target="_blank">v2ex</a>
</li>
<li class="nav__item">
<img class="nav__item-icon" border="0" src="https://www.xmind.net/s/B/576/img/XMind-new-logo.svg"
style="clip:rect(0px 40px 50px 50px)"><a href="https://www.xmind.net/share/" target="_blank">XMind</a>
</li>
<li class="nav__item">
<img class="nav__item-icon" border="0" src="/imgs/sublime3.png"><a href="http://www.sublimetext.com/3"
target="_blank">Sublime Text 3</a>
</li>
<li class="nav__item">
<img class="nav__item-icon" border="0"
src="https://a.trellocdn.com/images/225c8d1cf8bbf74add43d86f2c84bd28/pinned-tab-icon.svg"
style="background-color: #f9f9f9;"><a href="https://trello.com/" target="_blank">Trello</a>
</li>
<li class="nav__item">
<img class="nav__item-icon" border="0"
src="https://ss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/logo_top_ca79a146.png"
style="background-color: #f9f9f9;"><a href="https://www.baidu.com/"
target="_blank">Baidu</a> <a href="https://www.baidu.com/gaoji/advanced.html"
target="_blank">高级搜索</a>
</li>
<li class="nav__item">
<img class="nav__item-icon" border="0" src="/imgs/pdf.png"><a
href="file:///D:/project_db/doc/IntelliJIDEA_ReferenceCard.pdf" target="_blank">AS 快捷键PDF</a>
</li>
<li class="nav__item">
<img class="nav__item-icon" border="0" src="/imgs/gradle.png"><a href="https://www.w3cschool.cn/gradle/"
target="_blank">AS Gradle教程</a>
<br />
<a href="http://blog.csdn.net/column/details/gradle-translation.html?&page=2" target="_blank">Gradle翻译</a>
<br />
<a href="https://docs.gradle.org/current/userguide/userguide.html" target="_blank">Gradle Use Guide</a>
</li>
<li class="nav__item">
<img class="nav__item-icon" border="0" src="http://www.jetbrains.com.cn/jetbrains.ico"><a
href="http://www.jetbrains.com.cn/" target="_blank">JetBrains中文官网</a>
</li>
<li class="nav__item">
<img class="nav__item-icon" border="0" src="http://man.linuxde.net/favicon.ico"><a
href="http://man.linuxde.net/wget" target="_blank">Linux命令大全</a>
</li>
<li class="nav__item">
<img class="nav__item-icon" border="0" src="http://grepcode.com/static/app/images/favicon.ico"><a
href="http://grepcode.com/" target="_blank">在线源码</a>
</li>
<li class="nav__item">
<img class="nav__item-icon" border="0" src="http://grepcode.com/static/app/images/favicon.ico"><a
href="https://github.com/EbookFoundation/free-programming-books/blob/master/free-programming-books-zh.md"
target="_blank">免费书籍</a>
</li>
</ul>
</div>
</div>
</div>
<!--
<tr>
<td><input type="button"
onclick="post('http://ydl.ikaolaa.com/tty/GetServerIP',{'packagename':'com.cyjh.ygj.PcService','Sign':'349f82ab04e24ec2e46d9d9439cf1ba3','userid':'-1','devicetype':'xth','userkey':'0','versionname':'1.999','imei':'123456789','devicecode':'862620020189835','channelname':'xth','time':'1491460236263','versioncode':'199','R':'2'})"
value="天天云挂机获取IP">
</td>
</tr>
<tr>
<td><input type="button"
onclick="post('http://ydl.ikaolaa.com/tty/GetServerIP',{'packagename':'com.cyjh.ygj.PcService','Sign':'09383b0699c38189fd72653950984492','userid':'-1','devicetype':'xth','userkey':'0','versionname':'2.0.1','imei':'123456789','devicecode':'000c2973443c','channelname':'xth','time':'1502700807679','versioncode':'201','R':'3'})"
value="天天云挂机获取IP-201">
</td>
</tr>
<tr>
<td><input type="button"
onclick="post('http://swy.987you.com/mwy/GetServerIP',{'packagename':'com.cyjh.ygj.PcService','Sign':'09383b0699c38189fd72653950984492','userid':'-1','devicetype':'xth','userkey':'0','versionname':'2.0.1','imei':'123456789','devicecode':'000c2973443c','channelname':'xth','time':'1502700807679','versioncode':'201','R':'3'})"
value="秒玩云--获取IP">
</td>
</tr> -->
<!-- POST 提交 -->
<!-- <script type="text/javascript">
function post(URL, PARAMS) {
var temp = document.createElement("form");
temp.action = URL;
temp.method = "post";
temp.style.display = "none";
for (var x in PARAMS) {
var opt = document.createElement("textarea");
opt.name = x;
opt.value = PARAMS[x];
// alert(opt.name)
temp.appendChild(opt);
}
document.body.appendChild(temp);
temp.submit();
return temp;
}
</script> -->
</body>
</html>