-
Notifications
You must be signed in to change notification settings - Fork 1
/
categories.html
426 lines (265 loc) · 12.7 KB
/
categories.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Categories</title>
<meta name="author" content="Tan Bui">
<!-- Enable responsive viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="/buminta.jpg">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le styles -->
<link href="/assets/resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="/assets/resources/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="/assets/resources/syntax/syntax.css" rel="stylesheet">
<link href="/assets/css/style.css" rel="stylesheet">
<!-- Le fav and touch icons -->
<!-- Update these with your own images
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
-->
<link rel="alternate" type="application/rss+xml" title="" href="/feed.xml">
<script type="text/javascript" src="/assets/resources/jquery/jquery.min.js"></script>
<script type="text/javascript" src="/assets/resources/bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="/assets/js/app.js"></script>
</head>
<body>
<nav class="navbar navbar-default visible-xs" role="navigation">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a type="button" class="navbar-toggle nav-link" href="http://github.com/buminta">
<i class="fa fa-github"></i>
</a>
<a type="button" class="navbar-toggle nav-link" href="http://twitter.com/buminta">
<i class="fa fa-twitter"></i>
</a>
<a type="button" class="navbar-toggle nav-link" href="mailto:tanbm@windjs.net">
<i class="fa fa-envelope"></i>
</a>
<a class="navbar-brand" href="/">
<img width="35px" height="35px" src="/buminta.jpg" class="img-circle" />
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="/">Home</a></li>
<li><a href="/categories.html">Categories</a></li>
<li><a href="/tags.html">Tags</a></li>
<li><a href="/search.html">Search</a></li>
<li><a href="/about.html">About me</a></li>
<li><a href="/cv.pdf">Curriculum Vitae</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</nav>
<!-- nav-menu-dropdown -->
<div class="btn-group hidden-xs" id="nav-menu">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
<i class="fa fa-bars"></i>
</button>
<ul class="dropdown-menu" role="menu">
<li><a href="/"><i class="fa fa-home"></i>Home</a></li>
<li><a href="/categories.html"><i class="fa fa-folder"></i>Categories</a></li>
<li><a href="/tags.html"><i class="fa fa-tags"></i>Tags</a></li>
<li><a href="/search.html"><i class="fa fa-search"></i>Search</a></li>
<li><a href="/about.html"><i class="fa fa-info-circle"></i>About me</a></li>
<li><a href="/cv.pdf"><i class="fa fa-info-circle"></i>Curriculum Vitae</a></li>
<li class="divider"></li>
<li><a href="#"><i class="fa fa-arrow-up"></i>Top of Page</a></li>
</ul>
</div>
<div class="col-sm-3 sidebar hidden-xs">
<! -- sidebar.html -->
<header class="sidebar-header" role="banner">
<a href="/">
<img width="150px" height="150px" src="/buminta.jpg" class="img-circle" />
</a>
<h2>Tan Bui</h2>
<h3 class="title">
<a href="/"></a>
</h3>
</header>
<div id="bio" class="text-center">
Developer all platform
</div>
<div id="contact-list" class="text-center">
<ul class="list-unstyled list-inline">
<li>
<a class="btn btn-default btn-sm" href="https://github.com/buminta">
<i class="fa fa-github-alt fa-lg"></i>
</a>
</li>
<li>
<a class="btn btn-default btn-sm facebook" href="https://facebook.com/buminta">
<i class="fa fa-facebook fa-lg"></i>
</a>
</li>
<li>
<a class="btn btn-default btn-sm" href="mailto:tanbm@windjs.net">
<i class="fa fa-envelope fa-lg"></i>
</a>
</li>
</ul>
<ul id="contact-list-secondary" class="list-unstyled list-inline">
<li>
<a class="btn btn-default btn-sm" href="https://pinterest.com/buminta">
<i class="fa fa-pinterest fa-lg"></i>
</a>
</li>
<li>
<a class="btn btn-default btn-sm" href="https://twitter.com/buminta">
<i class="fa fa-twitter fa-lg"></i>
</a>
</li>
<li>
<a class="btn btn-default btn-sm" href="/feed.xml">
<i class="fa fa-rss fa-lg"></i>
</a>
</li>
</ul>
</div>
<! -- sidebar.html end -->
</div>
<div class="col-sm-9 col-sm-offset-3">
<div class="page-header">
<h1>Categories </h1>
</div>
<div class="col-sm-3 col-xs-6">
<ul class="nav nav-tabs-vertical">
<li>
<a href="/categories.html#nodejs-ref" data-toggle="tab">
Nodejs <span class="badge pull-right">4</span>
</a>
</li>
<li>
<a href="/categories.html#language-ref" data-toggle="tab">
Language <span class="badge pull-right">1</span>
</a>
</li>
<li>
<a href="/categories.html#developer-ref" data-toggle="tab">
Developer <span class="badge pull-right">1</span>
</a>
</li>
<li>
<a href="/categories.html#github-ref" data-toggle="tab">
Github <span class="badge pull-right">1</span>
</a>
</li>
<li>
<a href="/categories.html#blog-ref" data-toggle="tab">
Blog <span class="badge pull-right">1</span>
</a>
</li>
<li>
<a href="/categories.html#js-ref" data-toggle="tab">
Js <span class="badge pull-right">1</span>
</a>
</li>
<li>
<a href="/categories.html#android-ref" data-toggle="tab">
Android <span class="badge pull-right">1</span>
</a>
</li>
<li>
<a href="/categories.html#startup-ref" data-toggle="tab">
Startup <span class="badge pull-right">1</span>
</a>
</li>
<li>
<a href="/categories.html#programing-ref" data-toggle="tab">
Programing <span class="badge pull-right">2</span>
</a>
</li>
</ul>
</div>
<!-- Tab panes -->
<div class="tab-content col-sm-9 col-xs-6">
<div class="tab-pane" id="nodejs-ref">
<h2 style="margin-top: 0px">Posts in Nodejs</h2>
<ul class="list-unstyled">
<li style="line-height: 35px;"><a href="/nodejs/2014/10/31/wnodejs-version-2.html">WNodeJS Framework Verions 2</a> <span class="text-muted">- October 31, 2014</span></li>
<li style="line-height: 35px;"><a href="/nodejs/js/2014/10/20/blocking-vs-nonblocking.html">Blocking vs Non-blocking</a> <span class="text-muted">- October 20, 2014</span></li>
<li style="line-height: 35px;"><a href="/nodejs/2014/09/06/framework-mvc-for-build-web-applicaion-by-nodejs.html">Framework MVC for build web application by NodeJS</a> <span class="text-muted">- September 06, 2014</span></li>
<li style="line-height: 35px;"><a href="/nodejs/2014/09/06/chat-realtime-wnodejs.html">Chat Realtime WNodeJS</a> <span class="text-muted">- September 06, 2014</span></li>
</ul>
</div>
<div class="tab-pane" id="language-ref">
<h2 style="margin-top: 0px">Posts in Language</h2>
<ul class="list-unstyled">
<li style="line-height: 35px;"><a href="/language/2014/09/06/ngon-ngu-lap-trinh-nao-tot-nhat.html">Ngôn ngữ lập trình nào tốt nhất?</a> <span class="text-muted">- September 06, 2014</span></li>
</ul>
</div>
<div class="tab-pane" id="developer-ref">
<h2 style="margin-top: 0px">Posts in Developer</h2>
<ul class="list-unstyled">
<li style="line-height: 35px;"><a href="/developer/2014/09/06/nguyen-tac-co-ban-trong-xay-dung-he-thong-server.html">Nguyên tắc quan trọng trong xây dựng hệ thống (server)</a> <span class="text-muted">- September 06, 2014</span></li>
</ul>
</div>
<div class="tab-pane" id="github-ref">
<h2 style="margin-top: 0px">Posts in Github</h2>
<ul class="list-unstyled">
<li style="line-height: 35px;"><a href="/github/2014/09/06/welcome.html">Welcome</a> <span class="text-muted">- September 06, 2014</span></li>
</ul>
</div>
<div class="tab-pane" id="blog-ref">
<h2 style="margin-top: 0px">Posts in Blog</h2>
<ul class="list-unstyled">
<li style="line-height: 35px;"><a href="/blog/2014/09/14/tam-ly-ngai-chia-se.html">Tâm lý ngại chia sẻ</a> <span class="text-muted">- September 14, 2014</span></li>
</ul>
</div>
<div class="tab-pane" id="js-ref">
<h2 style="margin-top: 0px">Posts in Js</h2>
<ul class="list-unstyled">
<li style="line-height: 35px;"><a href="/nodejs/js/2014/10/20/blocking-vs-nonblocking.html">Blocking vs Non-blocking</a> <span class="text-muted">- October 20, 2014</span></li>
</ul>
</div>
<div class="tab-pane" id="android-ref">
<h2 style="margin-top: 0px">Posts in Android</h2>
<ul class="list-unstyled">
<li style="line-height: 35px;"><a href="/android/2016/07/02/android-windhotspot.html">Android - WindHotspot</a> <span class="text-muted">- July 02, 2016</span></li>
</ul>
</div>
<div class="tab-pane" id="startup-ref">
<h2 style="margin-top: 0px">Posts in Startup</h2>
<ul class="list-unstyled">
<li style="line-height: 35px;"><a href="/startup/2016/10/01/startup-de-hay-kho.html">Startup dễ hay khó</a> <span class="text-muted">- October 01, 2016</span></li>
</ul>
</div>
<div class="tab-pane" id="programing-ref">
<h2 style="margin-top: 0px">Posts in Programing</h2>
<ul class="list-unstyled">
<li style="line-height: 35px;"><a href="/programing/2018/02/27/lap-trinh-la-cai-quai-gi.html">Lập trình là cái quái gì?</a> <span class="text-muted">- February 27, 2018</span></li>
<li style="line-height: 35px;"><a href="/programing/2018/02/27/dong-chay-bien-trong-mo-hinh-mvc.html">Dòng chảy của Vars(biến) trong mô hình MVC (Model - control - view)</a> <span class="text-muted">- February 27, 2018</span></li>
</ul>
</div>
</div>
<div class="clearfix"></div>
<footer>
<hr/>
<p>
© 2018 Tan Bui with Jekyll. Theme: <a href="https://github.com/dbtek/dbyll">dbyll</a> by dbtek.
</p>
</footer>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','http://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-48485504-3', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>