-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
335 lines (208 loc) · 10.1 KB
/
index.html
File metadata and controls
335 lines (208 loc) · 10.1 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
<!DOCTYPE html>
<html lang=>
<head><meta name="generator" content="Hexo 3.8.0">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="">
<meta name="keywords" content="">
<link rel="icon" href="https://upload.jianshu.io/users/upload_avatars/15366117/419c97cc-d9aa-486b-9ded-3c06463a992e.jpg?imageMogr2/auto-orient/strip|imageView2/1/w/240/h/240">
<title>Override0330</title>
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="/lib/jquery.fancybox.min.css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<div class="header-container">
<a class="logo" href="/">
<span>Override0330</span>
</a>
<ul class="right-header">
<li class="nav-item">
<a href="/" class="item-link active">首页</a>
</li>
<li class="nav-item">
<a href="/about" class="item-link">关于</a>
</li>
<li class="nav-item">
<a href="/archives" class="item-link">归档</a>
</li>
<li class="nav-item">
<a href="/tags" class="item-link">标签</a>
</li>
</ul>
</div>
</header>
<main id="index">
<div class="posts-list">
<section>
<a href="/2019/05/24/mvp/">
<h3 class="post-head">
MVP模式实战(音乐APP-Android-Kotlin)
</h3>
</a>
<div class="post-content">
<p>补一补前面偷懒的博客(1/4)<br>只是个人总结的文章不小心被你找到啦~<br>如果感兴趣的话项目地址在文末</p>
</div>
<div class="post-meta">
<i class="fa fa-calendar" aria-hidden="true"></i> <time>2019/05/24</time>
</div>
</section>
<section>
<a href="/2019/04/13/Android-BroadcastReceiver/">
<h3 class="post-head">
Android-Broadcast Receiver(广播接收器)
</h3>
</a>
<div class="post-content">
<p>简单记录Broadcast Receiver(广播接收器)的简单实用<br>掘金:<a href="https://juejin.im/post/5cb0cf5de51d456e5633ddc5" target="_blank" rel="noopener">https://juejin.im/post/5cb0cf5de51d456e5633ddc5</a></p>
</div>
<div class="post-meta">
<i class="fa fa-calendar" aria-hidden="true"></i> <time>2019/04/13</time>
</div>
</section>
<section>
<a href="/2019/04/13/KMP/">
<h3 class="post-head">
数据结构-KMP模式算法
</h3>
</a>
<div class="post-content">
<p>最近很久没有看Java的知识了,都在看看数据结构,一连看了一周,数据结构理解不难,但是真正的算法理解还是比较困难的,所以开一个坑。接下来会继续更新其他算法,线性表貌似只涉及这一个算法233333<br>掘金:<a href="https://juejin.im/post/5cb0cf34e51d456e71408592" target="_blank" rel="noopener">https://juejin.im/post/5cb0cf34e51d456e71408592</a></p>
</div>
<div class="post-meta">
<i class="fa fa-calendar" aria-hidden="true"></i> <time>2019/04/13</time>
</div>
</section>
<section>
<a href="/2019/03/31/jihe/">
<h3 class="post-head">
Java-集合的简单介绍
</h3>
</a>
<div class="post-content">
<p>上周极度颓废,很咸鱼,就没有做开发学习的周记,这一周把<strong>Java核心技术卷I</strong>(除了swing等图形界面一块)看完了,然后开始看大话数据结构同时MOOC的数据结构也跟上,那就来总结总结Java里的集合这个和数据结构紧密联系的东西。<br>阅读体验较差可前往掘金:<a href="https://juejin.im/post/5cb0cecc5188251ad87b1685" target="_blank" rel="noopener">https://juejin.im/post/5cb0cecc5188251ad87b1685</a></p>
</div>
<div class="post-meta">
<i class="fa fa-calendar" aria-hidden="true"></i> <time>2019/03/31</time>
</div>
</section>
<section>
<a href="/2019/03/13/git/">
<h3 class="post-head">
Git的使用
</h3>
</a>
<div class="post-content">
<p>这篇就算在这一周的学习笔记里吧😆</p>
</div>
<div class="post-meta">
<i class="fa fa-calendar" aria-hidden="true"></i> <time>2019/03/13</time>
</div>
</section>
<section>
<a href="/2019/03/12/ThreadPool/">
<h3 class="post-head">
java中的四种线程池
</h3>
</a>
<div class="post-content">
<p>2019.03.09Android学习周记——java中的四种线程池<br>简书地址:<br><a href="https://www.jianshu.com/p/f7c1544c2638" target="_blank" rel="noopener">https://www.jianshu.com/p/f7c1544c2638</a></p>
</div>
<div class="post-meta">
<i class="fa fa-calendar" aria-hidden="true"></i> <time>2019/03/12</time>
</div>
</section>
<section>
<a href="/2019/03/12/接口回调/">
<h3 class="post-head">
初步理解接口回调
</h3>
</a>
<div class="post-content">
<p>2019.03.09Android学习周记——初步理解接口回调<br>本文将通过自己的理解来一步一步浅层讲解接口回调<br>简书地址:<br><a href="https://www.jianshu.com/p/90190489fea7" target="_blank" rel="noopener">https://www.jianshu.com/p/90190489fea7</a></p>
</div>
<div class="post-meta">
<i class="fa fa-calendar" aria-hidden="true"></i> <time>2019/03/12</time>
</div>
</section>
<section>
<a href="/2019/03/03/Android_2019_03_03/">
<h3 class="post-head">
Android开发学习-2019.03.03
</h3>
</a>
<div class="post-content">
<p> 昨晚进行了红岩网校的寒假考核作业展示,发现在很多地方还是不如别人,和学长学姐交流了一下,还是需要多多看书学习。因此,我开通了简书来来每一周总结自己学习的知识,以监督自己。然后同步到github的博客上√</p>
</div>
<div class="post-meta">
<i class="fa fa-calendar" aria-hidden="true"></i> <time>2019/03/03</time>
</div>
</section>
<section>
<a href="/2018/12/13/interface/">
<h3 class="post-head">
Java接口回调的自我理解
</h3>
</a>
<div class="post-content">
<p>在近期做获取通话记录的app的时候,设置RecycleView的每一个item的单击时间监听器的时候卡了很久(wtcl),因为涉及到接口回调,特此开一篇博客来说说自己的理解,以加深对这个抽象概念的认识。</p>
</div>
<div class="post-meta">
<i class="fa fa-calendar" aria-hidden="true"></i> <time>2018/12/13</time>
</div>
</section>
<section>
<a href="/2018/12/01/creathexo/">
<h3 class="post-head">
如何搭建基于GitHub的Hexo博客(Mac)
</h3>
</a>
<div class="post-content">
<p>第一篇博客不知道要写什么,不如记录下这个基于GitHub的博客的完整搭建过程=。= </p>
</div>
<div class="post-meta">
<i class="fa fa-calendar" aria-hidden="true"></i> <time>2018/12/01</time>
</div>
</section>
</div>
<aside>
<div class="search">
<div class="content">
<form action="//www.google.com/search" target="_blank" class="search-form">
<input type="text" name="q" maxlength="20" placeholder="Search">
<input type="hidden" name="sitesearch" value="Override0330.github.io">
</form>
</div>
</div>
<div class="avatar">
<img src="https://upload.jianshu.io/users/upload_avatars/15366117/419c97cc-d9aa-486b-9ded-3c06463a992e.jpg?imageMogr2/auto-orient/strip|imageView2/1/w/240/h/240" alt="avatar">
<div class="content">
<span>重庆邮电大学红岩网校移动开发部 学员</span>
</div>
</div>
<div class="links">
<h1>
Blogroll
</h1>
<div class="content">
<a href="https://github.com/Override0330" target="_blank">Github</a>
<a href="https://juejin.im/user/5cb0cd1d6fb9a0688a6804c2" target="_blank">掘金</a>
<a href="https://www.jianshu.com/u/77a98cea0352" target="_blank">简书</a>
</div>
</div>
</aside>
</main>
<footer>
<div class="copyright">
<div>
© 2019 | Powered by <a href="https://hexo.io" target="_blank">Hexo</a> 
</div>
<div>
Theme by <a href="https://github.com/lewis-geek/hexo-theme-Aath" target="_blank">Aath</a>
</div>
</div>
</footer>
</body>
</html>