-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
569 lines (531 loc) Β· 35.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Personal website of Faris Arifiansyah">
<meta name="author" content="Faris Arifiansyah">
<meta name="keywords" content="faris arifiansyah" />
<!-- Facebook and Twitter integration -->
<meta property="og:title" content="Faris Arifiansyah's Personal Website"/>
<meta property="og:type" content="website"/>
<meta property="og:image" content="https://www.faris.id/img/profile.jpg"/>
<meta property="og:url" content="https://www.faris.id"/>
<meta property="og:site_name" content="Faris Arifiansyah's Personal Website"/>
<meta property="og:description" content="Hello, my name is Faris. I am an ESFJ Person. I'm a software engineer and currently working for Xtremax Indonesia. I'm passionately in love with software engineering because there are so many challenges in building a software with the best quality. I have a dream to contribute more to my nation, Indonesia, through technology. I want to use my skills and knowledge to increase the Indonesian people's welfare."/>
<meta name="twitter:title" content="Faris Arifiansyah's Personal Website" />
<meta name="twitter:image" content="https://www.faris.id/img/profile.jpg" />
<meta name="twitter:url" content="https://www.faris.id" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:creator" content="@Faris17" />
<title>Faris Arifiansyah</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="https://fonts.googleapis.com/css?family=Saira+Extra+Condensed:100,200,300,400,500,600,700,800,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i" rel="stylesheet">
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="vendor/devicons/css/devicons.min.css" rel="stylesheet">
<link href="vendor/simple-line-icons/css/simple-line-icons.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/resume.min.css" rel="stylesheet">
<!-- Favicon -->
<link href="img/favicon.png" rel="icon" type="image/png">
</head>
<body id="page-top">
<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top" id="sideNav">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<span class="d-block d-lg-none">Menu</span>
<span class="d-none d-lg-block">
<img class="img-fluid img-profile rounded-circle mx-auto mb-2" src="img/profile.jpg" alt="">
</span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#profile">Profile</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#experience">Experience</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#education">Education</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#interests">Interests</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#awards">Awards</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="https://blog.faris.id" target="_blank">Blog</a>
</li>
</ul>
</div>
</nav>
<div class="container-fluid p-0">
<section class="resume-section p-3 p-lg-5 d-flex d-column" id="about">
<div class="my-auto">
<h1 class="mb-0">Faris
<span class="text-primary">Arifiansyah</span>
</h1>
<div class="subheading mb-5">Bandung, West Java, Indonesia Β·
<a href="mailto:[email protected]">[email protected]</a>
</div>
<p class="mb-5">I am a software engineer and currently working for <a href="https://www.bukalapak.com/" target="_blank">Bukalapak</a>.
I'm passionately in love with technology, especially IT. I'm a self-motivated and adaptable person. I'm always eager to learn something new, whatever it is.
I love sports, especially football, and I also love playing music.
</p>
<ul class="list-inline list-social-icons mb-0">
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/farisarifiansyah/" target="_blank">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="https://github.com/faris-arifiansyah/" target="_blank">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.instagram.com/faris_arifiansyah/" target="_blank">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-instagram fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="https://twitter.com/Faris17" target="_blank">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.facebook.com/faris19" target="_blank">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.youtube.com/channel/UCo8pcpPchtjtprX0vmB_7EQ" target="_blank">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-youtube fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="https://blog.faris.id" target="_blank">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-rss fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
</div>
</section>
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="profile">
<div class="my-auto">
<h2 class="mb-5">Profile</h2>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<p>Hello, my name is Faris. I was born in Bandung on 9th December 1993. I'm a software engineer and currently working for <a href="https://www.bukalapak.com" target="_blank">Bukalapak</a>.
I'm passionately in love with software engineering because there are so many challenges in building a software with the best quality. I have
a dream to contribute to my nation, Indonesia, through technology. I want to use my skills and knowledge to increase the
Indonesian people's welfare. As a software engineer, I'm very happy when people use a software that I built and they feel helped by it. I also
love to share my knowledge and sometimes I wrote them on my <a href="https://blog.faris.id" target="_blank">blog</a>.
</p>
<p>
The first time I was interested in the IT world is when I was in junior high school. I was a gamer and played lot of games. One day, I played a game
called Little Fighter 2. I really wanted to use a character which is the villain king in that game, but by default, that character is not available to choose.
I was curious and ended up going to the installation folder and open the files which can be opened by notepad LOL. I edited some files which I thought may
have an impact to the game and then I restarted the game. And BOOM, I can use the character that I wanted haha. I was very happy and I thought that I was
successfully "hacking" the game π
</p>
<p>
The next thing that made me became more interested in IT world is when I have an internet connection at home. I remember it was 2009. At that time, I also went to vocational high school
and took the <strong>Computer and Network Engineering </strong>major. I started my blog in 2009 and learn HTML & CSS because of it. I didn't know that there were
many free templates available for Blogger. So, I modified the default template by myself π
. At school, I got many knowledge and skills about computer and networking.
I learn the components of a PC and then I can assemble a PC. I learned to set up a local area network (LAN) and also wide area network (WAN). I also tried many operating systems besides Windows,
such as Free BSD, Mikrotik, and many Linux distros. I remember I even made my laptop quad boot by using Windows, Ubuntu, Slackware, and Backtrack. I did it on purpose, of course.
I spent my 4 years in this school using Linux. Most of the material I got are about networking. I remember I learned about IP, Netmask/Genmask, supernetting, subnetting, routing, building
a DNS server, Proxy server, Mail server, etc. I honestly like them all but then I realize that these are not really my thing. I'm more into a software engineering rather than this
networking or IT infrastructure things. So, after I finished the school, I decided not to looking for a job. I wanted to go to college.
</p>
<p>
In August 2013, I started my study at Bandung State Polytechnic (Polban). I took the <strong>Informatics</strong> major. In there, I learned all about software engineering
from the very basic. At first, programming is not easy for me but eventually I'm getting used to it and getting better and
better. I spent 4 years at Polban and those years are my most productive years ever. I got sooo many new knowledge and skills from my great
lecturers. I learned about many programming paradigms, programming techniques, data structures & algorithms, then study about data model (with SQL and NoSQL),
analyze & design a software, dealing with distributed environment, and so many other things. I'm very grateful that I was given a chance studied there. In 2017, I graduated from
Polban and unexpectedly, I received the honor as the best graduate in engineering. I really didn't expect to get that honor but I'm very happy,
of course. This is my greatest achievement in my life until today π
</p>
<p>
Apart from being a software engineer, I love sports, especially football. Until junior highschool, I still wanted to become a professional
football player. But after I went to vocational highschool, I became more realistic haha. I ended up just making football as my hobby, not to
be my profession. I have a dream to watch a world cup match live in the stadium. Hopefully someday I can make it true. Aamiin.
I also have an interest in music. I love playing guitar and singing. Some of my friends told me that I have a good voice.
They suggest me to become a professional singer but I don't want to. I think I'm not good enough to become a professional singer and
also I love software engineering more than music because I think I can make a greater positive impact to other people if I become a
software engineer than a musician. I always remember these words <em><strong>"Khairunnas anfa'uhum linnas"</strong></em> which means
<em><strong>"The best of people are those that bring most benefit to the rest of mankind"</strong></em>. Those words got stuck into
my head since the first time I hear about it. It is written on my organization jacket when I was in vocational highschool. I'll never forget it.
</p>
<p>
I have a motto, <em><strong>"There's nothing you can't do if you mean it"</strong></em>. So, when I feel down, I try to remember my motto and
get up. I'm not a genius. I've been meeting some people who are smarter than me or considered as a genius. When they can do something, I believe
I can do it too. The difference is that maybe they can do it faster than me. I'm not feeling inferior to them. I just have to try and learn about it two times,
three times, or four times harder than them. The result would be the same or even better. So my message to you guys (and also myself),
Don't give up on your dreams! Find your passion, define your goals, and work as hard as you can to achieve those goals. Even if you don't reach
your goals yet, trust me, you'll get an important lesson. Just keep learning and trying π
</p>
</div>
</div>
</div>
</section>
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="experience">
<div class="my-auto">
<h2 class="mb-5">Experience</h2>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Software Engineer</h3>
<div class="subheading mb-3"><a href="https://www.bukalapak.com" target="_blank">PT Bukalapak.com</a></div>
<p>
Bukalapak is one of the largest online marketplaces in Indonesia. I work here as a software
engineer, specifically back-end. I'm very interested in Bukalapak and I have been a Bukalapak
customer since 2015. Bukalapak has a vision that is aligned with my goals and dreams. So when I
graduated, honestly, I wanted to join Bukalapak as a software engineer,
but I didn't get permission from my parents because Bukalapak office is located in Jakarta
(I didn't know Bukalapak has a branch office in Bandung). I need to stay in Bandung for family
reasons. So, I applied to another company, Xtremax Indonesia, which is located in Bandung. I
worked there as a back-end developer.
</p>
<p>
One day, someone at Bukalapak contacted me via LinkedIn. He invited me to join Bukalapak and
asked me to send my CV if I'm interested. He told me that the software engineer position
can be located in Bandung but the recruitment process still need to be conducted in Jakarta. I'm very
interested, of course. So, after thinking carefully, I decided to apply to Bukalapak as a software
engineer, back-end. I passed all the tests and they offered me the job. It was May 28<sup>th</sup>, 2018.
They offered me much higher salary than I expected plus attractive benefits. So, I accepted the offer
without a doubt. They wanted me to join them as soon as possible, but I couldn't just leave my team
in Xtremax. So, I could just join Bukalapak in August 2018.
</p>
<p>
When I got offered by Bukalapak, I was happy, excited, and feel challenged at the
same time because everybody knows that it's not easy to get offered by Bukalapak as
an engineer. The acceptance rate is very low. That is what makes me feel very
challenged, excited, and honestly a little bit nervous π
. I will be working with the top
engineers and top talents in Indonesia π¬. I hope I can use my skills and knowledge,
here at Bukalapak, for the good of Indonesian people. π
</p>
<p>
UPDATE : Until today (June 9<sup>th</sup>, 2019), these are the technologies that I
use in Bukalapak:
</p>
<ul>
<li>Go</li>
<li>Ruby on Rails</li>
<li>MySQL</li>
<li>MongoDB</li>
<li>Redis</li>
<li>Elastic Search</li>
<li>RabbitMQ</li>
<li>Docker</li>
<li>Kubernetes</li>
<li>Gitlab CI</li>
<li>Grafana</li>
<li>Prometheus</li>
<li>Nginx</li>
</ul>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">August 2018 - Present</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Back-end Developer</h3>
<div class="subheading mb-3"><a href="https://www.xtremax.com" target="_blank">PT Xtremax Teknologi Indonesia</a></div>
<p>
Xtremax Indonesia is a branch of Xtremax Pte Ltd. based in Singapore. Xtremax is a digital agency and has a specialization in
building portals & CMS, enterprise application, and cloud computing. Xtremax is the first company that I choose to work for.
I began my professional career in this company. After graduated from college, I did some "research" about software companies located
in Bandung which value a software developer highly. Then I found Xtremax is one of them. So, I applied to Xtremax. After passing
all the test stages, I got offered by them. They offered me a higher salary than I expected and also good benefits. So I accept the offer
without a doubt. Xtremax provides cozy workplace and has many fun & talented developers. I work here as a back-end developer,
specifically Java Developer. However, even though my job title is back-end developer, sometimes I still have to deal with the front-end side by myself. π
</p>
<p>
These are the technologies that I use in Xtremax:
</p>
<ul>
<li>Java</li>
<li>Spring Framework (core, web, webmvc, data, transaction, cloud config, security, AOP)</li>
<li>Hibernate Framework</li>
<li>Liquibase</li>
<li>Ehcache</li>
<li>Oracle DB, PostgreSQL</li>
<li>JHipster</li>
<li>Build & Dependancy Management : Gradle, Maven</li>
<li>Front-end things : HTML, CSS, Bootstrap, JavaScript, jQuery, ExtJS</li>
<li>CI server : Jet Brains Team City</li>
</ul>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">September 2017 - July 2018</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row">
<div class="resume-content mr-auto">
<h3 class="mb-0">Web Developer (Intern)</h3>
<div class="subheading mb-3"><a href="http://www.ursabyte.com" target="_blank">PT Ursabyte</a></div>
<p>I was an intern web developer at this company. The internship program is part of the curriculum at my college.
I spent 5 months with cool and fun guys. I also have friendly bosses here. I involved in some projects and
all those projects were using Java in the server side with spring framework. Previously, I already familiar with
spring framework but still, of course, I learned many things and I've become more experienced using Java with this spring framework.
One thing that I'll never forget is when I involved in a project where in that project I worked as a full-stack developer. Yes, I was
working on both the back-end and the front-end side of the software. This is my first time I code JavaScript. I've faced HTML and CSS before but
I've never code JavaScript. At first, I thought it was gonna be difficult, but after I learnt JavaScript and jQuery in one full day,
I was wrong. It was not that difficult and jQuery even make it easier for us, developer. I'm so glad that I met these guys, especially my boss.
I was working directly with him and he gave me valuable lessons. Thanks Boss π
</p>
<p>
These are the technologies that I use when I was working at this company:
</p>
<ul>
<li>Java Programming Language</li>
<li>Spring Framework</li>
<li>Hibernate Framework</li>
<li>DBMS : Oracle DB, PostgreSQL</li>
<li>Application/Web Server : Oracle Weblogic, Tomcat</li>
<li>Reporting : JasperReport</li>
<li>Front-end things : HTML, CSS with Bootstrap Framework, JavaScript, jQuery</li>
</ul>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">August 2016 - December 2016</span>
</div>
</div>
</div>
</section>
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="education">
<div class="my-auto">
<h2 class="mb-5">Education</h2>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Politeknik Negeri Bandung (Bandung State Polytechnic)</h3>
<div class="subheading mb-3">Bachelor of Applied Science, Informatics, GPA: 3.84 / 4.00</div>
<p>
<strong>Core modules</strong>: Basics of Programming, Data Structure and Algorithm, Programming Techniques, Principles of Programming Language,
Database System, Operating System, Software Analysis and Design, Data Modelling, Information System, Web Development, Software Testing,
Computer Graphics, Image Processing, Object-oriented Software Programming, Distributed System, Data Communication and Networking,
Computer Architecture and Organization, User Interface Design, Software Project Management
</p>
<p style="font-weight: bold;">Activities, Honor, and Awards</p>
<ul>
<li>The best graduate in engineering</li>
<li>Participated in Gemastik programming contest (2014 and 2015)</li>
<li>Participated in Imagine Cup 2015 β Game : Math Fantasy Defense</li>
<li>Participated in PKM (Program Kreativitas Mahasiswa) 2015-2016 β Mobile Application : Bandung Virtual Tour Guide (funded by Kemenristekdikti)</li>
<li>Chief executive of industry visit event (to Biznet Technovillage)</li>
<li>Scientific committee of Tisigram programming contest</li>
<li>The 1<sup>st</sup> champion of solo pop putra (singing competition) - Porseni Himakom</li>
<li>Staff of Education Department of Computer Student Union (Himakom)</li>
</ul>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">August 2013 - October 2017</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row">
<div class="resume-content mr-auto">
<h3 class="mb-0">SMKN 1 Cimahi (Vocational High School 1 Cimahi)</h3>
<div class="subheading mb-3">Computer and Network Engineering</div>
<p>
<strong>Core modules</strong>: Server Admin, LAN Diagnosis, WAN Diagnosis, LAN Installation, WAN Installation, Operating System, Web Database,
PC Assembly and Repair
</p>
<p style="font-weight: bold;">Activities, Honor, and Awards</p>
<ul>
<li>Futsal (Extracurricular)</li>
<li>Staff of Media Department of Forum Dienul Islam (FDI)</li>
</ul>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">July 2009 - July 2013</span>
</div>
</div>
</div>
</section>
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="skills">
<div class="my-auto">
<h2 class="mb-5">Skills</h2>
<div class="subheading mb-3" style="margin-bottom: 0 !important;">Coding Languages</div>
<ul class="list-inline list-icons">
<li class="list-inline-item">
<a href="http://www.oracle.com/technetwork/java/index.html" target="_blank" title="Java"><img src="img/skills/java.png" /></a>
</li>
<li class="list-inline-item">
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank" title="JavaScript"><img src="img/skills/javascript.png" /></a>
</li>
<li class="list-inline-item">
<a href="https://golang.org/" target="_blank" title="Go"><img src="img/skills/golang.png" /></a>
</li>
<li class="list-inline-item">
<a href="https://docs.microsoft.com/en-us/dotnet/csharp/" target="_blank" title="C#"><img src="img/skills/c-sharp.png" /></a>
</li>
<li class="list-inline-item">
<a href="https://en.wikipedia.org/wiki/C_(programming_language)" target="_blank" title="C"><img src="img/skills/c.png" /></a>
</li>
<li class="list-inline-item">
<a href="https://www.w3.org/html/" target="_blank" title="HTML"><img src="img/skills/html.png" /></a>
</li>
<li class="list-inline-item">
<a href="https://www.w3.org/Style/CSS/Overview.en.html" target="_blank" title="CSS"><img src="img/skills/css.png" /></a>
</li>
</ul>
<div class="subheading mb-3" style="margin: 30px 0 0 0 !important;">Database Management Systems</div>
<ul class="list-inline list-icons">
<li class="list-inline-item">
<a href="https://www.oracle.com/database/technologies/index.html" target="_blank" title="Oracle DB"><img src="img/skills/oracle-db.png" /></a>
</li>
<li class="list-inline-item">
<a href="https://www.mysql.com/" target="_blank" title="MySQL"><img src="img/skills/mysql.png" /></a>
</li>
<li class="list-inline-item">
<a href="https://www.postgresql.org/" target="_blank" title="PostgreSQL"><img src="img/skills/postgresql.png" /></a>
</li>
<li class="list-inline-item">
<a href="https://neo4j.com" target="_blank" title="Neo4j"><img src="img/skills/neo4j.png" /></a>
</li>
</ul>
<div class="subheading mb-3" style="margin: 30px 0 0 0 !important;">Frameworks, Libraries, and Other Tools</div>
<ul class="list-inline list-icons">
<li class="list-inline-item">
<a href="https://spring.io/" target="_blank" title="Spring Framework"><img src="img/skills/spring.png" /></a>
</li>
<li class="list-inline-item">
<a href="http://www.jhipster.tech/" target="_blank" title="JHipster"><img src="img/skills/jhipster.png" /></a>
</li>
<li class="list-inline-item">
<a href="http://hibernate.org/" target="_blank" title="Hibernate Framework"><img src="img/skills/hibernate.png" /></a>
</li>
<li class="list-inline-item">
<a href="https://jquery.com/" target="_blank" title="jQuery"><img src="img/skills/jquery.png" /></a>
</li>
<li class="list-inline-item">
<a href="https://www.sencha.com/products/extjs/" target="_blank" title="ExtJS"><img src="img/skills/extjs.png" /></a>
</li>
<li class="list-inline-item">
<a href="https://getbootstrap.com/" target="_blank" title="Bootstrap"><img src="img/skills/bootstrap.png" /></a>
</li>
<li class="list-inline-item">
<a href="http://www.mybatis.org/" target="_blank" title="MyBatis"><img src="img/skills/mybatis.png" /></a>
</li>
<li class="list-inline-item">
<a href="https://community.jaspersoft.com/project/jasperreports-library/" target="_blank" title="Jasper Reports"><img src="img/skills/jasperreports.png" height="40px;" /></a>
</li>
<li class="list-inline-item">
<a href="http://gradle.org/" target="_blank" title="Gradle"><img src="img/skills/gradle.png" /></a>
</li>
<li class="list-inline-item">
<a href="https://maven.apache.org/" target="_blank" title="Maven"><img src="img/skills/maven.png" height="40px;" /></a>
</li>
<li class="list-inline-item">
<a href="https://git-scm.com/" target="_blank" title="Git"><img src="img/skills/git.png" height="40px;" /></a>
</li>
<li class="list-inline-item">
<a href="http://www.jetbrains.com/teamcity/" target="_blank" title="TeamCity"><img src="img/skills/teamcity.png" height="40px;" /></a>
</li>
</ul>
</div>
</section>
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="interests">
<div class="my-auto">
<h2 class="mb-5">Interests</h2>
<p>Aside from being a software engineer, I enjoyed most of my time being indoors at home. I watch movies and read books/comics/manga. There are lots of good movies
and books, but my favorite genre is mystery. In the manga world, my favorite is <strong>Hunter X Hunter (HXH)</strong> by Yoshihiro Togashi.
I don't know why, but I really like it. HXH is a part of my childhood life and it really touches me so I can't forget it even today.
</p>
<p>
In my free time, sometimes, I play futsal, football, and badminton if there are friends who invite me. I like those sports. And besides sports, I also like an adventure.
I really love the ocean even though I can't swim hahaha. I'd like to do an adventure in the sea as <strong>Pi</strong> did in the
<strong>Life of Pi</strong> π. That movie along with the <strong>One Piece</strong> series made me more interested to do an
adventure on the ocean. It looks challenging and fun π
</p>
<p>
I also spend some of my time writing about anything on my <a href="https://blog.faris.id" target="_blank">blog</a>. I love to write because
one day I can come back to see my writing and feel nostalgic by it π The best feeling about writing is when the readers feel happy and helped by the writings.
I'm happy just to see a "Thanks" comment on my blog post. It makes me feel useful and helpful to other people.
In addition to blogging, I also spend lot of my free time exploring the latest technology advancements in the software engineering world.
</p>
<p>
I'm very interested in football. I often spend my time watching football matches and read articles/news about football. I think I have a good knowledge about
this sport hahaha. My favorite football player is <strong>Ricardo Kaka</strong> from Brazil. But if we talk about the best (in my generation), then I would say <strong>Lionel Messi</strong> and
<strong>Cristiano Ronaldo</strong>. I'd say them the bests, the greatests, simply because they have been playing
consistently incredible in at least ten seasons. Both Messi & Cristiano are living legends. But if I have to choose one, then my choice goes to Messi.
In my opintion, he plays more beautiful football, has a great vision that only few players have, and more importantly, he has skills to support his great vision (he is the best dribbler
and passer in the world). Unfortunately, till today, he's still can't carry Argentina to win a major trophy.
</p>
<p>
One last thing about my interests is music. I love playing guitar and singing. My favorite musician is <strong>Ed Sheeran</strong>. He inspires me a lot.
Because of him, sometimes I make music covers and post them on one of my Youtube channels, but most of the time, I only post them on my Instagram account.
Don't hesitate to watch haha π
</p>
</div>
</section>
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="awards">
<div class="my-auto">
<h2 class="mb-5">Awards & Certifications</h2>
<ul class="fa-ul mb-0">
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
Neo4j Certified Professional (April 2018, Licence Number : 16695748) - <strong><a href="https://neo4j.com/" target="_blank">Neo4j, Inc.</a></strong>
</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
The best graduate of Bandung State Polytechnic in engineering (October 2017, Number : 1360/PL1.R1/KM/2017) - <strong><a href="https://www.polban.ac.id/" target="_blank">Polban</a></strong>
</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
Android Applications Development with Android Studio (June 2017, Licence Number : 17C619) - <strong><a href="http://www.informit.tc" target="_blank">InformIT</a></strong>
</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
TOEIC (April 2017 - April 2019, Score : 770 / 990) - <strong><a href="https://www.ets.org/" target="_blank">Educational Testing Service (ETS)</a></strong>
</li>
</ul>
</div>
</section>
</div>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Plugin JavaScript -->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Custom scripts for this template -->
<script src="js/resume.min.js"></script>
</body>
</html>