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
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<!--[if IE]><meta http-equiv="x-ua-compatible" content="IE=9" /><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Winai Profile</title>
<meta name="description" content="เว็บไซต์แนะนำเกี่ยวกับนายวินัย บุตรศาสตร์">
<meta name="keywords" content="Nize portfolio template">
<meta name="author" content="Nize">
<!-- Favicons
================================================== -->
<link rel="icon" href="img/icon/icon.png">
<!-- Bootstrap -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="fonts/font-awesome/css/font-awesome.css">
<!-- Slider
================================================== -->
<link href="css/owl.carousel.css" rel="stylesheet" media="screen">
<link href="css/owl.theme.css" rel="stylesheet" media="screen">
<!-- Stylesheet
================================================== -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/responsive.css">
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic'
rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,700,300,600,800,400'
rel='stylesheet' type='text/css'>
<script type="text/javascript" src="js/modernizr.custom.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Disable copy content
================================================== -->
<script type="text/JavaScript">
window.addEventListener('selectstart', function(e){ e.preventDefault(); });
</script>
</head>
<body>
<!-- Navigation
==========================================-->
<nav id="tf-menu" class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand nizeProfile" href="profile.html">NIZE PROFILE</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="#tf-home" class="page-scroll nizeHome">Home</a>
</li>
<li>
<a href="#tf-about" class="page-scroll nizeAbout">About</a>
</li>
<li>
<a href="#tf-team" class="page-scroll nizeTeam">Team</a>
</li>
<li>
<a href="#tf-Skills" class="page-scroll nizeSkills">Skills</a>
</li>
<li>
<a href="#tf-Experience" class="page-scroll nizeExperience">Experience</a>
</li>
<li>
<a href="#tf-Inspiration" class="page-scroll nizeInspiration">Inspiration</a>
</li>
<li>
<a href="#tf-contact" class="page-scroll nizeContact">Contact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Home Page
==========================================-->
<div id="tf-home" class="text-center">
<div class="overlay">
<div class="content">
<h1 style="font-size:38px;">Welcome on
<strong>
<span class="nizeWelcome" style="color: #FCAC45;">WINAI BUTTASART</span>
</strong>PROFILE
</h1>
<p class="lead" style="font-size:20px;">Studying Bachelor's degree, Computer Science 2015-2018 at Ubon Ratchathani University
</p>
<a href="#tf-about" class="fa fa-angle-down page-scroll" style="visibility: hidden;" id="welcome"></a>
</div>
</div>
</div>
<!-- About Us Page
==========================================-->
<div id="tf-about">
<div class="container">
<div class="row">
<div class="col-md-6">
<img src="img/nize.jpg" class="img-responsive">
<!-- <img src="img/02.png" class="img-responsive"> -->
</div>
<div class="col-md-6">
<div class="about-text">
<div class="section-title">
<h4 class="aboutNize">About Nize</h4>
<h2>Some words
<strong>about Winai</strong>
</h2>
<hr>
<div class="clearfix"></div>
</div>
<p class="intro">Studying Bachelor's degree, Computer Science
<br> Ubon Ratchathani University
<br> January 25th , 1997 Born in Roi-Et Thailand
</p>
<ul class="about-list">
<li>
<span class="fa fa-dot-circle-o"></span>
<strong>Programming</strong>
<br>
<em>
<strong style="color:#777777;margin-left: 30px;">-</strong> Started First Programming Experience at 17 years old</em>
</li>
<li>
<span class="fa fa-dot-circle-o"></span>
<strong>Experiened Programming Language</strong>
<br>
<em>
<strong style="color:#777777;margin-left: 30px;">- Intermediate</strong> Java, JavaScript, HTML, CSS</em>
<br>
<em>
<strong style="color:#777777;margin-left: 30px;">- Beginner</strong> Python, Kotlin, C, C++, PHP</em>
<br>
<em>
<strong style="color:#777777;margin-left: 30px;">- Forgotten</strong> Prolog</em>
</li>
<li>
<span class="fa fa-dot-circle-o"></span>
<strong>Experiened Web Stak & Tool</strong>
<br>
<em>
<strong style="color:#777777;margin-left: 30px;">- Web & Desktop Application</strong> Node.js, Bootstrap4, jQuery, Electron</em>
<br>
<em>
<strong style="color:#777777;margin-left: 30px;">- Hosting</strong> Heroku, Firebase hosting, Now</em>
<br>
<em>
<strong style="color:#777777;margin-left: 30px;">- JavaScript Framework</strong> React, Angular3, Vue.js, Jade</em>
<br>
<em>
<strong style="color:#777777;margin-left: 30px;">- Database</strong> OracleSQL, MySQL, MongoDB, Firebase</em>
<br>
<em>
<strong style="color:#777777;margin-left: 30px;">- Version control</strong> Github, Gitlab</em>
</li>
<li>
<span class="fa fa-dot-circle-o"></span>
<strong>Mobile Application</strong>
<br>
<em>
<strong style="color:#777777;margin-left: 30px;">- Intermediate</strong> Android application</em>
</li>
<li>
<span class="fa fa-dot-circle-o"></span>
<strong>Extra Skill Set</strong>
<br>
<em>
<strong style="color:#777777;margin-left: 30px;">- </strong> Image Processing, Facebook & Line chatbot, Problem Solver</em>
<br>
<em>
<strong style="color:#777777;margin-left: 30px;">- </strong> Photoshop, Website & Mobile Application Design</em>
<br>
<em>
<strong style="color:#777777;margin-left: 30px;">- </strong> Basic linux command</em>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Team Page
==========================================-->
<div id="tf-team" class="text-center">
<div class="overlay">
<div class="container">
<div class="section-title center">
<h2>The
<strong>great contact</strong>
</h2>
<div class="line">
<hr>
</div>
</div>
<div id="team" class="owl-carousel owl-theme row">
<div class="item">
<div class="thumbnail">
<img src="img/team/bas.jpg" alt="..." class="img-circle team-img">
<div class="caption">
<h3>Bas Sivakorn</h3>
<p>Arduino - Consultants</p>
<p>Best friend consultation about Arduino and microcontroller device. And he is co-founders
many the biggest of our project.
</p>
</div>
</div>
</div>
<div class="item">
<div class="thumbnail">
<img src="img/team/jun.jpg" alt="..." class="img-circle team-img">
<div class="caption">
<h3>Jun Chantrarat</h3>
<p>Design - Consultants</p>
<p>Friends and co-founders of various projects related to the design. And she always introduces
new technologies in design.
</p>
</div>
</div>
</div>
<div class="item">
<div class="thumbnail">
<img src="img/team/care.jpg" alt="..." class="img-circle team-img">
<div class="caption">
<h3>Care Tanuchporn</h3>
<p>UI / UX - Consultants</p>
<p>Best friend to help test and design ui / ux development. And she was the first to cheer and
support many of my projects.
</p>
</div>
</div>
</div>
<div class="item">
<div class="thumbnail">
<img src="img/team/jame.jpg" alt="..." class="img-circle team-img">
<div class="caption">
<h3>Jame Kritsana</h3>
<p>Programm - Consultants</p>
<p>Brother whos suggestion and programming consultancy throughout.</p>
</div>
</div>
</div>
<div class="item">
<div class="thumbnail">
<img src="img/team/kriengsak.jpg" alt="..." class="img-circle team-img">
<div class="caption">
<h3>Dr. Kriengsak</h3>
<p>Network Advisor</p>
<p>Teachers and advisor about the network system.</p>
</div>
</div>
</div>
<div class="item">
<div class="thumbnail">
<img src="img/team/warawoot.jpg" alt="..." class="img-circle team-img">
<div class="caption">
<h3>Dr. Warawoot</h3>
<p>Hardware Advisor</p>
<p>Teachers and advisor experts hardware devices.</p>
</div>
</div>
</div>
<div class="item">
<div class="thumbnail">
<img src="img/team/wichit.jpg" alt="..." class="img-circle team-img">
<div class="caption">
<h3>Dr. Wichit</h3>
<p>Program Advisor</p>
<p>Teachers and advisor experts Linux operating system and newest programming consultancy throughout.</p>
</div>
</div>
</div>
<div class="item">
<div class="thumbnail">
<img src="img/team/chayaporn.jpg" alt="..." class="img-circle team-img">
<div class="caption">
<h3>Dr. Chayaporn</h3>
<p>Database Advisor</p>
<p>Teacher and advisor experts of database design.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Skills Section
==========================================-->
<div id="tf-Skills" class="text-center">
<div class="container">
<div class="section-title center">
<h2>Take a look at
<strong>my Skills</strong>
</h2>
<div class="line">
<hr>
</div>
<div class="clearfix"></div>
<em>Results-oriented : Android,Desktop Application , Web Developer and most interests in Android developer. I'm
born to be programmer with 3+ years,
<br>and now I designed and developed over 10 applications from use cases and functional requirements. I'm
Investigated new technologies an self development at all times.
</em>
</div>
<div class="space"></div>
<div class="row">
<div class="col-md-3 col-sm-6 Skills">
<i class="fa fa-mobile"></i>
<h4>
<strong>Mobile Apps</strong>
</h4>
<p>More than five apps that I have been developed. And are all mobile(Android)-based apps. And use Java
to develop.</p>
</div>
<div class="col-md-3 col-sm-6 Skills">
<i class="fa fa-desktop"></i>
<h4>
<strong>Web design</strong>
</h4>
<p>The site I designed was developed and built from HTML, CSS, JavaScript and was decorated with Bootstrap
4. I like to develop web with Node.js + Express module.</p>
</div>
<div class="col-md-3 col-sm-6 Skills">
<i class="fa fa-camera"></i>
<h4>
<strong>Photography</strong>
</h4>
<p>I learned how to take pictures and make beautiful pictures. And I like to make a beautiful video.</p>
</div>
<div class="col-md-3 col-sm-6 Skills">
<i class="fa fa-bullhorn"></i>
<h4>
<strong>Teaching</strong>
</h4>
<p>I like sharing my knowledge with my friends. Because I got the same knowledge from my friends. And I
have a dream to teach online programming.</p>
</div>
</div>
</div>
</div>
<!-- clients - mySkills Section
==========================================-->
<div id="tf-clients" class="text-center">
<div class="overlay">
<div class="container">
<div class="section-title center">
<h2>Some of
<strong>my Skills</strong>
</h2>
<div class="line">
<hr>
</div>
</div>
<div id="clients" class="owl-carousel owl-theme">
<div class="item">
<img src="img/skills/github_icon.png" style="width:130px;">
</div>
<div class="item">
<img src="img/skills/nodejs_icon.png" style="width:130px;">
</div>
<div class="item">
<img src="img/skills/react_icon.png" style="width:130px;">
</div>
<div class="item">
<img src="img/skills/java_icon.png" style="width:130px;">
</div>
<div class="item">
<img src="img/skills/python_icon.png" style="width:130px;">
</div>
<div class="item">
<img src="img/skills/html_icon.png" style="width:130px;">
</div>
<div class="item">
<img src="img/skills/angular_icon.png" style="width:130px;">
</div>
<div class="item">
<img src="img/skills/css_icon.png" style="width:130px;">
</div>
<div class="item">
<img src="img/skills/vue_icon.png" style="width:130px;">
</div>
<div class="item">
<img src="img/skills/firebase_icon.png" style="width:130px;">
</div>
<div class="item">
<img src="img/skills/mongodb_icon.png" style="width:130px;">
</div>
<div class="item">
<img src="img/skills/android_studio_icon.png" style="width:130px;">
</div>
<div class="item">
<img src="img/skills/jquery_icon.png" style="width:130px;">
</div>
<div class="item">
<img src="img/skills/cpp_icon.png" style="width:130px;">
</div>
<div class="item">
<img src="img/skills/bootstrap_icon.png" style="width:130px;">
</div>
<div class="item">
<img src="img/skills/heroku_icon.png" style="width:130px;">
</div>
<div class="item">
<img src="img/skills/photoshop_icon.png" style="width:130px;">
</div>
<div class="item">
<img src="img/skills/mysql_icon.png" style="width:130px;">
</div>
</div>
</div>
</div>
</div>
<!-- Experience Section
==========================================-->
<div id="tf-Experience">
<div class="container">
<!-- Container -->
<div class="section-title text-center center">
<h2>Take a look at
<strong>my Experience</strong>
</h2>
<div class="line">
<hr>
</div>
<div class="clearfix"></div>
<em>History of my work and experience eg. ACM national programming contest, 1 in 20 teams of the University in
Startup Thailand League 2017, Thai Embedded Systems Association at Thai-Nichi Institute of Technology,
Arduino Training at Khonkaen University, Research to Market (R2M) , Chatbot Hackathon 2017</em>
</div>
<div class="space"></div>
<div class="categories">
<ul class="cat">
<li class="pull-left">
<h4>Filter by :</h4>
</li>
<li class="pull-right">
<ol class="type">
<li>
<a href="#" data-filter="*" class="active">All </a>
</li>
<li>
<a href="#" data-filter=".startup">Startup Thailand League 2017</a>
</li>
<li>
<a href="#" data-filter=".ThaiEmbedded">Thai Embedded Systems Association</a>
</li>
<li>
<a href="#" data-filter=".arduino">Arduino Training</a>
</li>
<li>
<a href="#" data-filter=".hackathon">Chatbot Hackathon 2017</a>
</li>
<li>
<a href="#" data-filter=".r2m">Research to Market</a>
</li>
</ol>
</li>
</ul>
<div class="clearfix"></div>
</div>
<div id="lightbox" class="row">
<!-- thainichi -->
<div class="col-sm-6 col-md-3 col-lg-3 ThaiEmbedded ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Thai Embedded Systems Association</h4>
<small>Join team and competition Thai Embedded Systems Association at Thai-Nichi Institute of Technology.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/thainichi01.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<div class="col-sm-6 col-md-3 col-lg-3 ThaiEmbedded ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Thai Embedded Systems Association</h4>
<small>Join team and competition Thai Embedded Systems Association at Thai-Nichi Institute of Technology.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/thainichi02.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<div class="col-sm-6 col-md-3 col-lg-3 ThaiEmbedded ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Thai Embedded Systems Association</h4>
<small>Join team and competition Thai Embedded Systems Association at Thai-Nichi Institute of Technology.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/thainichi03.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<div class="col-sm-6 col-md-3 col-lg-3 ThaiEmbedded ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Thai Embedded Systems Association</h4>
<small>Join team and competition Thai Embedded Systems Association at Thai-Nichi Institute of Technology.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/thainichi04.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<!-- android -->
<div class="col-sm-6 col-md-3 col-lg-3 android ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">lectures on Android and Firebase</h4>
<small>Join the lectures on Android and Firebase</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/android01.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<!-- arduino -->
<div class="col-sm-6 col-md-3 col-lg-3 arduino ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Training and Arduino competition</h4>
<small>Join the training and Arduino competition.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/arduino01.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<div class="col-sm-6 col-md-3 col-lg-3 arduino ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Training and Arduino competition</h4>
<small>Join the training and Arduino competition.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/arduino02.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<div class="col-sm-6 col-md-3 col-lg-3 arduino ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Training and Arduino competition</h4>
<small>Join the training and Arduino competition.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/arduino03.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<!-- comtravel -->
<div class="col-sm-6 col-md-3 col-lg-3 comtravel ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Computer Camp</h4>
<small>Java tutor in the camp#4 and head of the academic departmentcamp#5</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/comtravel01.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<!-- creditwash -->
<div class="col-sm-6 col-md-3 col-lg-3 creditwash ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Credit Wash</h4>
<small>One of the successful work of the work. Start up and develop other projects with additional
teachers.
</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/creditwash01.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<div class="col-sm-6 col-md-3 col-lg-3 creditwash ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Credit Wash</h4>
<small>One of the successful work of the work. Start up and develop other projects with additional
teachers.
</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/creditwash02.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<!-- hackathon -->
<div class="col-sm-6 col-md-3 col-lg-3 hackathon ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Chatbot Hackathon 2017</h4>
<small>Join the competition Chatbot Hackathon 2017 and caught 1 in 20 teams from across the country.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/hackathon01.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<div class="col-sm-6 col-md-3 col-lg-3 hackathon ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Chatbot Hackathon 2017</h4>
<small>Join the competition Chatbot Hackathon 2017 and caught 1 in 20 teams from across the country.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/hackathon02.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<div class="col-sm-6 col-md-3 col-lg-3 hackathon ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Chatbot Hackathon 2017</h4>
<small>Join the competition Chatbot Hackathon 2017 and caught 1 in 20 teams from across the country.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/hackathon03.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<!-- r2m -->
<div class="col-sm-6 col-md-3 col-lg-3 r2m ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color"> Research to Market (R2M)</h4>
<small>Participating in the Innovation Contest and bringing the University's research into commercial
trades and opportunities to enter the region.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/r2m01.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<div class="col-sm-6 col-md-3 col-lg-3 r2m ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color"> Research to Market (R2M)</h4>
<small>Participating in the Innovation Contest and bringing the University's research into commercial
trades and opportunities to enter the region.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/r2m02.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<div class="col-sm-6 col-md-3 col-lg-3 r2m ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color"> Research to Market (R2M)</h4>
<small>Participating in the Innovation Contest and bringing the University's research into commercial
trades and opportunities to enter the region.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/r2m03.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<!-- startup -->
<div class="col-sm-6 col-md-3 col-lg-3 startup ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Startup Thailand League 2017</h4>
<small>Have a chance to join the competition and win. From the washing machine works through the
card into the dorm and controlled through the chat bot Facebook messenger.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/startup01.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<div class="col-sm-6 col-md-3 col-lg-3 startup ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Startup Thailand League 2017</h4>
<small>Have a chance to join the competition and win. From the washing machine works through the
card into the dorm and controlled through the chat bot Facebook messenger.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/startup02.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<div class="col-sm-6 col-md-3 col-lg-3 startup ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Startup Thailand League 2017</h4>
<small>Have a chance to join the competition and win. From the washing machine works through the
card into the dorm and controlled through the chat bot Facebook messenger.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/startup03.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<div class="col-sm-6 col-md-3 col-lg-3 startup ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Startup Thailand League 2017</h4>
<small>Have a chance to join the competition and win. From the washing machine works through the
card into the dorm and controlled through the chat bot Facebook messenger.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/startup04.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<!-- teach -->
<div class="col-sm-6 col-md-3 col-lg-3 teach ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Teaching Object Oriented Programming</h4>
<small>Have the opportunity to transfer knowledge of the Object Oriented Programming course.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/teach01.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<div class="col-sm-6 col-md-3 col-lg-3 teach ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Teaching Object Oriented Programming</h4>
<small>Have the opportunity to transfer knowledge of the Object Oriented Programming course.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/teach02.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<!-- train -->
<div class="col-sm-6 col-md-3 col-lg-3 train ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Dev. Metting</h4>
<small>Participated in Ubon Ratchathani Development Group.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/train01.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<div class="col-sm-6 col-md-3 col-lg-3 train ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Dev. Metting</h4>
<small>Participated in Ubon Ratchathani Development Group.</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/train02.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
<!-- true -->
<div class="col-sm-6 col-md-3 col-lg-3 true ">
<div class="portfolio-item">
<div class="hover-bg">
<div class="hover-text">
<h4 class="color">Student Visits</h4>
<small>Student visits at True Corporation</small>
<div class="clearfix"></div>
</div>
<img src="img/experience/true01.jpg" class="img-responsive" alt="...">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Inspiration Section
==========================================-->
<div id="tf-Inspiration" class="text-center">
<div class="overlay">
<div class="container">
<div class="section-title center">
<h2>
<strong>Word of</strong> inspiration</h2>
<div class="line">
<hr>
</div>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div id="testimonial" class="owl-carousel owl-theme">
<div class="item">
<h5>"The secret of success in life
<br>is to be ready for your opportunity when it comes."
<p>ความลับของความสำเร็จคือเตรียมตัวให้พร้อมอยู่เสมอสำหรับโอกาสที่มาถึง</p>
<h6>Benjamin Disraeli</h6>
</h5>
</div>
<div class="item">
<h5> “If you can't explain it simply, you don't understand it well enough.”
<p>ถ้าคุณไม่สามารถอธิบายสิ่งใดให้ผู้อื่นเข้าใจได้โดยง่าย นั่นหมายความว่าตัวคุณเองยังไม่เข้าใจมันดีพอ</p>
<h6>Albert Einstein</h6>
</h5>
</div>
<div class="item">
<h5> “If you can’t fly then run, if you can’t run then walk, if you can’t walk then crawl,
<br> but whatever you do you have to keep moving forward.”
<p>ถ้าคุณบินไม่ได้ก็วิ่ง วิ่งไม่ได้ก็เดิน เดินไม่ได้ก็คลาน…ทำอย่างไรก็ได้ให้เคลื่อนไปข้างหน้า</p>
<h6>Martin Luther King Jr.</h6>
</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Contact Section
==========================================-->
<div id="tf-contact" class="text-center">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="section-title center">
<h2>Feel free to
<strong>contact me</strong>
</h2>
<div class="line">
<hr>
</div>
<div class="clearfix"></div>
<em>Address 205/4 Tambon Kokkokmuang, Phonthong District, Roi-Et Thailand 45110
<br> Phone : (+66) 85-217-0037, Email : winai.bu.58@ubu.ac.th</em>
</div>
<form>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
</div>
</div>
</div>
<div class="form-group">
<label for="exampleInputEmail1">Message</label>
<textarea class="form-control" rows="3"></textarea>
</div>
<button type="submit" class="btn tf-btn btn-default">Submit</button>
</form>
</div>
</div>
</div>
</div>
<nav id="footer">
<div class="container">
<div class="pull-left fnav">
<p>ALL RIGHTS RESERVED. COPYRIGHT © 2018 by
<a href="https://web.facebook.com/profile.php?id=100007392243968" target="_blank">Winai Buttasart</a>
. Designed by
<a href="https://golisdesign.com" target="_blank">Hamze Qasim</a>
</p>
</div>
<div class="pull-right fnav">
<ul class="footer-social">
<li>
<a href="https://web.facebook.com/profile.php?id=100007392243968" target="_blank">
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a href="https://th.linkedin.com/in/winai-buttasart-a1778564" target="_blank">
<i class="fa fa-linkedin"></i>
</a>
</li>
<li>
<a href="https://github.com/winaibuttasart" target="_blank">
<i class="fa fa-github"></i>
</a>
</li>
<li>
<a href="https://medium.com/@winai.bu.58" target="_blank">
<i class="fa fa-medium"></i>
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.1.11.1.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/SmoothScroll.js"></script>
<script type="text/javascript" src="js/jquery.isotope.js"></script>
<script src="js/owl.carousel.js"></script>
<!-- Javascripts
================================================== -->
<script type="text/javascript" src="js/main.js"></script>
<script>
$(document).ready(function () {
// Nagivator============================================
$('.nizeProfile').mouseover(function () {
$(this).css({
fontSize: 24,
color: "#FCAC45"
});
});
$('.nizeProfile').mouseleave(function () {
$(this).css({
fontSize: 22,
color: "#FFFFFF"
});
});
$('.nizeHome').mouseover(function () {
$(this).css({
fontSize: 13
});
});
$('.nizeHome').mouseleave(function () {
$(this).css({
fontSize: 12
});
});
$('.nizeAbout').mouseover(function () {
$(this).css({
fontSize: 13
});
});
$('.nizeAbout').mouseleave(function () {
$(this).css({
fontSize: 12
});
});
$('.nizeTeam').mouseover(function () {
$(this).css({
fontSize: 13
});
});
$('.nizeTeam').mouseleave(function () {
$(this).css({
fontSize: 12
});
});
$('.nizeSkills').mouseover(function () {
$(this).css({
fontSize: 13
});
});
$('.nizeSkills').mouseleave(function () {
$(this).css({
fontSize: 12
});
});
$('.nizeExperience').mouseover(function () {
$(this).css({
fontSize: 13
});
});
$('.nizeExperience').mouseleave(function () {
$(this).css({
fontSize: 12
});
});
$('.nizeInspiration').mouseover(function () {
$(this).css({
fontSize: 13
});
});
$('.nizeInspiration').mouseleave(function () {
$(this).css({
fontSize: 12
});
});
$('.nizeContact').mouseover(function () {
$(this).css({
fontSize: 13
});
});
$('.nizeContact').mouseleave(function () {
$(this).css({
fontSize: 12
});
});
// Nagivator============================================ End
//Home==================================================
$('.nizeWelcome').mouseover(function () {
$(this).css({
color: "#ECA241"
})
});
$('.nizeWelcome').mouseleave(function () {
$(this).css({
color: "#FCAC45"
})
});
showClickDown();
function showClickDown() {
setTimeout(function () {
$('#welcome').css({
visibility: 'visible'
})
}, 5000);
}
$(window).scroll(function () {
var scroll = $(window).scrollTop();
if (scroll < 100) {
$('#welcome').css({
visibility: 'hidden'
});
showClickDown();
} else {
$('#welcome').css({
visibility: 'hidden'
});
}
});
//Home==================================================End
//About=================================================
$('.aboutNize').mouseover(function () {
$(this).css({
color: "#FCAC45"
});
});
$('.aboutNize').mouseleave(function () {
$(this).css({
color: "#777777"
});
});
//About=================================================End
});
</script>
</body>
</html>