-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
839 lines (452 loc) · 28.8 KB
/
index.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
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
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" >
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="generator" content="Wu Yongfeng - Blog">
<title>Wu Yongfeng - Blog</title>
<meta name="author" content="Wu Yongfeng">
<link rel="icon" href="/assets/images/favicon.ico">
<link rel="alternative" type="application/atom+xml" title="RSS" href="/atom.xml">
<meta name="description" content="blog site of Wu Yongfeng">
<meta property="og:type" content="blog">
<meta property="og:title" content="Wu Yongfeng - Blog">
<meta property="og:url" content="https://wuyf.me/index.html">
<meta property="og:site_name" content="Wu Yongfeng - Blog">
<meta property="og:description" content="blog site of Wu Yongfeng">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Wu Yongfeng - Blog">
<meta name="twitter:description" content="blog site of Wu Yongfeng">
<!--STYLES-->
<link rel="stylesheet" href="/assets/css/style.min.css" type="text/css">
<!--STYLES END-->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "//hm.baidu.com/hm.js?c65c4dfed20ce4a1fb28332bd37ddac3";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</head>
<body>
<div id="blog">
<header id="header" data-behavior="1">
<i id="btn-open-sidebar" class="fa fa-lg fa-bars"></i>
<h1 class="header-title">
<a class="header-title-link" href="/ ">Wu Yongfeng - Blog</a>
</h1>
</header>
<nav id="sidebar" data-behavior="1">
<ul class="sidebar-buttons">
<li class="sidebar-button">
<a class="sidebar-button-link "
href="/ "
>
<i class="sidebar-button-icon fa fa-lg fa-home"></i>
<span class="sidebar-button-desc">Home</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link "
href="/all-categories"
>
<i class="sidebar-button-icon fa fa-lg fa-bookmark"></i>
<span class="sidebar-button-desc">Categories</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link "
href="/all-tags"
>
<i class="sidebar-button-icon fa fa-lg fa-tags"></i>
<span class="sidebar-button-desc">Tags</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link "
href="/all-archives"
>
<i class="sidebar-button-icon fa fa-lg fa-archive"></i>
<span class="sidebar-button-desc">Archive</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link "
href="/#about"
>
<i class="sidebar-button-icon fa fa-lg fa-question"></i>
<span class="sidebar-button-desc">About</span>
</a>
</li>
</ul>
<ul class="sidebar-buttons">
<li class="sidebar-button">
<a class="sidebar-button-link " href="https://github.com/kymtwyf" target="_blank">
<i class="sidebar-button-icon fa fa-lg fa-github"></i>
<span class="sidebar-button-desc">GitHub</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="http://stackoverflow.com/users/2428562/yongfeng" target="_blank">
<i class="sidebar-button-icon fa fa-lg fa-stack-overflow"></i>
<span class="sidebar-button-desc">Stack Overflow</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="http://weibo.com/kymtwyf" target="_blank">
<i class="sidebar-button-icon fa fa-lg fa-weibo"></i>
<span class="sidebar-button-desc">Weibo</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="https://www.linkedin.com/in/wuyongfeng" target="_blank">
<i class="sidebar-button-icon fa fa-lg fa-linkedin"></i>
<span class="sidebar-button-desc">Linked In</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="mailto:[email protected]" target="_blank">
<i class="sidebar-button-icon fa fa-lg fa-envelope-o"></i>
<span class="sidebar-button-desc">Mail</span>
</a>
</li>
</ul>
<ul class="sidebar-buttons">
<li class="sidebar-button">
<a class="sidebar-button-link "
href="/atom.xml"
>
<i class="sidebar-button-icon fa fa-lg fa-rss"></i>
<span class="sidebar-button-desc">RSS</span>
</a>
</li>
</ul>
</nav>
<div id="main" data-behavior="1"
class="
hasCoverMetaIn
">
<section class="postShorten-group main-content-wrap">
<article class="postShorten postShorten--thumbnailimg" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2017/01/11/basic-introduction-to-apache-nifi/">Apache Nifi 定义和开发流式数据处理应用</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" content="Wed Jan 11 2017 21:34:10 GMT+0800">
Jan 11, 2017
</time>
<span>in </span>
<a class="category-link" href="/categories/Tech/">Tech</a>, <a class="category-link" href="/categories/Tech/Apache/">Apache</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>
什么是Apache NifiApache Nifi 是一个定义流数据处理作业的平台服务,它提供直观的界面供开发者进行业务逻辑定制,能够方便地使用原生组件(Processor)也可以自己开发组件来构建流式数据处理应用。
在使用过Apache Nifi 进行一些简单业务逻辑处理之后发现它功能强大,且入手难度不是很高,因此这里解释一下我对它里面的一些内容的理解。有些是翻译官网上的,有一些是我自己总结的内<br>
<a href="/2017/01/11/basic-introduction-to-apache-nifi/" class="postShorten-excerpt_link link ">Continue reading</a>
</p>
</div>
</div>
<div class="postShorten-thumbnailimg">
<img alt="" itemprop="image" src="https://wuyf.me/2017/01/11/basic-introduction-to-apache-nifi/nifi-logo.png"/>
</div>
</article>
<article class="postShorten" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2016/05/16/recent-activities/">近期活动小结</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" content="Mon May 16 2016 21:17:43 GMT+0800">
May 16, 2016
</time>
<span>in </span>
<a class="category-link" href="/categories/Diary/">Diary</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>
好久没更新了,最近在忙一些事情,主要是暑假实习面了几家,想着攒攒面试经验和实习经历。
Ant FinaXXX
内推的java工程师面试整个过程持续了得有两个月吧,陆续接到电话面试,共计五轮,最后一面HR.
前四轮技术面试涉及到的内容比较杂,大致分为算法和项目经历两块,算法的话面了一些基础的,感觉口头回答没啥难度。然后是java相关的一些东西和项目经历,包括java多线程、我参加的Hackath<br>
<a href="/2016/05/16/recent-activities/" class="postShorten-excerpt_link link ">Continue reading</a>
</p>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2016/04/05/python-replace-qr-code-in-image/">替换图片中的二维码</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" content="Tue Apr 05 2016 22:26:05 GMT+0800">
Apr 05, 2016
</time>
<span>in </span>
<a class="category-link" href="/categories/Tech/">Tech</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>
遇到一个 task,需要监控二维码被扫码的次数,但无奈二维码被画在上面了,想替换原来的二维码。找到 zbar 这个好用的库就搞定了大部分了,下面直接贴代码
效果如下:
References
https://automatetheboringstuff.com/chapter17/
http://stackoverflow.com/q/23796025/2428562
<br>
<a href="/2016/04/05/python-replace-qr-code-in-image/" class="postShorten-excerpt_link link ">Continue reading</a>
</p>
</div>
</div>
<div class="postShorten-thumbnailimg">
<img alt="" itemprop="image" src="https://res.cloudinary.com/denrcs4mp/image/upload/v1459866907/to_gd20vr.png"/>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2016/03/11/mysql-event-scheduler-usage/">mysql event scheduler 用法</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" content="Fri Mar 11 2016 15:10:50 GMT+0800">
Mar 11, 2016
</time>
<span>in </span>
<a class="category-link" href="/categories/Tech/">Tech</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>
想要定时根据条件更新数据库,但又不想写脚本定时去跑任务。这两天发现一个好用的东西event scheduler
整理了一下 Event Scheduler 的主要用法
打开1SET GLOBAL event_scheduler = ON;
关闭1SET GLOBAL event_scheduler = OFF;
创建一个 Event12345678910111213141516171819202<br>
<a href="/2016/03/11/mysql-event-scheduler-usage/" class="postShorten-excerpt_link link ">Continue reading</a>
</p>
</div>
</div>
<div class="postShorten-thumbnailimg">
<img alt="" itemprop="image" src="https://res.cloudinary.com/denrcs4mp/image/upload/v1457680776/mysql-event-scheduler1-e1394042071227_ajsd7o.png"/>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2016/01/19/spring-parameter-validation/">spring parameter validation in json</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" content="Tue Jan 19 2016 18:46:48 GMT+0800">
Jan 19, 2016
</time>
<span>in </span>
<a class="category-link" href="/categories/Tech/">Tech</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>
参考先摆在前面Reference
这两天写代码遇到一个问题:如果是直接通过 @RequestBody来创建一个 Java 对象的方式,虽然可以直接 map 一个 json 对象到 Java 对象。为了对该对象的参数做一些验证,但又不想自己来组装这个对象写成很长的一段参数列表 :1234567@RequestMapping(value="/yourapi", method=RequestMethod<br>
<a href="/2016/01/19/spring-parameter-validation/" class="postShorten-excerpt_link link ">Continue reading</a>
</p>
</div>
</div>
<div class="postShorten-thumbnailimg">
<img alt="" itemprop="image" src="https://res.cloudinary.com/denrcs4mp/image/upload/v1457679042/Spring-mvc-validation_kcizuu.png"/>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2015/12/30/filco-majestouch-seriesFKBN87ML-EFB2-KEY-MAP-FOR-MAC/">Filco 圣手二代87键 Mac 键对应</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" content="Wed Dec 30 2015 11:01:53 GMT+0800">
Dec 30, 2015
</time>
<span>in </span>
<a class="category-link" href="/categories/Tools/">Tools</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>
Filco 这款键盘我已经盯上好久了,室友有一块 Filco 蓝牙 mini 的感觉太小,手比较大的我不是很适合,而且听说蓝牙经常会有连接问题,逐决定买 87键的。最近听说朋友马上要回上海了,所以托朋友从日亚上面买了一块(型号号为FKBN87ML/EFB2)。 比较中意侧刻的键盘,87键大小也正好合适,还有正刻的(型号为FKBN87ML/EB2)。11940 JPY 折合约 650 RMB ,比 <br>
<a href="/2015/12/30/filco-majestouch-seriesFKBN87ML-EFB2-KEY-MAP-FOR-MAC/" class="postShorten-excerpt_link link ">Continue reading</a>
</p>
</div>
</div>
<div class="postShorten-thumbnailimg">
<img alt="" itemprop="image" src="https://res.cloudinary.com/denrcs4mp/image/upload/c_scale,w_353/v1453962694/61lGfrgSWCL._SL1200__yramh1.jpg"/>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2015/12/22/internship-at-works-applications/">Works Applications 实习经历</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" content="Tue Dec 22 2015 16:17:57 GMT+0800">
Dec 22, 2015
</time>
<span>in </span>
<a class="category-link" href="/categories/Diary/">Diary</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>
Works Appliations面试经过关于这家公司的印象大致也就是给的工资比较多,比一般应届毕业生高出不少,其他就没有多少了。
后面通宣讲会知道是做ERP的,但没SAP和ORACLE这样的规模,抱着试试的态度参加了面试。过程是:
线下题,给两天做
线下题目过了之后on site面试
onsite 面试过了之后有两种情况
如果是非常优秀,直接发offer(小伙伴泡泡算是这种,他因为有事没法去实<br>
<a href="/2015/12/22/internship-at-works-applications/" class="postShorten-excerpt_link link ">Continue reading</a>
</p>
</div>
</div>
<div class="postShorten-thumbnailimg">
<img alt="" itemprop="image" src="https://res.cloudinary.com/denrcs4mp/image/upload/v1450858253/logo_worksap_ynmjax.gif"/>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2015/11/13/jaccount-login-for-token-based-webapp/">基于token验证的web应用jAccount登录</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" content="Fri Nov 13 2015 23:01:19 GMT+0800">
Nov 13, 2015
</time>
<span>in </span>
<a class="category-link" href="/categories/Tech/">Tech</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>
最近在做一个学校的项目,需要提供给上海交通大学学生和老师使用,所以需要使用jAccount登录
jAccount简介【详情看这里】
jAccount认证体系是上海交通大学网络信息中心开发的用户认证体系。网络信息中心为每个注册的交大校园网用户提供了一个统一的网络账户,称为 jAccount
然后jAccount里面包含的信息如下:
checkLogin 返回的Hashtable中包含了该用户的一<br>
<a href="/2015/11/13/jaccount-login-for-token-based-webapp/" class="postShorten-excerpt_link link ">Continue reading</a>
</p>
</div>
</div>
<div class="postShorten-thumbnailimg">
<img alt="" itemprop="image" src="https://res.cloudinary.com/denrcs4mp/image/upload/v1447427096/undefined_oqwtxf.png"/>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2015/11/11/hackshanghai2015/">HackShanghai 2015小记</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" content="Wed Nov 11 2015 00:13:21 GMT+0800">
Nov 11, 2015
</time>
<span>in </span>
<a class="category-link" href="/categories/Diary/">Diary</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>
上周末(2015.11.07-08)两天去上海纽约大学(一所很土豪的学校,据说学费是4.5万刀一年)参加了黑客马拉松比赛。
这是我第二次参加此活动,去年由畅哥带领着做了一次。上次参赛的项目大概的idea是用pepple watch发送简单的自定义消息。比如亲人间的示爱或者老年人危急时的求助消息。
这一次我们的想法也是结合硬件去做一些事情,但参赛前并没有非常具体,只是想看比赛方提供什么再决定做。当得<br>
<a href="/2015/11/11/hackshanghai2015/" class="postShorten-excerpt_link link ">Continue reading</a>
</p>
</div>
</div>
<div class="postShorten-thumbnailimg">
<img alt="" itemprop="image" src="https://res.cloudinary.com/denrcs4mp/image/upload/v1447173126/hackShanghai_znombm.png"/>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/2015/10/12/Sequel-Pro-export-table-schema-diagram/">Sequel Pro 导出表结构图</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" content="Mon Oct 12 2015 00:52:28 GMT+0800">
Oct 12, 2015
</time>
<span>in </span>
<a class="category-link" href="/categories/Tools/">Tools</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>
步骤
用Sequel Pro导出Dot)文件1File-> Export... -> Dot
用dot命令(需要先安装graphviz)将dot转为图片1dot -Tjpg test.dot > test.jpg
最后导出的图如下:
<br>
<a href="/2015/10/12/Sequel-Pro-export-table-schema-diagram/" class="postShorten-excerpt_link link ">Continue reading</a>
</p>
</div>
</div>
<div class="postShorten-thumbnailimg">
<img alt="" itemprop="image" src="https://res.cloudinary.com/denrcs4mp/image/upload/c_scale,w_200/v1444582455/687474703a2f2f7777772e73657175656c70726f2e636f6d2f626c6f672f77702d636f6e74656e742f75706c6f6164732f323031332f30312f73657175656c2d70726f2d312e302e706e67_pvjsye.png"/>
</div>
</article>
<div class="pagination-bar">
<ul class="pagination">
<li class="pagination-next">
<a class="btn btn--default btn--small" href="/page/2/">
<span>OLDER POSTS</span>
<i class="fa fa-angle-right text-base icon-ml"></i>
</a>
</li>
<li class="pagination-number">page 1 of 2</li>
</ul>
</div>
</section>
<footer id="footer" class="main-content-wrap">
<span class="copyrights">
Copyrights © 2017 Wu Yongfeng. All Rights Reserved.
</span>
</footer>
</div>
</div>
<div id="about">
<div id="about-card">
<div id="about-btn-close">
<i class="fa fa-remove"></i>
</div>
<h4 id="about-card-name">Wu Yongfeng</h4>
<h5 id="about-card-bio"><p>不会写代码</p>
</h5>
<h5 id="about-card-job">
<i class="fa fa-briefcase"></i>
<br/>
<p>Student</p>
</h5>
<h5 id="about-card-location">
<i class="fa fa-map-marker"></i>
<br/>
Shanghai
</h5>
</div>
</div>
<div id="cover" style="background-image:url('/assets/images/Wallpaper.jpeg');"></div>
</body>
<!--SCRIPTS-->
<script src="/assets/js/script.min.js" type="text/javascript"></script>
<!--SCRIPTS END-->
</html>