-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex2018.html
999 lines (717 loc) · 50.2 KB
/
index2018.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
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
<!DOCTYPE html>
<html lang="lt">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<link href="style2.css" rel="stylesheet">
<title>KAYAK UI ACADEMY</title>
</head>
<body>
<div class="header">
<div class="page">
<span class="logo"></span> <span class="academy">UI ACADEMY, Kaunas</span> <span class=
"menu"><a class="item" href="mailto:[email protected]">Susisiekti</a></span>
</div>
</div>
<div class="page">
<div class="content">
<div class="post">
<div class="post-text">
<div>
<h1><a class="c2c" href=
"https://goo.gl/forms/uLQwrEpLp1txWjhx1"
target="_blank">Registruokis</a> į KAYAK UI ACADEMY!</h1>
<div class="sub-line">
Taupyk laiką – gilink tik tas žinias, kurių tau trūksta labiausiai!
</div>
</div>
</div>
</div>
<div class="post">
<div class="post-text">
<h2>Skelbimai apie paskaitas ir kita naudinga informacija</h2>
<p><strong>KAYAK UI ACADEMY</strong> Facebook grupė <a href="https://www.facebook.com/groups/kayakuiacademy" class="c2c" title="KAYAK UI ACADEMY" target="_blank">https://facebook.com/groups/kayakuiacademy</a><br></p>
<p><strong>KAYAK UI ACADEMY</strong> YOUTUBE video paskaitos <a href="https://www.youtube.com/channel/UCY5RaYy-FEiqvv2OLzGcO9w" class="c2c" title="KAYAK UI ACADEMY" target="_blank">https://www.youtube.com/channel/UCY5RaYy-FEiqvv2OLzGcO9w</a><br></p>
<p><strong>REGISTRACIJA Į PASKAITAS</strong> <a href="https://goo.gl/forms/uLQwrEpLp1txWjhx1" class="c2c" title="KAYAK UI ACADEMY" target="_blank">https://goo.gl/forms/uLQwrEpLp1txWjhx1</a><br></p>
</div>
</div>
<div class="post">
<div class="post-text">
<h2>Kas tai yra?</h2>
<p>KAYAK UI ACADEMY – tai inovatyvių, Agile metodika paremtų nemokamų paskaitų
ciklas, kurį sudaro BASIC, ADVANCED dalys. Paskaitos yra tarpusavyje
nesusijusios – pvz. jei tau trūksta tik praktinių įgūdžių, gali užsiregistruoti
tik į vieną ar kelis praktinius užsiėmimas ir pan.</p>
<p>BASIC – reikalingas minimalus pasiruošimas, suteikiami UI pagrindai.<br>
ADVANCED – workshop'ai, kurių metu sprendžiamos aktualiausios UI
problemos.<br></p>
</div>
</div>
<div class="post">
<div class="post-text">
<div>
<h2>Dažniausiai užduodami klausimai</h2>
<p><strong>Kaip vyks paskaitos?</strong>
<br/>Paskaitos vyks kiekvieną trečiadienį nuo 18:00. Kiekvienoje paskaitoje dalyvaus 20 žmonių grupė.
<br/>Dalis BASIC paskaitų yra įkeltos į YOUTUBE kanalą <a href="https://www.youtube.com/channel/UCY5RaYy-FEiqvv2OLzGcO9w" class="c2c" title="KAYAK UI ACADEMY" target="_blank">(NUORODA)</a>
<br/>Pakvietimai į kitas
paskaitas bus siunčiami likus dviem savaitėms iki kiekvieno užsiėmimo.</p>
<p><strong>Kur ir kada vyks paskaitos?</strong><br>
Paskaitos vyks Kaune, Brastos g. 15.</p>
<p><strong>Kokia kalba bus paskaitos?</strong><br>
Lietuvių kalba.</p>
<p><strong>Ar paskaitos bus vedamos nuotoliniu būdu?</strong><br>
Artimiausiu metu nuotolinės paskaitos nevyks. Dalis BASIC paskaitų yra įkeltos į YOUTUBE kanalą <a href="https://www.youtube.com/channel/UCY5RaYy-FEiqvv2OLzGcO9w" class="c2c" title="KAYAK UI ACADEMY" target="_blank">(NUORODA)</a></p>
<p><strong>Ar paskaitos mokamos?</strong><br>
Ne. Labai laukiame visų motyvuotų ir besidominčių UI.</p>
<p><strong>Ar paskaitos tarpusavyje susijusios?</strong><br>
Ne. Galima registruotis į vieną/kelias/visas paskaitas, pasirinktinai.</p>
<p><strong>Koks konkretus paskaitų grafikas?</strong><br>
Paskaita vyks surinkus bent 10 žmonių grupę, apie konkrečios paskaitos
laiką informuosime atskiru laišku.</p>
<p><strong>Kuo šis paskaitų ciklas išskirtinis?</strong><br>
Nes šios srities profesionalai pasidalins tik koncentruota ir svarbiausia
informacija, reikalinga efektyviai dirbant su UI.</p>
<p>Trūksta informacijos? Rašyk <a class="c2c" href=
"malto:[email protected]">[email protected]</a>!</p>
</div>
</div>
</div>
<div class="post">
<div class="post-text">
<div>
<h2>Apie dėstytojus</h2>
<p>Paskaitas ves aukščiausio lygio programuotojai, kuriantys sprendimus
milžiniškam meta paieškos varikliui KAYAK, apdorojančiam daugiau nei 1,5
mlrd. paieškų per metus. KAYAK JAV prezidentas Barackas Obama 2013 m.
rudenį apibūdino kaip paprastumo naudoti sinonimą!</p>
<div class="lecturers">
<div class="lecturer">
<div class="photo"><img src="photos/kapusinskas.jpg">
</div>
<div class="text">
<h3>Modestas Kapušinskas</h3>
<div class="job-title">
Director of Engineering, KAYAK
</div>
<p class="qoute">„Dar būdamas mokykloje svajojau sukurti kažką
nepaprasto su WEB technologijomis ir man pavyko! Šuo metu
vadovauju 30+ aukščiausio lygio programuotojų komandai, tad
paskaitų metu pasistengsiu pasidalinti sukauptomis žiniomis
dirbant su KAYAK, swoodoo ir k.t. large scale projektais.”</p>
<p><strong>2014 – šiuo metu:</strong> Director of Engineering,
<a class="company" href=
"https://www.linkedin.com/company/32889?trk=prof-exp-company-name"
target="_blank">KAYAK</a><br>
<strong>2010 – 2014:</strong> Development Team Lead, <a class=
"company" href=
"https://www.linkedin.com/company/32889?trk=prof-exp-company-name"
target="_blank">KAYAK</a><br>
<strong>2008 – 2010:</strong> Team Lead, <a class="company"
href=
"https://www.linkedin.com/company/722757?trk=prof-exp-company-name"
target="_blank">swoodoo</a><br>
<strong>2007 – 2008:</strong> Software Engineer, <a class=
"company" href=
"https://www.linkedin.com/company/722757?trk=prof-exp-company-name"
target="_blank">swoodoo</a></p>
<p><a class="c2c" href=
"https://lt.linkedin.com/in/modestas-kapusinskas-80600084"
target="_blank">LinkedIn</a>
</p>
</div>
<div style="clear:both">
</div>
</div>
<div class="lecturer">
<div class="photo"><img src="photos/djankauskas.jpg">
</div>
<div class="text">
<h3>Darius Jankauskas</h3>
<div class="job-title">
Team Lead, Development, KAYAK
</div>
<p class="qoute"></p>
<p><strong>2010-05 – dabar:</strong> Team Lead, Development,
<a class="company" href="https://www.linkedin.com/company/32889?trk=prof-exp-company-name" target="_blank">KAYAK</a><br>
<strong>2007-01 – 2010-07:</strong> Software Developer, <a class="company" href="https://www.linkedin.com/company/722757/" target="_blank">swoodoo AG</a><br>
<strong>2006-07 – 2007-01:</strong> Software Developer, <a class="company" href="https://www.linkedin.com/company/69589/" target="_blank">NTSG, UAB</a></p>
<p><a class="c2c" href="https://www.linkedin.com/in/darius-jankauskas-1791043/" target="_blank">LinkedIn</a>
</p>
</div>
<div style="clear:both">
</div>
</div>
<div class="lecturer">
<div class="photo"><img src="photos/kiupelis.jpeg">
</div>
<div class="text">
<h3>Ramūnas Kiupelis</h3>
<div class="job-title">
Senior Software Engineer, KAYAK
</div>
<p class="qoute">„Turiu 10+ metų patirtį, vystant large scale
web projektus. Per tą laiką sukaupiau tiek žinių, kad jaučiu
didelį norą pamokyti, kaip ne tik pamatyti problemas, bet ir
ištaisyti jos pasekmes.”</p>
<p><strong>2012 – šiuo metu:</strong> Senior Software Engineer,
<a class="company" href=
"https://www.linkedin.com/company/32889?trk=prof-exp-company-name"
target="_blank">KAYAK</a><br>
<strong>2011 – 2012:</strong> PHP Developer, Individualūs
sprendimai<br>
<strong>2010 – 2011:</strong> PHP Developer, <a class="company"
href=
"https://www.linkedin.com/company/1243124?trk=prof-exp-company-name"
target="_blank">Centurion IT</a><br>
<strong>2009 – 2010:</strong> PHP Developer, <a class="company"
href=
"https://www.linkedin.com/company/3959651?trk=prof-exp-company-name"
target="_blank">Jauna Reklama</a><br>
<strong>2006 – 2009:</strong> PHP Developer, <a class="company"
href=
"https://www.linkedin.com/vsearch/p?company=Mamaika+Creative+Team&trk=prof-exp-company-name"
target="_blank">Mamaika Creative Team</a></p>
<p><a class="c2c" href=
"https://lt.linkedin.com/in/ramunas-kiupelis-659821109" target=
"_blank">LinkedIn</a>
</p>
</div>
<div style="clear:both">
</div>
</div>
<div class="lecturer">
<div class="photo"><img src="photos/rpovilaityte.jpg">
</div>
<div class="text">
<h3>Rūta Povilaitytė <span class="new">new</span></h3>
<div class="job-title">
Software Engineer, KAYAK
</div>
<p class="qoute">„Esu programuotoja 2+ metų, todėl dar gerai pamenu, koks jausmas yra pasinerti į programavimą ir kas yra svarbiausia pradedančiajam programuotojui. Paskaitų metu dalinsiuosi savo žiniomis ir patirtimi, užsiėmimai bus orientuoti į praktiką ir dažniausiai naudojamas technologijas. Manau, kad programavimas - tai amatas, kurio išmokti gali kiekvienas, o svarbiausia - kelti klausimus ir atkakliai mokytis savarankiškai.”</p>
<p><strong>2016-06 – dabar:</strong> Software Engineer,
<a class="company" href="https://www.linkedin.com/company/32889?trk=prof-exp-company-name" target="_blank">KAYAK</a><br>
<strong>2016-01 – 2016-06:</strong> Junior Java Developer, <a class="company" href="https://www.linkedin.com/company/16282/" target="_blank">Nortal, UAB</a><br>
<strong>2014-07 – 2016-01:</strong> QA Specialist, <a class="company" href="https://www.linkedin.com/company/16282/" target="_blank">Nortal, UAB</a></p>
<p><a class="c2c" href="https://www.linkedin.com/in/r%C5%ABta-povilaityt%C4%97-a0547a48/" target="_blank">LinkedIn</a>
</p>
</div>
<div style="clear:both">
</div>
</div>
<div class="lecturer">
<div class="photo"><img src="photos/valdas.jpg">
</div>
<div class="text">
<h3>Valdas Monginas</h3>
<div class="job-title">
Team Lead, Development, KAYAK
</div>
<p class="qoute">„Per 13+ metų išmokau, kad atlikti užduotį
galimą įvairiausiomis priemonėmis ir būdais, bet visada yra
optimaliausias sprendimas! Kasdien jo ieškau dirbdamas KAYAK
SEO komandoje, besirūpindamas tiek milžiniškų duomenų kiekių
apdorojimu, tiek jų atvaizdavimu. Dirbu su naujausiomis
technologijomis, tokiomis kaip Node.js ir React.js,
balansuodamas ties riba, kad visi duomenys ne tik patraukliai
atrodytų KAYAK naudotojams, bet ir būtų prieinami Google
robotams.”</p>
<p><strong>2013 – šiuo metu:</strong> Team Lead, Development,
<a class="company" href=
"https://www.linkedin.com/company/32889?trk=prof-exp-company-name"
target="_blank">KAYAK</a><br>
<strong>2007 – 2013</strong> XPages programuotojas, UAB
Sekasoft, IBM Lotus Notes<br>
<strong>2004 – 2007</strong> WEB programuotojas, TŪB Vandens
linija<br>
<strong>2003 – 2004</strong> WEB programuotojas, AI Verslo
sprendimai<br></p>
<p><a class="c2c" href=
"https://www.linkedin.com/in/valdas-monginas-27791567" target=
"_blank">LinkedIn</a>
</p>
</div>
<div style="clear:both">
</div>
</div>
<div class="lecturer">
<div class="photo">
<img src="photos/mkricena.jpg">
</div>
<div class="text">
<h3>Marius Kričena <span class="new">new</span></h3>
<div class="job-title">
Software Engineer, KAYAK
</div>
<p class="qoute">“Programinės įrangos kūrimo srityje esu jau daugiau nei 10 metų. Didžiąją dalį savo karjeros praleidau kurdamas programinės įrangos sprendimus vienoms didžiausių savo srityse Lietuvos įmonių. Tai man suteikė daug žinių ne tik programinės įrangos kūrimo, bet ir projektų valdymo srityse. Prisijungęs prie KAYAK gavau puikią progą prisidėti prie šauniausio kelionių paieškos variklio kūrimo, kurį giria net JAV prezidentai, o taip pat pasidalinti savo žiniomis su KAYAK UI Academy paskaitų klausytojais. Dėl to labai džiaugiuosi! Tad iki pasimatymo!</p>
<p><strong>2017-12 – dabar:</strong> Software Engineer,
<a class="company" href="https://www.linkedin.com/company/32889?trk=prof-exp-company-name" target="_blank">KAYAK</a><br>
<strong>2011-09 – 2017-12:</strong> Software developer, Project manager, Concept business solutions, UAB<br>
<p><a class="c2c" href="https://www.linkedin.com/in/marius-kričena-05195a11a/" target="_blank">LinkedIn</a>
</p>
</div>
<div style="clear:both">
</div>
</div>
<div class="lecturer">
<div class="photo"><img src="photos/smatonis.jpg">
</div>
<div class="text">
<h3>Šarūnas Matonis</h3>
<div class="job-title">
Senior Software Engineer, KAYAK
</div>
<p class="qoute">„Per 20+ metų spėjau pasidarbuoti tiek su
mažais, tiek su vienais didžiausių pasaulyje UI projektų, taip
sukaupdamas įvairiapusišką darbo patirtį, kuria norėčiau
pasidalinti ir su kitais. Paskaitų metu kalbėsiu apie
pagalbines priemones ir įrankius, padėsiančius sėkmingai
perkelti turimą idėją ar jau egzistuojantį verslą į
internetą.”</p>
<p><strong>2010 – šiuo metu:</strong> Senior Software Engineer,
<a class="company" href=
"https://www.linkedin.com/company/32889?trk=prof-exp-company-name"
target="_blank">KAYAK</a><br>
<strong>2009 – 2010:</strong> Software Engineer, <a class=
"company" href=
"https://www.linkedin.com/company/722757?trk=prof-exp-company-name"
target="_blank">swoodoo</a><br>
<strong>2007 – 2009:</strong> Team Lead / UI developer / CO
owner, UAB NAMINIS<br>
<strong>1999 – 2007:</strong> Web Developer, UAB Baltic
Bidz.com</p>
<p><a href=
"https://lt.linkedin.com/in/sarunas-matonis-95348431" target=
"_blank">LinkedIn</a>
</p>
</div>
<div style="clear:both">
</div>
</div>
<div class="lecturer">
<div class="photo"><img src="photos/mdomijonaitis.jpg">
</div>
<div class="text">
<h3>Mantas Damijonaitis <span class="new">new</span></h3>
<div class="job-title">
Software Engineer, KAYAK
</div>
<p class="qoute">„Programavimas - mano mėgstamiausia veikla ir įkvepiantis hobis. Pirmąjį kodą parašiau būdamas devintoje klasėje ir nuo to laiko nebegalėjau atsispirti jo teikiamai galimybei suteikti gyvybę savo mintims. Profesionaliai dirbu 1.5+ metų bei nuolatos gilinu žinias universitete, todėl dėstydamas pasidalinsiu patarimais kaip efektyviai įsisavinti programavimo subtilybes.”</p>
<p><strong>2017-09 – dabar:</strong> Software Engineer,
<a class="company" href="https://www.linkedin.com/company/32889?trk=prof-exp-company-name" target="_blank">KAYAK</a><br>
<strong>2016-06 – 2017-08:</strong> Full Stack Software Developer, <a class="company" href="https://www.linkedin.com/company/ab-axis-industries-" target="_blank">Axis Industries</a><br>
<p><a class="c2c" href="https://www.linkedin.com/in/mantas-damijonaitis-2b87b5b6/" target="_blank">LinkedIn</a>
</p>
</div>
<div style="clear:both">
</div>
</div>
<div class="lecturer">
<div class="photo"><img src="photos/andrius.jpg">
</div>
<div class="text">
<h3>Andrius Steponavičius</h3>
<div class="job-title">
Senior Software Engineer, KAYAK
</div>
<p class="qoute">coming soon</p>
<p><strong>2009 – šiuo metu:</strong> Senior Software Engineer,
<a class="company" href=
"https://www.linkedin.com/company/32889?trk=prof-exp-company-name"
target="_blank">KAYAK</a><br>
<strong>2005 – 2009:</strong> Software Engineer, B-NET Solutions, UAB<br>
<strong>2003 – 2005:</strong> Software Engineer, Informacijos tinklas ir Ko, UAB<br>
<strong>2001 – 2003:</strong> Developer, Penki kontinentai, UAB<br>
<strong>2000 – 2001:</strong> Developer, Geras partneris, UAB</p>
<p><a class="c2c" href=
"https://www.linkedin.com/in/danikas2k2" target=
"_blank">LinkedIn</a>
</p>
</div>
<div style="clear:both">
</div>
</div>
<div class="lecturer">
<div class="photo"><img src="photos/gtubelevicius.jpg">
</div>
<div class="text">
<h3>Gediminas Tubelevičius <span class="new">new</span></h3>
<div class="job-title">
Software Engineer, KAYAK
</div>
<p class="qoute">„Kokia nauda iš teorijos, jei nežinai ką su ja daryti? Štai taip jaučiausi savo karjeros pradžioje... Paskaitų metu stengsiuosi sutelkti kuo daugiau dėmesio į praktinį aktualiausių technologijų ir žinių įsisavinimą. Juk mes norime sukurti ką nors gražaus, o ne apie tai šnekėti :)”</p>
<p><strong>2016-08 – dabar:</strong> Software Engineer,
<a class="company" href="https://www.linkedin.com/company/32889?trk=prof-exp-company-name" target="_blank">KAYAK</a><br>
<strong>2015-07 – 2016-08:</strong> Junior Java Developer, <a class="company" href="https://www.linkedin.com/company/58830/" target="_blank">Elsis</a><br>
<p><a class="c2c" href="https://www.linkedin.com/in/gediminas-tubelevi%C4%8Dius-846571109/" target="_blank">LinkedIn</a>
</p>
</div>
<div style="clear:both">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="post">
<div class="post-text">
<h2>Paskaitos</h2>
<h3>BASIC <a class="c2c" href=
"https://goo.gl/forms/uLQwrEpLp1txWjhx1"
target="_blank">(Registruokis)</a></h3>
<div class="table">
<table>
<tr>
<td class="number">Nr.</td>
<td>Aprašymas</td>
</tr>
<tr id="B1">
<td class="short">B1</td>
<td>
<h4>HTML, CSS basics <a class="c2c" target="_blank" href="https://www.youtube.com/watch?v=mCOcw4ijNtg&list=PLRmq6bqcUIZMUuA93P9W6PaKegMEZoV22">(Video paskaita) <span class="new">new</span></a></h4>
<p><strong>Dėstytojai:</strong> Andrius Steponavičius<br>
<strong>Santrauka:</strong> Fast dive in basics for HTML and
CSS<br>
<strong>Keyword’ai:</strong> CSS, HTML, CSS 3, HTML 5<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> –</p>
</td>
</tr>
<tr id="B2">
<td>B2</td>
<td>
<h4>Javascript basics <a class="c2c" target="_blank" href="https://www.youtube.com/watch?v=q6T7Ik3tid0&list=PLRmq6bqcUIZPvlGhurSn768Kis6VM_ZMX">(Video paskaita) <span class="new">new</span></a></h4>
<p><strong>Dėstytojai:</strong> Darius Ašeriškis<br>
<strong>Santrauka:</strong> Super fast dive in basics for
Javascript language. Overview of basic language concepts.<br>
<strong>Keyword’ai:</strong> javascript<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> –</p>
</td>
</tr>
<tr id="B3">
<td>B3</td>
<td>
<h4>JS + HTML + CSS <a class="c2c" target="_blank" href="https://www.youtube.com/watch?v=483sHO1g9SU&list=PLRmq6bqcUIZP24bWrgD7j-wojzh-xyoQX">(Video paskaita) <span class="new">new</span></a></h4>
<p><strong>Dėstytojai:</strong> Modestas Kapušinskas<br>
<strong>Santrauka:</strong> Super fast dive in to combining the
learned skill set from lecture B1 and B2.<br>
<strong>Keyword’ai:</strong> Javascript, HTML, CSS<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> <a href="#B1">B1</a>, <a href=
"#B2">B2</a></p>
</td>
</tr>
<tr id="B4">
<td>B4</td>
<td>
<h4>Basic page layouting <a class="c2c" target="_blank" href="https://www.youtube.com/watch?v=wFrlO4XbyZI&list=PLRmq6bqcUIZPOiy8u4PkpauPSz-NN6nr2">(Video paskaita) <span class="new">new</span></a></h4>
<p><strong>Dėstytojai:</strong> Justas Adžgauskas<br>
<strong>Santrauka:</strong> Using HTML and CSS build your
first<br>
<strong>Keyword’ai:</strong> HTML, CSS, Flexible page
layout<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> <a href="#B1">B1</a></p>
</td>
</tr>
<tr id="B5">
<td>B5</td>
<td>
<h4>Developer tools basics <a class="c2c" target="_blank" href="https://www.youtube.com/watch?v=aGfMCPnsbjs&list=PLRmq6bqcUIZNePehxz-irh5lY7TUxyBAo">(Video paskaita) <span class="new">new</span></a></h4>
<p><strong>Dėstytojai:</strong> Ramūnas Kiupelis<br>
<strong>Santrauka:</strong> Learn website client side debugging
basics.<br>
<strong>Keyword’ai:</strong> Chrome dev tools<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> <a href="#B1">B1</a>, <a href=
"#B2">B2</a></p>
</td>
</tr>
<tr id="B6">
<td>B6</td>
<td>
<h4>Page rendering basics <a class="c2c" href=
"https://goo.gl/forms/uLQwrEpLp1txWjhx1"
target="_blank">(Registruokis)</a></h4>
<p><strong>Dėstytojai:</strong> Valdas Monginas<br>
<strong>Santrauka:</strong> Learn how a page is rendered from
scratch. Learn page visualization engines.<br>
<strong>Keyword’ai:</strong> Visualization engines, Browser
rendering<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> <a href="#B1">B1</a>, <a href=
"#B2">B2</a>, <a href="#B3">B3</a></p>
</td>
</tr>
<tr id="B7">
<td>B7</td>
<td>
<h4>HTTP and AJAX <a class="c2c" target="_blank" href="https://www.youtube.com/watch?v=VWd0l0hSbQw&list=PLRmq6bqcUIZMxRSbI8Aq6qbW-BrAMYoJ4">(Video paskaita) <span class="new">new</span></a></h4>
<p><strong>Dėstytojai:</strong> Šarūnas Matonis<br>
<strong>Santrauka:</strong> Introduction into AJAX, basic AJAX
handling. Protocols basics.<br>
<strong>Keyword’ai:</strong> AJAX, GET, POST, HTTP, HTTPS, HTTP
2.0<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> <a href="#B1">B1</a>, <a href=
"#B2">B2</a>, <a href="#B3">B3</a>, <a href="#B4">B4</a>,
<a href="#B5">B5</a></p>
</td>
</tr>
<tr id="B8">
<td>B8</td>
<td>
<h4>Server side basics <a class="c2c" target="_blank" href="https://www.youtube.com/watch?v=H-SLnZAcz5o&list=PLRmq6bqcUIZNyQl4g1vCfUX3bYaQZ6cHf">(Video paskaita) <span class="new">new</span></a></h4>
<p><strong>Dėstytojai:</strong> Vygandas Pliasas<br>
<strong>Santrauka:</strong> Learn basic project setup, version
control and server side programing basics<br>
<strong>Keyword’ai:</strong> NodeJS, GIT<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> –</p>
</td>
</tr>
<tr id="B9">
<td>B9</td>
<td>
<h4>Database basics <a class="c2c" href=
"https://goo.gl/forms/uLQwrEpLp1txWjhx1"
target="_blank">(Registruokis)</a></h4>
<p><strong>Dėstytojai:</strong> Rūta Povilaitytė<br>
<strong>Santrauka:</strong> Introduction to database
basics.<br>
<strong>Keyword’ai:</strong> SQL, NOSQL<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> –</p>
</td>
</tr>
</table>
</div>
<h3>ADVANCED <a class="c2c" href=
"https://goo.gl/forms/uLQwrEpLp1txWjhx1"
target="_blank">(Registruokis)</a></h3>
<div class="table">
<table>
<tr>
<td class="number">Nr.</td>
<td>Aprašymas</td>
</tr>
<tr id="A1">
<td>A1</td>
<td>
<h4>Maintainable and fast CSS. <a class="c2c" href=
"https://goo.gl/forms/uLQwrEpLp1txWjhx1"
target="_blank">(Registruokis)</a></h4>
<p><strong>Dėstytojai:</strong> Gediminas Tubelevičius<br>
<strong>Santrauka:</strong> Lecture learning about modern CSS
architectures and building one agile framework.<br>
<strong>Keyword’ai:</strong> OOCSS, ATOMCSS, SMACSS<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> <a href="#B1">B1</a></p>
</td>
</tr>
<tr id="A2">
<td>A2</td>
<td>
<h4>Modern patterns <a class="c2c" href=
"https://goo.gl/forms/uLQwrEpLp1txWjhx1"
target="_blank">(Registruokis)</a></h4>
<p><strong>Dėstytojai:</strong> Ramūnas Kiupelis<br>
<strong>Santrauka:</strong> Review modern patterns<br>
<strong>Keyword’ai:</strong> SingleTone, Factory, Observer,
Emitter<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> <a href="#B2">B2</a></p>
</td>
</tr>
<tr id="A3">
<td>A3</td>
<td>
<h4>Unit Testing <a class="c2c" href=
"https://goo.gl/forms/uLQwrEpLp1txWjhx1"
target="_blank">(Registruokis)</a></h4>
<p><strong>Dėstytojai:</strong> Andrius Steponavičius<br>
<strong>Santrauka:</strong> How to write unit tests for JS<br>
<strong>Keyword’ai:</strong> Javscript unit tests<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> <a href="#B1">B1</a>, <a href=
"#B2">B2</a>, <a href="#B3">B3</a></p>
</td>
</tr>
<tr id="A4">
<td>A4</td>
<td>
<h4>Backend Problem solving <a class="c2c" href=
"https://goo.gl/forms/uLQwrEpLp1txWjhx1"
target="_blank">(Registruokis)</a></h4>
<p><strong>Dėstytojai:</strong> Modestas Kapušinskas<br>
<strong>Santrauka:</strong> Introduction and best practices how
to investigate and solve the problems related to WEB
applications. How to do it efficiently. What are the common
problems?<br>
<strong>Keyword’ai:</strong> Problem solving, Troubleshooting,
application errors<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> <a href="#B6">B6</a>, <a href=
"#B7">B7</a></p>
</td>
</tr>
<tr id="A5">
<td>A5</td>
<td>
<h4>Frontend Problem solving <a class="c2c" href=
"https://goo.gl/forms/uLQwrEpLp1txWjhx1"
target="_blank">(Registruokis)</a></h4>
<p><strong>Dėstytojai:</strong> Modestas Kapušinskas<br>
<strong>Santrauka:</strong> Introduction and best practices how
to investigate and solve the problems related to WEB
applications. How to do it efficiently. What are the common
problems?<br>
<strong>Keyword’ai:</strong> Problem solving, Troubleshooting,
application errors<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> <a href="#B6">B6</a>, <a href=
"#B7">B7</a></p>
</td>
</tr>
<tr id="A6">
<td>A6</td>
<td>
<h4>Responsive web design (Basics) <a class="c2c" href=
"https://goo.gl/forms/uLQwrEpLp1txWjhx1"
target="_blank">(Registruokis)</a></h4>
<p><strong>Dėstytojai:</strong> Rūta Povilaitytė<br>
<strong>Santrauka:</strong> Introduction to responsive web
design. Adaptive and responsive rwd.<br>
<strong>Keyword’ai:</strong> RWD, media query<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> <a href="#B3">B3</a>, <a href=
"#B4">B4</a></p>
</td>
</tr>
<tr id="A7">
<td>A7</td>
<td>
<h4>WebApp frameworks (Angular 4) <a class="c2c" href=
"https://goo.gl/forms/uLQwrEpLp1txWjhx1"
target="_blank">(Registruokis)</a></h4>
<p><strong>Dėstytojai:</strong> Gediminas Tubelevičius<br>
<strong>Santrauka:</strong> Introduction to Angular JS framework.<br>
<strong>Keyword’ai:</strong> Angular Js, webApp frameworks<br>
<strong>Trukmė:</strong> 1.5h<br>
</td>
</tr>
<tr id="A8">
<td>A8</td>
<td>
<h4>Responsive web design (Advanced) <a class="c2c" href=
"https://goo.gl/forms/uLQwrEpLp1txWjhx1"
target="_blank">(Registruokis)</a></h4>
<p><strong>Dėstytojai:</strong> Mantas Damijonaitis<br>
<strong>Santrauka:</strong> Grid systems, media elements in
responsive web design<br>
<strong>Keyword’ai:</strong> grid systems, media<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> <a href="#P5">P5</a></p>
</td>
</tr>
<tr id="A9">
<td>A9</td>
<td>
<h4>A/B experimentation <a class="c2c" href=
"https://goo.gl/forms/uLQwrEpLp1txWjhx1"
target="_blank">(Registruokis)</a></h4>
<p><strong>Dėstytojai:</strong> Darius Jankauskas<br>
<strong>Santrauka:</strong> Basic introduction to AB testing
and data driven development<br>
<strong>Keyword’ai:</strong> split testing, a/b testing<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> <a href="#B1">B1</a>, <a href=
"#B2">B2</a>, <a href="#B3">B3</a></p>
</td>
</tr>
<tr id="A10">
<td>A10</td>
<td>
<h4>Automated Testing <a class="c2c" href=
"https://goo.gl/forms/uLQwrEpLp1txWjhx1"
target="_blank">(Registruokis)</a></h4>
<p><strong>Dėstytojai:</strong> Šarūnas Matonis<br>
<strong>Santrauka:</strong> Introduction to Unit testing and
overview of most popular testing frameworks for Javascript<br>
<strong>Keyword’ai:</strong> Unit testing<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> <a href="#B1">B1</a>, <a href=
"#B2">B2</a>, <a href="#B3">B3</a></p>
</td>
</tr>
<tr id="A11">
<td>A11</td>
<td>
<h4>Object Inheritance <a class="c2c" href=
"https://goo.gl/forms/uLQwrEpLp1txWjhx1"
target="_blank">(Registruokis)</a></h4>
<p><strong>Dėstytojai:</strong> Marius Kričena<br>
<strong>Santrauka:</strong> what is inheritance and how to
inherit objects<br>
<strong>Keyword’ai:</strong> inheritance<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> <a href="#B2">B2</a></p>
</td>
</tr>
<tr id="A12">
<td>A12</td>
<td>
<h4>Frontend development tools <a class="c2c" href=
"https://goo.gl/forms/uLQwrEpLp1txWjhx1"
target="_blank">(Registruokis)</a></h4>
<p><strong>Dėstytojai:</strong> Šarūnas Matonis<br>
<strong>Santrauka:</strong> JS, CSS preprocesors Minification
and other tools<br>
<strong>Keyword’ai:</strong> LESS, SASS, TypeScript, Babel,
GZip<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> <a href="#B1">B1</a>, <a href=
"#B2">B2</a></p>
</td>
</tr>
<tr id="A13">
<td>A13</td>
<td>
<h4>React Basics <a class="c2c" href=
"https://goo.gl/forms/uLQwrEpLp1txWjhx1"
target="_blank">(Registruokis)</a></h4>
<p><strong>Dėstytojai:</strong> Andrius Steponavičius<br>
<strong>Santrauka:</strong> Building basic app in React
framework<br>
<strong>Keyword’ai:</strong> ReactJS, ES6, Babel<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> <a href="#B1">B1</a>, <a href=
"#B2">B2</a>, <a href="#B3">B3</a></p>
</td>
</tr>
<tr id="A14">
<td>A14</td>
<td>
<h4>SEM, SEO optimization <a class="c2c" href=
"https://goo.gl/forms/uLQwrEpLp1txWjhx1"
target="_blank">(Registruokis)</a></h4>
<p><strong>Dėstytojai:</strong> Valdas Monginas<br>
<strong>Santrauka:</strong> SEO and SEM optimization<br>
<strong>Keyword’ai:</strong> SEM, SEO, Google adwords<br>
<strong>Trukmė:</strong> 1.5h<br>
<strong>Reikalavimai:</strong> <a href="#B1">B1</a></p>
</td>
</tr>
</table>
</div>
</div>
</div>
<br style="clear:both">
</div>
</div>
<div class="footer">
© KAYAK.com, UI ACADEMY, Kaunas 2017
</div>
</body>
</html>