-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
979 lines (938 loc) · 44.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
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Sugiarto Wibowo</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="" />
<!-- Facebook and Twitter integration -->
<meta property="og:title" content=""/>
<meta property="og:image" content=""/>
<meta property="og:url" content=""/>
<meta property="og:site_name" content=""/>
<meta property="og:description" content=""/>
<meta name="twitter:title" content="" />
<meta name="twitter:image" content="" />
<meta name="twitter:url" content="" />
<meta name="twitter:card" content="" />
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="shortcut icon" href="images/favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700" rel="stylesheet">
<link rel="stylesheet" href="https://i.icomoon.io/public/temp/fc80d0e0c9/UntitledProject/style-svg.css">
<script defer src="https://i.icomoon.io/public/temp/fc80d0e0c9/UntitledProject/svgxuse.js"></script>
<!-- Animate.css -->
<link rel="stylesheet" href="css/animate.css">
<!-- Icomoon Icon Fonts-->
<link rel="stylesheet" href="css/icomoon.css">
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- Flexslider -->
<link rel="stylesheet" href="css/flexslider.css">
<!-- Flaticons -->
<link rel="stylesheet" href="fonts/flaticon/font/flaticon.css">
<!-- Owl Carousel -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="css/style.css">
<!-- Modernizr JS -->
<script src="js/modernizr-2.6.2.min.js"></script>
<!-- FOR IE9 below -->
<!--[if lt IE 9]>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="colorlib-page">
<div class="container-wrap">
<a href="#" class="js-colorlib-nav-toggle colorlib-nav-toggle" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"><i></i></a>
<aside id="colorlib-aside" role="complementary" class="border js-fullheight">
<div class="text-center">
<div class="author-img" style="background-image: url(images/profile_picture.jpg);"></div>
<h1 id="colorlib-logo"><a href="index.html">Sugiarto Wibowo</a></h1>
<span class="position">
<a href="#">Embedded Software Engineer</a>
<p>in Indonesia</p>
</span>
</div>
<nav id="colorlib-main-menu" role="navigation" class="navbar">
<div id="navbar" class="collapse">
<ul>
<li class="active"><a href="#" data-nav-section="home">Home</a></li>
<li><a href="#" data-nav-section="about">About</a></li>
<li><a href="#" data-nav-section="education">Education</a></li>
<li><a href="#" data-nav-section="experience">Experience</a></li>
<li><a href="#" data-nav-section="services">Expertise & Interest</a></li>
<li><a href="#" data-nav-section="skills">Skills</a></li>
<li><a href="#" data-nav-section="work">Work</a></li>
<li><a href="#" data-nav-section="certification">Professional Certification</a></li>
<li><a href="#" data-nav-section="publication_patent">Publication & Patent</a></li>
<!-- <li><a href="#" data-nav-section="blog">Blog</a></li> -->
<li><a href="#" data-nav-section="contact">Contact</a></li>
</ul>
</div>
</nav>
<div class="colorlib-footer">
<p><small>© <!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
Copyright <script>document.write(new Date().getFullYear());</script> All rights reserved. Made with <i class="icon-heart" aria-hidden="true"></i> by <a href="https://colorlib.com" target="_blank">Colorlib</a>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. --> </span><span>Background Images: <a href="https://unsplash.com/" target="_blank">Unsplash.com</a></span></small></p>
<ul>
<li><a href="https://github.com/osugiw"><i class="icon-social-github"></i></a></li>
<li><a href="https://www.instagram.com/osugi_w/"><i class="icon-instagram"></i></a></li>
<li><a href="https://www.linkedin.com/in/sugiarto-wibowo-osw/"><i class="icon-linkedin2"></i></a></li>
<li><a href="https://scholar.google.com/citations?user=nWA4pUsAAAAJ&hl=en"><svg class="icon icon-googlescholar"><use xlink:href="#icon-googlescholar"></use></svg></i></a></li>
</ul>
</div>
<div class="colorlib-footer">
<script src="https://static.elfsight.com/platform/platform.js" data-use-service-core defer></script>
<div class="elfsight-app-7a2c62c7-7263-4410-8572-35487f42acfe" data-elfsight-app-lazy></div>
</div>
</aside>
<div id="colorlib-main">
<section id="colorlib-hero" class="js-fullheight" data-section="home">
<div class="flexslider js-fullheight">
<ul class="slides">
<li style="background-image: url(images/bg_coffee.jpg);">
<div class="overlay"></div>
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 col-sm-12 col-xs-12 js-fullheight slider-text">
<div class="slider-text-inner js-fullheight">
<div class="desc">
<h1 style="color: aliceblue;">Hi! <br>I'm Sugiarto</h1>
<h2 style="color: aliceblue;">Scroll down to know more about me!</h2>
<!-- <p><a class="btn btn-primary btn-learn">Download CV <i class="icon-download4"></i></a></p> -->
</div>
</div>
</div>
</div>
</div>
</li>
<!-- <li style="background-image: url(images/img_bg_2.jpg);">
<div class="overlay"></div>
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 col-sm-12 col-xs-12 js-fullheight slider-text">
<div class="slider-text-inner">
<div class="desc">
<h1>I am <br>a Designer</h1>
<h2>100% html5 bootstrap templates Made by <a href="https://colorlib.com/" target="_blank">colorlib.com</a></h2>
<p><a class="btn btn-primary btn-learn">View Portfolio <i class="icon-briefcase3"></i></a></p>
</div>
</div>
</div>
</div>
</div>
</li> -->
</ul>
</div>
</section>
<section class="colorlib-about" data-section="about">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-12">
<div class="row row-bottom-padded-sm animate-box" data-animate-effect="fadeInLeft">
<div class="col-md-12">
<div class="about-desc">
<span class="heading-meta">About Me</span>
<h2 class="colorlib-heading">Who Am I?</h2>
<p><strong>Hi I'm Sugiarto Wibowo</strong> I am a Bachelor of Electrical Engineering alumni at Petra Christian University. I graduated in 2022, and since that time until the present, I have been working as an Embedded Software Engineer in an Electronics Company located in Kudus, Central Java, Indonesia. My expertise is programming specifically on embedded devices, I have a strong interest and have been continuously upgrading my knowledge of Artificial Intelligence, the Internet of Things, Wireless Technology, and state-of-the-art technologies.</p>
<p>In my leisure time, I mostly enjoy brewing a cup of coffee using V60, Mokapot, Vietnam Drip, and espresso. Besides that, I also like watching movies and Korean dramas, exploring culinary, and learning something new such as cooking new recipes.</p>
</div>
</div>
</div>
<!-- <div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<div class="hire">
<h2>I am happy to know you <br>that 300+ projects done sucessfully!</h2>
<a href="#" class="btn-hire">Hire me</a>
</div>
</div>
</div> -->
<div class="row">
<div class="col-md-3 animate-box" data-animate-effect="fadeInTop">
<div class="services color-6">
<span class="icon2"><img src="images/icon/icon_about_cpu.svg"/></span>
<h3>Embedded Programming</h3>
</div>
</div>
<div class="col-md-3 animate-box" data-animate-effect="fadeInLeft">
<div class="services color-5">
<span class="icon2"><img src="images/icon/icon_about_brain.svg"/></span>
<h3>Artificial Intelligence</h3>
</div>
</div>
<div class="col-md-3 animate-box" data-animate-effect="fadeInRight">
<div class="services color-2">
<span class="icon2"><img src="images/icon/icon_about_iot.svg"/></span>
<h3>Internet of Things</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-education" data-section="education">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">Education</span>
<h2 class="colorlib-heading animate-box">Education</h2>
</div>
</div>
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<div class="fancy-collapse-panel">
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">Bachelor Degree of Electrical Engineering
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<div class="row">
<div class="col-md-6">
<p>Graduated in 2022 from <strong><a href="https://electrical.petra.ac.id/">Petra Christian University</a></strong>, Surabaya, East Java, Indonesia Focus in <strong>Robotics and Electronics.</strong></p>
</div>
<div class="col-md-6">
<p>Notable Activities:</p>
<ul>
<li>Dean's List, <strong>3.86</strong></li>
<li>Part of the <strong>laboratory assistant for almost three years</strong>.</li>
<li><strong>Ministry of Education, Culture, Research, and Technology, Indonesia funding:</strong> Created a prototype system to evacuate people in multi-story buildings when earthquake appears.</li>
<li><strong>2nd winner in International Electrical Engineering Competition</strong> by Faculty of Industral Engineering, Petra Christian University: Invented a wearable device to track COVID-19 patient' oxygen and heartbeat, and monitored by hospitals.</li>
<li>Joined an <strong>student organization</strong>, namely HIMATEKTRA as a member of Human Resource and Development in the first period and as Head of Research and Development in the second period.</li>
<li>Appointed as <strong>a team leader</strong> consisted of 10 people to create events that could educate people around Surabaya due to COVID-19 hit the economy.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingTwo">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">High School Major of Natural Science
</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo">
<div class="panel-body">
<p>Graduated in 2018 from <strong>Karangturi National High School</strong>, Semarang, Central Java, Indonesia</p>
<!-- <ul>
<li>Separated they live in Bookmarksgrove right</li>
<li>Separated they live in Bookmarksgrove right</li>
</ul> -->
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingThree">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseThree" aria-expanded="false" aria-controls="collapseThree">Google Project Management Specialization
</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body">
<div class="row">
<div class="col-md-6">
<p>Funded by the Ministry of Communication and Information Technology of the Republic of Indonesia to study<a href="https://coursera.org/share/3f5385c21eb335b05f5a5a0cb3ab19c7"> Google Project Management</a> course developed by Google and was taught through the Coursera Platform</p>
</div>
<div class="col-md-6">
<p>Key activities:</p>
<ul>
<li>Estimating time and budgets</li>
<li>Running effective meetings and managing stakeholders</li>
<li>Identifying and managing risks</li>
<li>Applying Agile and Scrum frameworks</li>
<li>Leadership skills and navigating team dynamics</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-experience" data-section="experience">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">Experience</span>
<h2 class="colorlib-heading animate-box">Work Experience</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="timeline-centered">
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-1">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="https://polytron.co.id/">Embedded Software Engineer at Polytron, Indonesia</a> <span>August 2022-present</span></h2>
<ul>
<li>Create and develop high-quality software for embedded devices using C/C++ and Python language</li>
<li>Coordinate with the engineers from another department to develop whitegoods appliances, including Digital Rice Cooker</li>
<li>Research on the state-of-the-art of embedded technologies, including wireless technology and microcontroller-related</li>
<li>Document software design and functionality</li>
<li>Assist the software manager in internal training</li>
<li>Continuous improvement by doing self-learning and joining external training</li>
<li>Share the newly acquired knowledge from the research or training to the software team</li>
<li>Communicate with the chip vendors regarding the vendor's products.</li>
</ul>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInRight">
<div class="timeline-entry-inner">
<div class="timeline-icon color-2">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="http://www.unicodeindonesia.com/">R&D Engineer Intern at Unicode, Indonesia</a> <span>July-December 2021</span></h2>
<ul>
<li>Create a vehicle tracking system for monitoring the driver’s location based on a GPS module integrated into the device. The location data is then sent to the server through cellular communication (4G), and the data is processed further by the server to check whether the driver is out of the working area.</li>
<li>Improve the existing manual employee attendance system into an automatic attendance system by detecting the employees’ devices through Bluetooth scanning performed by several wireless Single Board Computer (SBC) stations and utilizing the Room Assistant framework.</li>
<li>Implement a state-of-the-art computer vision algorithm on SBC, YOLO, for human-computer interaction purposes by classifying hand gestures captured by the camera, and the detected gesture can trigger commands on the computer.</li>
</ul>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-3">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="https://electrical.petra.ac.id/">Electronics Laboratory Assistant at Petra Christian University</a> <span>September 2019-2022</span></h2>
<ul>
<li>Prepare and supervise basic electronics, digital electronics, microprocessor systems, machine vision, and robotics project practicums. </li>
<li>Develop a learning module for practicum about basic FPGA programming using Xilinx Pynq-Z2. The hands-on lab included controlling output, reading input, and generating PWM signals for moving servo. </li>
<li>Develop a training module of collaborative robots using Universal Robots to sort and move objects in conveyors using an industrial camera.</li>
</ul>
</div>
</div>
</article>
<!-- <article class="timeline-entry animate-box" data-animate-effect="fadeInTop">
<div class="timeline-entry-inner">
<div class="timeline-icon color-4">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">Creative Designer</a> <span>2017-2018</span></h2>
<p>Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-5">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">UI/UX Designer at Envato</a> <span>2017-2018</span></h2>
<p>Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.</p>
</div>
</div>
</article> -->
<article class="timeline-entry begin animate-box" data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-icon color-none">
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-services" data-section="services">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">What I do?</span>
<h2 class="colorlib-heading">My expertise & Interest</h2>
</div>
</div>
<div class="row row-pt-md">
<div class="col-md-4 text-center animate-box">
<div class="services color-1">
<span class="icon">
<img src="images/icon/icon_cpu.svg"/>
</span>
<div class="desc">
<h3>Embedded Programming</h3>
<p>C, C++, Micropython</p>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-7">
<span class="icon">
<img src="images/icon/icon_brain.svg"/>
</span>
<div class="desc">
<h3>Artificial Intelligence</h3>
<p>Computer Vision & Reinforcement Learning</p>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-3">
<span class="icon">
<img src="images/icon/icon_iot.svg"/>
</span>
<div class="desc">
<h3>Internet of Things</h3>
<p>Wearable device & home appliances</p>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-4">
<span class="icon">
<img src="images/icon/icon_wifi.svg"/>
</span>
<div class="desc">
<h3>Wireless Technology</h3>
<p>RF(BLE, Wi-Fi, Thread), GSM(2G,3G,4G)</p>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-2">
<span class="icon">
<i class="icon-layers2"></i>
</span>
<div class="desc">
<h3>Graphic Design</h3>
<p>3D modelling(SolidWorks), Figma, Corel Draw</p>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-1">
<span class="icon">
<i class="icon-phone3"></i>
</span>
<div class="desc">
<h3>Application</h3>
<p>Android using Java</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <div id="colorlib-counter" class="colorlib-counters" style="background-image: url(images/cover_bg_1.jpg);" data-stellar-background-ratio="0.5">
<div class="overlay"></div>
<div class="colorlib-narrow-content">
<div class="row">
</div>
<div class="row">
<div class="col-md-3 text-center animate-box">
<span class="colorlib-counter js-counter" data-from="0" data-to="309" data-speed="5000" data-refresh-interval="50"></span>
<span class="colorlib-counter-label">Cups of coffee</span>
</div>
<div class="col-md-3 text-center animate-box">
<span class="colorlib-counter js-counter" data-from="0" data-to="356" data-speed="5000" data-refresh-interval="50"></span>
<span class="colorlib-counter-label">Projects</span>
</div>
<div class="col-md-3 text-center animate-box">
<span class="colorlib-counter js-counter" data-from="0" data-to="30" data-speed="5000" data-refresh-interval="50"></span>
<span class="colorlib-counter-label">Clients</span>
</div>
<div class="col-md-3 text-center animate-box">
<span class="colorlib-counter js-counter" data-from="0" data-to="10" data-speed="5000" data-refresh-interval="50"></span>
<span class="colorlib-counter-label">Partners</span>
</div>
</div>
</div>
</div> -->
<section class="colorlib-skills" data-section="skills">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">My Specialty</span>
<h2 class="colorlib-heading animate-box">My Skills</h2>
</div>
</div>
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<p>I have various skills including skills that are related to my job and skills that I unlocked when actually I have never imagined to have them.</p>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>C/C++</h3>
<div class="progress">
<div class="progress-bar color-1" role="progressbar" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100" style="width:90%">
<span>90%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Python</h3>
<div class="progress">
<div class="progress-bar color-2" role="progressbar" aria-valuenow="85"
aria-valuemin="0" aria-valuemax="100" style="width:85%">
<span>85%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Microsoft Word, Power Point, Excel</h3>
<div class="progress">
<div class="progress-bar color-3" role="progressbar" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100" style="width:90%">
<span>90%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>HTML & CSS</h3>
<div class="progress">
<div class="progress-bar color-4" role="progressbar" aria-valuenow="80"
aria-valuemin="0" aria-valuemax="100" style="width:80%">
<span>80%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>SolidWorks</h3>
<div class="progress">
<div class="progress-bar color-5" role="progressbar" aria-valuenow="75"
aria-valuemin="0" aria-valuemax="100" style="width:75%">
<span>75%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Presentation</h3>
<div class="progress">
<div class="progress-bar color-6" role="progressbar" aria-valuenow="75"
aria-valuemin="0" aria-valuemax="100" style="width:75%">
<span>75%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>SQL</h3>
<div class="progress">
<div class="progress-bar color-7" role="progressbar" aria-valuenow="75"
aria-valuemin="0" aria-valuemax="100" style="width:75%">
<span>75%</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-work" data-section="work">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">My Work</span>
<h2 class="colorlib-heading animate-box">Recent Work</h2>
</div>
</div>
<!-- <div class="row row-bottom-padded-sm animate-box" data-animate-effect="fadeInLeft">
<div class="col-md-12">
<p class="work-menu"><span><a href="#" class="active">Embedded Programming</a></span> <span><a href="#">Artificial Intelligence</a></span> <span><a href="#">Internet of Things</a></span></p>
</div>
</div> -->
<div class="row">
<div class="col-md-6 animate-box">
<a href="https://github.com/osugiw/customized_micropython">
<div class="project" style="background-image: url(projects/micropython/Micropython.png);">
<div class="desc">
<div class="con">
<h3 class="project-title-preview">Customizing Internal of Micropython Firmware for ESP32</h3>
<span>Embedded Programming | Internet of Things</span>
</div>
</div>
</div>
</a>
<h4>Customizing Internal of Micropython Firmware for ESP32<br><br></h4>
</div>
<div class="col-md-6 animate-box">
<a href="projects/alzo.html">
<div class="project" style="background-image: url(projects/alzo/Web_Project_BG_Alzo.jpg);">
<div class="desc">
<div class="con">
<h3 class="project-title-preview">Outdoor Alzheimer's Patient Tracking System Based on Internet of Things</h3>
<span>Embedded Programming | Internet of Things</span>
<!-- <p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</a></span>
</p> -->
</div>
</div>
</div>
<h4 style="align-items: center;">Outdoor Alzheimer's Patient Tracking System Based on Internet of Things</h4>
</a>
</div>
<div class="col-md-6 animate-box">
<a href="projects/motorcycle_tracking.html">
<div class="project" style="background-image: url(projects/motorcycle_tracking/Hardware_Top.jpg);">
<div class="desc">
<div class="con">
<h3 class="project-title-preview">IoT GPS Tracking System for Motorcycle</h3>
<span>Embedded Programming | Internet of Things</span>
</div>
</div>
</div>
</a>
<h4>IoT GPS Tracking System for Motorcycle<br><br></h4>
</div>
<div class="col-md-6 animate-box">
<a href="projects/sign_language.html">
<div class="project" style="background-image: url(projects/sign_language/Highlight.jpg);">
<div class="desc">
<div class="con">
<h3 class="project-title-preview">Sign Language Detection using YOLOv5</h3>
<span>Artificial Intelligence | Embedded Programming</span>
</div>
</div>
</div>
</a>
<h4>Sign Language Detection using YOLOv5</h4>
</div>
<div class="col-md-6 animate-box">
<a href="projects/wireless_attendance.html">
<div class="project" style="background-image: url(projects/wireless_attendance/Overview.png);">
<div class="desc">
<div class="con">
<h3 class="project-title-preview">Wireless Employee Attendance</h3>
<span>Embedded Programming | Internet of Things</span>
</div>
</div>
</div>
</a>
<h4>Wireless Employee Attendance</h4>
</div>
<div class="col-md-6 animate-box">
<a href="projects/cofight.html">
<div class="project" style="background-image: url(projects/cofight/Cofight.png);">
<div class="desc">
<div class="con">
<h3 class="project-title-preview">CoFight - an COVID-19 Wristband IoT Device</h3>
<span>Embedded Programming | Internet of Things</span>
</div>
</div>
</div>
</a>
<h4>CoFight - an COVID-19 Wristband IoT Device</h4>
</div>
<div class="col-md-6 animate-box">
<a href="https://github.com/elektronikapetra/praktikum-emsys">
<div class="project" style="background-image: url(projects/fpga_pynqz2/Overview.jpg);">
<div class="desc">
<div class="con">
<h3 class="project-title-preview">FPGA with Pynq-Z2</h3>
<span>Embedded Programming</span>
</div>
</div>
</div>
</a>
<h4>FPGA with Pynq-Z2</h4>
</div>
<div class="col-md-6 animate-box">
<div class="project" style="background-image: url(projects/ur_camera/Overview.jpg);">
<div class="desc">
<div class="con">
<h3 class="project-title-preview">Collaborative Robot for Items Sorting using Camera</h3>
<span>Robotics | Computer Vision</span>
</div>
</div>
</div>
<h4>Collaborative Robot for Items Sorting using Camera</h4>
</div>
<div class="col-md-6 animate-box">
<div class="project" style="background-image: url(projects/ecys/Overview.jpg);">
<div class="desc">
<div class="con">
<h3 class="project-title-preview">Earthquake Evacuation System for Multi-Storey Building</h3>
<span>Programmable Logic Controller</span>
</div>
</div>
</div>
<h4>Earthquake Evacuation System for Multi-Storey Building</h4>
</div>
<div class="col-md-6 animate-box">
<div class="project" style="background-image: url(projects/ldr_robot/Overview.jpg);">
<div class="desc">
<div class="con">
<h3 class="project-title-preview">Light Dependent Robot</h3>
<span>Electronics</span>
</div>
</div>
</div>
<h4>Light Dependent Robot</h4>
</div>
</div>
<!-- <div class="row">
<div class="col-md-12 animate-box">
<p><a href="#" class="btn btn-primary btn-lg btn-load-more">Load more <i class="icon-reload"></i></a></p>
</div>
</div> -->
</div>
</section>
<!-- <section class="colorlib-blog" data-section="blog">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">Read</span>
<h2 class="colorlib-heading">Recent Blog</h2>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 animate-box" data-animate-effect="fadeInLeft">
<div class="blog-entry">
<a href="blog.html" class="blog-img"><img src="images/blog-1.jpg" class="img-responsive" alt="HTML5 Bootstrap Template by colorlib.com"></a>
<div class="desc">
<span><small>April 14, 2018 </small> | <small> Web Design </small> | <small> <i class="icon-bubble3"></i> 4</small></span>
<h3><a href="blog.html">Renovating National Gallery</a></h3>
<p>Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 animate-box" data-animate-effect="fadeInRight">
<div class="blog-entry">
<a href="blog.html" class="blog-img"><img src="images/blog-2.jpg" class="img-responsive" alt="HTML5 Bootstrap Template by colorlib.com"></a>
<div class="desc">
<span><small>April 14, 2018 </small> | <small> Web Design </small> | <small> <i class="icon-bubble3"></i> 4</small></span>
<h3><a href="blog.html">Wordpress for a Beginner</a></h3>
<p>Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 animate-box" data-animate-effect="fadeInLeft">
<div class="blog-entry">
<a href="blog.html" class="blog-img"><img src="images/blog-3.jpg" class="img-responsive" alt="HTML5 Bootstrap Template by colorlib.com"></a>
<div class="desc">
<span><small>April 14, 2018 </small> | <small> Inspiration </small> | <small> <i class="icon-bubble3"></i> 4</small></span>
<h3><a href="blog.html">Make website from scratch</a></h3>
<p>Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 animate-box">
<p><a href="#" class="btn btn-primary btn-lg btn-load-more">Load more <i class="icon-reload"></i></a></p>
</div>
</div>
</div>
</section> -->
<section class="colorlib-work" data-section="certification">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<h2 class="colorlib-heading animate-box">Professional Certification</h2>
</div>
</div>
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<div class="fancy-collapse-panel">
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#publication" href="#collapseCertification" aria-expanded="true" aria-controls="collapseCertification">Specialisation</a>
</h4>
</div>
<div id="collapseCertification" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<div class="row">
<div class="col-md-12">
<ul>
<li>
ACA Cloud Computing Certification, Valid: 2024-2026 (Credential:<a href="https://drive.google.com/file/d/1Kju89IH15iehfx7tp1FIoTnB6eCy8imq/view">IACA01240200111575L</a>)
</li>
<li>
Huawei Certified ICT Associate Artificial Intelligence, Valid: 2022-2025 (Credential:<a href="https://drive.google.com/file/d/1dgwKovjl1hWxMIfyAEpH717m3JqYwD4y/view">010102001808858531982656</a>)
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-education" data-section="publication_patent">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<h2 class="colorlib-heading animate-box">Publication & Patent</h2>
</div>
</div>
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<div class="fancy-collapse-panel">
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#publication" href="#collapsePublication" aria-expanded="true" aria-controls="collapsePublication">Publication</a>
</h4>
</div>
<div id="collapsePublication" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<div class="row">
<div class="col-md-12">
<ul>
<li>
Hand Symbol Classification for Human-Computer Interaction Using the Fifth Version of YOLO Object Detection <a href="https://journal.binus.ac.id/index.php/commit/article/view/8520">(PDF)</a>
</li>
<li>
ALZO: an outdoor Alzheimer's patient tracking system using internet of things <a href="http://telkomnika.uad.ac.id/index.php/TELKOMNIKA/article/view/25156">(PDF)</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingTwo">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#publication" href="#collapsePatent" aria-expanded="false" aria-controls="collapsePatent">Patent
</a>
</h4>
</div>
<div id="collapsePatent" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingTwo">
<div class="panel-body">
<div class="row">
<div class="col-md-12">
<ul>
<li>Alat Pemantau Aktivitas Pasien Demensia di Luar Rumah. <a href="https://pdki-indonesia.dgip.go.id/search?nomor=S00202210777&type=patent&keyword=ALAT+PEMANTAU+AKTIVITAS+PASIEN+DEMENSIA+DI+LUAR+RUMAH&id=238d438ac80a7d6564b3ca855e71b7067f98cceb8cca70130ca4c97205aec4fa&page=1">(DJIP Website)</a></li>
<li>Metode pada Perangkat Elektronik yang Digunakan untuk Memantau Aktivitas Orang Dengan Demensia di Luar Rumah. <a href="https://pdki-indonesia.dgip.go.id/search?nomor=S00202210777&type=patent&keyword=Metode+pada+Perangkat+Elektronik+yang+Digunakan+untuk+Memantau+Aktivitas+Orang+Dengan+Demensia+di+Luar+Rumah&id=8a4808dd9641d2f5228bb7e39931de3542322b90b7605ba32bcf355edd51c742&page=1">(DJIP Website)</a></li>
<li>Sistem Automasi Bangunan Berbasis Internet Of Things Dan Kecerdasan Buatan Pada Gedung Bertingkat Untuk Mengevakuasi Korban Gempa. <a href="https://pdki-indonesia.dgip.go.id/search?type=patent&keyword=sistem+automasi+pada+bangunan+bertingkat&id=2bf0208c3d8733d0390c2e63ce202b33598c757a3594deb00daaf5b4df29d6d8%3Fnomor%3DS00202004935&page=1">(DJIP Website)</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-contact" data-section="contact">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">Get in Touch</span>
<h2 class="colorlib-heading">Contact</h2>
</div>
</div>
<div class="row">
<div class="col-md-5">
<div class="colorlib-feature colorlib-feature-sm animate-box" data-animate-effect="fadeInLeft">
<div class="colorlib-icon">
<i class="icon-globe-outline"></i>
</div>
<div class="colorlib-text">
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
<div class="colorlib-feature colorlib-feature-sm animate-box" data-animate-effect="fadeInLeft">
<div class="colorlib-icon">
<i class="icon-linkedin2"></i>
</div>
<div class="colorlib-text">
<p><a href="https://www.linkedin.com/in/sugiarto-wibowo-osw/">Sugiarto Wibowo</a></p>
</div>
</div>
<div class="colorlib-feature colorlib-feature-sm animate-box" data-animate-effect="fadeInLeft">
<div class="colorlib-icon">
<i class="icon-instagram"></i>
</div>
<div class="colorlib-text">
<p><a href="https://www.instagram.com/osugi_w/">osugi_w</a></p>
</div>
</div>
</div>
<!-- <div class="col-md-7 col-md-push-1">
<div class="row">
<div class="col-md-10 col-md-offset-1 col-md-pull-1 animate-box" data-animate-effect="fadeInRight">
<form action="">
<div class="form-group">
<input type="text" class="form-control" placeholder="Name">
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="Email">
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="Subject">
</div>
<div class="form-group">
<textarea name="" id="message" cols="30" rows="7" class="form-control" placeholder="Message"></textarea>
</div>
<div class="form-group">
<input type="submit" class="btn btn-primary btn-send-message" value="Send Message">
</div>
</form>
</div>
</div>
</div> -->
</div>
</div>
</section>
</div><!-- end:colorlib-main -->
</div><!-- end:container-wrap -->
</div><!-- end:colorlib-page -->
<!-- jQuery -->
<script src="js/jquery.min.js"></script>
<!-- jQuery Easing -->
<script src="js/jquery.easing.1.3.js"></script>
<!-- Bootstrap -->
<script src="js/bootstrap.min.js"></script>
<!-- Waypoints -->
<script src="js/jquery.waypoints.min.js"></script>
<!-- Flexslider -->
<script src="js/jquery.flexslider-min.js"></script>
<!-- Owl carousel -->
<script src="js/owl.carousel.min.js"></script>
<!-- Counters -->
<script src="js/jquery.countTo.js"></script>
<!-- MAIN JS -->
<script src="js/main.js"></script>
</body>
</html>