-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathconfig.yaml
1060 lines (1054 loc) ยท 45.3 KB
/
config.yaml
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
baseURL: https://blog.mgechev.com/
disablePathToLower: true
languageCode: en-us
title: Minko Gechev's blog
googleAnalytics: "UA-18060688-3"
theme: "minimalist"
pygmentsCodeFences: true
pygmentsCodeFencesGuessSyntax: true
pygmentsUseClasses: true
markup:
goldmark:
renderer:
unsafe: true
outputFormats:
RSS:
baseName: "feed"
params:
bio: "Engineering & Product Lead at Google"
event: "Articles about computer science, product development, JavaScript, and compilers."
author: "Minko Gechev"
twitter: mgechev
enableRSS: true
enableGoogleAnalytics: true
enableDisqus: true
disqusShortname: mgechev
socialIconStyle: ""
iconFont: "font-awesome"
archive: "Posts"
og_image: "/images/myself.jpg"
selectedTalks:
- title: "Converging Web Frameworks"
event: dotJS
date: 27th of June, 2024
flag: ๐ซ๐ท
eventLink: https://dotjs.io
video: https://www.youtube.com/watch?v=grRH8e46Pso
slides: https://docs.google.com/presentation/d/1Jff9H8vgOwiM8rHLdihONwT9vzAJ2j3m/edit?usp=sharing&ouid=114008744112501594968&rtpof=true&sd=true
- title: "What's new in Angular - Keynote"
event: Google I/O
eventLink: https://io.google/2024
date: 15th of May, 2024
video: https://www.youtube.com/watch?v=srP2P6j4Cqw
flag: ๐บ๐ธ
- title: "State of Angular - Keynote"
event: Angular Belgrade
eventLink: https://angularbelgrade.org/
video: https://www.youtube.com/watch?v=X6uvGmf9Yqw
date: 24th of May, 2024
flag: ๐ท๐ธ
talks:
- title: "Opening Keynote"
event: "ng-be"
date: 6th of December, 2024
eventLink: https://ng-be.org/2024
video: https://www.youtube.com/watch?v=q1RLdAANXis
flag: ๐ง๐ช
- title: "Converging Frameworks"
event: "Drive-in Conf Lite: Enabling the World (online)"
date: 6th of October, 2024
eventLink: https://www.facebook.com/events/1849218462253057/
flag: ๐ง๐ฌ
- title: "Converging Frameworks"
event: ViteConf (online)
date: 3rd of October, 2024
eventLink: https://viteconf.org/?24
video: https://youtu.be/mWK3Y_1kmaM?si=IDt40uNgQvoXha_d&t=17360
flag: ๐
- title: "The State of Angular"
event: Angular London (online)
date: 18th of July, 2024
eventLink: https://www.meetup.com/angular-london/events/301995271/
flag: ๐ฌ๐ง
- title: "Open-source as an Equalizer"
event: FontendQueens
date: 18th of July, 2024
video: https://www.youtube.com/watch?v=7853TDUtwjg
flag: ๐
- title: "Converging Web Frameworks"
event: dotJS
date: 27th of June, 2024
flag: ๐ซ๐ท
eventLink: https://dotjs.io
video: https://www.youtube.com/watch?v=grRH8e46Pso
slides: https://docs.google.com/presentation/d/1Jff9H8vgOwiM8rHLdihONwT9vzAJ2j3m/edit?usp=sharing&ouid=114008744112501594968&rtpof=true&sd=true
- title: "Angular Renaissance"
event: JSNation
date: 13th of June, 2024
eventLink: https://jsnation.com
video: https://gitnation.com/contents/angular-renaissance
flag: ๐ณ๐ฑ
- title: "Converging Frameworks"
event: AdvancedJS
eventLink: https://www.meetup.com/advancedjs-amsterdam/events/300231872/
date: 12th of June, 2024
flag: ๐ณ๐ฑ
- title: "Angular Renaissance"
event: Frontend Nation
eventLink: https://frontendnation.com/
date: 5th of June, 2024
flag: ๐
- title: "State of Angular - Keynote"
event: Angular Belgrade
eventLink: https://angularbelgrade.org/
video: https://www.youtube.com/watch?v=X6uvGmf9Yqw
date: 24th of May, 2024
flag: ๐ท๐ธ
- title: "What's new in Angular - Keynote"
event: Google I/O
eventLink: https://io.google/2024
date: 15th of May, 2024
video: https://www.youtube.com/watch?v=srP2P6j4Cqw
flag: ๐บ๐ธ
- title: "Angular Renaissance"
event: SFNode
eventLink: https://www.meetup.com/sfnode/events/299742950/
video: https://www.youtube.com/watch?v=4SALBZ5RicM
date: 28th of March, 2024
flag: ๐บ๐ธ
- title: "Keynote"
event: ng-conf
eventLink: https://ng-conf.org
date: 20th of March, 2024
video: https://www.youtube.com/live/nIBseTi6RVk?si=8Hg9ecFeCJijeZut&t=2128
flag: ๐บ๐ธ
- title: "Web Development at Google"
event: DevWorld
eventLink: https://devworldconference.com/
date: 1st of March, 2024
flag: ๐ณ๐ฑ
- title: "Angular Renaissance"
event: DevWorld
eventLink: https://devworldconference.com/
date: 1st of March, 2024
flag: ๐ณ๐ฑ
- title: "Angular Renaissance"
event: Qwik Amsterdam
date: 29th of February, 2024
flag: ๐ณ๐ฑ
- title: "Open-Source as an Equalizer"
event: FMI Club
date: 23rd of January, 2024
flag: ๐ง๐ฌ
- title: "Keynote"
event: NGPoland (online)
date: 11th of November, 2023
flag: ๐ต๐ฑ
- title: "Optimal builds in Angular with Vite and esbuild"
event: ViteConf (online)
date: 5th of October, 2023
video: https://www.youtube.com/watch?v=f_-kxARj6fo
flag: ๐
- title: "Low latency UX at scale with AI"
event: GraphQL, San Francisco, California, USA
date: 19th of September, 2023
flag: ๐บ๐ธ
- title: "Keynote"
event: ng-conf, Salt Lake City, Utah, USA
date: 14th of June, 2023
flag: ๐บ๐ธ
eventLink: https://www.ng-conf.org/
video: https://www.youtube.com/watch?v=D3sEqH9MwEE
- title: "Angular Momentum"
event: JSNation, Amsterdam, Netherlands
video: https://www.youtube.com/watch?v=li5bHEqmVlc
date: 1st of June, 2023
flag: ๐ณ๐ฑ
- title: "What's new in Angular"
event: Google I/O
flag: ๐บ๐ธ
date: 10th of May, 2023
video: https://www.youtube.com/watch?v=uqWUv0dpib0
- title: "Web Development at Google"
event: Devoxx Greece
flag: ๐ฌ๐ท
date: 4th of May, 2023
video: https://www.youtube.com/watch?v=yu2MiL0fpd0
- title: What's new in Angular
event: Angular Athens
date: 3rd of May, 2023
flag: ๐ฌ๐ท
- title: "The Future of Angular"
event: "Angular Graz"
flag: ๐ฆ๐น
date: 1st of January, 2023
- title: "What's new in Angular v15"
event: JavaScript Day
flag: ๐
video: https://youtu.be/Th4woxrN6bk?t=23247
date: 10th of November, 2022
eventLink: https://www.jetbrains.com/lp/javascript-day-2022/
- title: "What's new in Angular v15"
event: Porto Tech Hub
flag: ๐ต๐น
date: 27th of October
eventLink: https://portotechhub.com/conference-2022/
- title: "Keynote"
event: NGPoland
eventLink: http://ng-poland.pl/
date: 26th of October
flag: ๐ต๐ฑ
- title: "Keynote"
event: ng-conf
date: 31st of August, 2022
eventLink: https://www.ng-conf.org/
flag: ๐บ๐ธ
video: https://www.youtube.com/watch?v=CABHcf1gCbg
slides: https://www.icloud.com/keynote/07eT4YqA7g1seKvjWb_ihHbnA#ng-conf-2022-keynote-public
- title: "Open-Source as an Equalizer"
event: TEDxLozenets
date: 5th of June, 2022
eventLink: https://www.ted.com/tedx/events/47507
flag: ๐ง๐ฌ
- title: "Modern Angular deployment with Google Cloud"
event: Google I/O
date: 11th of May, 2022
flag: ๐บ๐ธ
video: https://www.youtube.com/watch?v=jVPHsolXgLk
- title: "State of Angular"
event: NG Yerevan (online)
date: 22nd of February, 2022
flag: ๐ฆ๐ฒ
- title: "Keynote"
event: ng-Keralam (online)
date: 21st of January, 2022
flag: ๐ฎ๐ณ
- title: "Keynote"
event: NGPoland (online)
date: 21st of January, 2022
flag: ๐ต๐ฑ
- title: "State of Angular"
event: Angular Belgrade (online)
date: 8th of December, 2021
flag: ๐ท๐ธ
- title: "State of Angular"
event: Angular Mega Meetup (online)
date: 15th of December, 2021
flag: ๐ฌ๐ท๐ณ๐ฑ๐ฌ๐ง
- title: "State of Angular"
event: ngCopenhagen, Angular Oslo (online)
date: 20th of October, 2021
flag: ๐ฉ๐ฐ๐ณ๐ด
- title: "State of Angular, Keynote"
event: iJS New York (online)
date: 29th of September, 2021
flag: ๐บ๐ธ
- title: "Predictive Prefetching For the Web"
event: Syntax 2021 (online)
date: 20th of August, 2021
flag: ๐ณ๐ต
- title: "State of Angular"
event: JUG BG (online)
date: 15th of July, 2021
flag: ๐ง๐ฌ
- title: "Introduction to Angular DevTools"
event: JavaScript LA (online)
date: 30th of June, 2021
flag: ๐บ๐ธ
- title: "State of Angular"
event: Angular RTP (online)
date: 30th of June, 2021
flag: ๐บ๐ธ
- title: "State of Angular"
event: I/O GDG North Lebanon (online)
date: 25th of June, 2021
flag: ๐ฑ๐ง
- title: "State of Angular"
event: Angular Singapore (online)
date: 1st of June, 2021
flag: ๐ธ๐ฌ
- title: "Tools for Fast Angular Applications"
event: dev.pro JavaScript (online)
date: 23rd of May, 2021
flag: ๐บ๐ฆ
- title: "Change the World With Open Source Software"
event: CareerShow.bg (online)
date: 19th of May, 2021
eventLink: https://careershow.bg
slides: https://speakerdeck.com/mgechev/change-the-world-with-open-source-software
flag: ๐ง๐ฌ
- title: "Future-proof web apps with Angular and TensorFlow.js"
event: Google I/O (online)
date: 18th of May, 2021
eventLink: https://io.google/2021/
video: https://www.youtube.com/watch?v=df_QYkxfnfA
flag: ๐บ๐ธ
- title: "Angular and Core Web Vitals"
event: ng-conf (online)
date: 23rd of April, 2021
eventLink: https://www.2021.ng-conf.org/
flag: ๐บ๐ธ
- title: "State of Angular"
event: State of Angular (online)
date: 1st of April, 2021
video: https://www.youtube.com/watch?v=zoXGGkdZoJ4
flag: ๐บ๐ธ
- title: "State of Angular"
event: SAP, Palo Alto Meetup (online)
date: 16th of March, 2021
eventLink: https://www.meetup.com/angular-sap-group/events/276437424/
flag: ๐บ๐ธ
- title: "Software Engineering as a Superpower, Keynote"
event: Hack for the Future (online)
date: 28th of February, 2021
eventLink: https://hack4thefuture.com/
flag: ๐ง๐ฌ
- title: "State of Angular"
event: Front Endgineers London Meetup (online)
date: 2nd of December, 2020
eventLink: https://www.eventbrite.co.uk/e/front-endgineers-london-the-state-of-angular-tickets-129468839785
flag: ๐ฌ๐ง
- title: "Prototyping Smart UI with Angular and TensorFlow.js"
event: JSTalks (online)
date: 21th of November, 2020
eventLink: http://jstalks.net
flag: ๐ง๐ฌ
- title: "The State of Angular"
event: JSTalks (online)
date: 21th of November, 2020
eventLink: http://jstalks.net
flag: ๐ง๐ฌ
- title: "Building Scalable Web Apps with Angular and Firebase"
event: JSTalks (online)
date: 21th of November, 2020
eventLink: http://jstalks.net
flag: ๐ง๐ฌ
- title: "Angular performance in the enterprise"
event: EnterpriseNG (online)
date: 20th of November, 2020
eventLink: https://www.ng-conf.org/
flag: ๐บ๐ธ
- title: "Scaled Web Development"
event: JSPoland (online)
date: 20th of November, 2020
eventLink: https://js-poland.pl/
flag: ๐ต๐ฑ
- title: "Prototyping Smart UI with Angular and TensorFlow.js"
event: NGPoland (online)
date: 19th of November, 2020
eventLink: https://ng-poland.pl/
flag: ๐ต๐ฑ
- title: "Building JavaScript at Scale"
event: DevCon (online)
date: 10th of November, 2020
eventLink: https://www.dev-con.ro/
slides: https://docs.google.com/presentation/d/1WAuj7IfGlJGY4I9S8J9aPIOhAg8mh__sQZ66u0Sg0HE/preview
flag: ๐ท๐ด
- title: "Build a scalable web app with Firebase in 20 minutes"
event: Firebase Summit (online)
date: 27th of October, 2020
eventLink: https://firebase.google.com/summit
video: http://youtube.com/watch?v=bP3FZGyxQx4
flag: ๐
- title: "Codelab: Building a web application with Angular and Firebase"
event: Firebase Summit (online)
date: 27th of October, 2020
eventLink: https://firebase.google.com/summit
video: http://youtube.com/watch?v=SnF-6S0bGU4
flag: ๐
- title: "Closing Keynote"
event: ng-rome (online)
date: 20th of October, 2020
eventLink: https://ngrome.io
video: https://youtu.be/fM0BjroWGws?t=18625
flag: ๐ฎ๐น
- title: "The State of Angular"
event: Connect.Tech (online)
date: 14th of October, 2020
eventLink: http://connect.tech/
flag: ๐บ๐ธ
- title: "Building apps with Angular and Firebase"
event: TSConf (online)
date: 9th of October, 2020
eventLink: https://tsconf.io/
video: https://www.youtube.com/watch?v=IgYFb16Pc88
flag: ๐บ๐ธ
- title: "The State of Angular (BG)"
event: Astea Conference (online)
video: https://www.youtube.com/watch?v=f4KF2md8C-A
date: 7th of October, 2020
eventLink: https://conference.astea.solutions/
flag: ๐ง๐ฌ
- title: "Internals of the Angular CLI"
event: GIDS.WEB Live (online)
date: 1st of October, 2020
slides: https://speakerdeck.com/mgechev/internals-of-the-angular-cli
eventLink: https://wurreka.com/ict/virtual-conference/web/
flag: ๐ฎ๐ณ
- title: "Instant Angular apps"
event: Infoshare.pl (online)
date: 29th of September, 2020
slides: https://speakerdeck.com/mgechev/fast-angular-apps-from-end-to-end-f94429b8-c6bd-47fd-9f8c-a5958fedccc2
eventLink: https://infoshare.pl/
flag: ๐ต๐ฑ
- title: "The State of Angular"
event: Global Angular Meetup (online)
date: 9th of September, 2020
slides: https://speakerdeck.com/mgechev/the-state-of-angular-95c4ffd3-ecaa-4f5f-81cd-ceed8021c0a3
flag: ๐
- title: "The State of Angular"
event: Angular London (online)
date: 20th of August, 2020
slides: https://speakerdeck.com/mgechev/the-state-of-angular-95c4ffd3-ecaa-4f5f-81cd-ceed8021c0a3
eventLink: http://facebook.com/watch/live/?v=603041067069508
flag: ๐ฌ๐ง
- title: "The State of Angular"
event: Angular Arizona (online)
date: 18nd of August, 2020
slides: https://speakerdeck.com/mgechev/the-state-of-angular-95c4ffd3-ecaa-4f5f-81cd-ceed8021c0a3
eventLink: https://www.meetup.com/RockyMountainAngular/events/272556385/
flag: ๐บ๐ธ
- title: "The State of Angular"
event: ng-conf Colombia (online)
date: 15nd of August, 2020
slides: https://speakerdeck.com/mgechev/the-state-of-angular-95c4ffd3-ecaa-4f5f-81cd-ceed8021c0a3
eventLink: https://ngconf.co/
flag: ๐
- title: "The State of Angular"
event: ngCopenhagen (online)
date: 22nd of July, 2020
slides: https://speakerdeck.com/mgechev/the-state-of-angular-95c4ffd3-ecaa-4f5f-81cd-ceed8021c0a3
eventLink: https://www.meetup.com/ngCopenhagen/events/272257413/
video: https://youtu.be/DKYSqNuv1t4?t=2991
flag: ๐ฉ๐ฐ
- title: "Internals of the Angular CLI"
event: Angular Kharkiv (online)
date: 11th of August, 2020
slides: https://speakerdeck.com/mgechev/internals-of-the-angular-cli
eventLink: https://www.eventbrite.nl/e/angular-kharkiv-meetup-8-tickets-114127494408
video: https://www.youtube.com/watch?v=uUz5Xd3ipCg
flag: ๐บ๐ฆ
- title: "The State of Angular, Keynote"
event: C# Corner, Angular Conference (online)
date: 25nd of July, 2020
slides: https://speakerdeck.com/mgechev/the-state-of-angular-95c4ffd3-ecaa-4f5f-81cd-ceed8021c0a3
video: https://www.c-sharpcorner.com/article/the-state-of-angular/
flag: ๐
- title: "The State of Angular"
event: DevBG (online)
date: 22nd of July, 2020
slides: https://speakerdeck.com/mgechev/the-state-of-angular-95c4ffd3-ecaa-4f5f-81cd-ceed8021c0a3
eventLink: https://dev.bg/%D1%81%D1%8A%D0%B1%D0%B8%D1%82%D0%B8%D0%B5/webinar-javascript-the-state-of-angular/
flag: ๐ง๐ฌ
- title: "The State of Angular"
event: AngularKC (online)
date: 14th of July, 2020
slides: https://speakerdeck.com/mgechev/the-state-of-angular-95c4ffd3-ecaa-4f5f-81cd-ceed8021c0a3
eventLink: https://www.meetup.com/angularkc/events/271314660/
flag: ๐บ๐ธ
- title: "The State of Angular"
event: Angular Birmingham (online)
date: 8th of July, 2020
slides: https://speakerdeck.com/mgechev/the-state-of-angular-95c4ffd3-ecaa-4f5f-81cd-ceed8021c0a3
eventLink: https://www.meetup.com/Angular-Birmingham/events/rvdgfqybckbcb/
flag: ๐ฌ๐ง
- title: "Software Engineering as a Superpower, Keynote"
event: ngGirls (online)
date: 3rd of July, 2020
slides: https://speakerdeck.com/mgechev/software-engineering-as-a-superpower
video: https://www.youtube.com/watch?v=XqRxUuL4fWI
eventLink: https://ng-girls.org/india-2020/
flag: ๐ฎ๐ณ
- title: "Introduction to Angular"
event: KulKul Technology Workshop (online)
date: 26th of June, 2020
slides: https://speakerdeck.com/mgechev/introduction-to-angular
eventLink: https://www.meetup.com/kulkul/events/270607666/
flag: ๐ฎ๐ฉ
- title: "Internals of the Angular CLI"
event: HolyJS (online)
date: 24th of June, 2020
slides: https://speakerdeck.com/mgechev/internals-of-the-angular-cli
eventLink: https://holyjs-piter.ru/en/
video: https://www.youtube.com/watch?v=IvLA10LqCJI
flag: ๐ท๐บ
- title: "The State of Angular"
event: ng-Israel (online)
date: 19th of June, 2020
slides: https://speakerdeck.com/mgechev/the-state-of-angular
video: https://youtu.be/vvV9jhWhYxU?t=1710
flag: ๐ฎ๐ฑ
- title: "The State of Angular"
event: JSNation (online)
date: 19th of June, 2020
slides: https://speakerdeck.com/mgechev/the-state-of-angular
eventLink: https://live.jsnation.com/
video: https://www.youtube.com/watch?v=flJ_fC00mRc
flag: ๐
- title: "The State of Angular Deployment, SSR, and Prerendering"
event: NG-Poland (online)
date: 20th of May, 2020
slides: https://speakerdeck.com/mgechev/the-state-of-angular-deployment-ssr-and-prerendering-ng-conf-keynote
video: https://www.youtube.com/watch?v=2ED-EqIUMQA
flag: ๐ต๐ฑ
- title: "The State of Angular"
event: ngMorocco (online)
date: 14th of May, 2020
slides: https://speakerdeck.com/mgechev/the-state-of-angular
eventLink: https://www.meetup.com/fr-FR/ngMorocco/events/270275753/
video: https://www.youtube.com/watch?v=oa17x_Yue6Y
flag: ๐ฒ๐ฆ
- title: "The State of Angular Deployment, SSR, and Prerendering"
event: GDG Indore, Indore, India (online)
date: 7th of April, 2020
slides: https://speakerdeck.com/mgechev/the-state-of-angular-deployment-ssr-and-prerendering-ng-conf-keynote
video: https://www.youtube.com/watch?v=CzH2sWMynWI
eventLink: https://www.meetup.com/GDGIndore/events/270420044/
flag: ๐ฎ๐ณ
- title: "The State of Angular"
event: jsvidcon, Online
date: 7th of May, 2020
slides: https://speakerdeck.com/mgechev/the-state-of-angular
eventLink: https://jsvidcon.com/
flag: ๐
- title: "The State of Angular Deployment, SSR, and Prerendering"
event: SofiaJS, Sofia, Bulgaria (online)
date: 15th of April, 2020
slides: https://speakerdeck.com/mgechev/the-state-of-angular-deployment-ssr-and-prerendering-ng-conf-keynote
eventLink: https://www.eventbrite.com/e/sofia-js-webinar-from-google-analytics-to-universal-deploy-schematics-tickets-102268844868
flag: ๐ง๐ฌ
- title: "What's new in Angular"
event: Angular Sydney, Sydney, Australia (online)
date: 9th of April, 2020
slides: https://docs.google.com/presentation/d/1Hn54-X91xO9cVnrAZbblEgnWui45UWASEDfObeUMUm8/preview
eventLink: https://www.meetup.com/Angular-Sydney/events/269886948/
flag: ๐ฆ๐บ
- title: "The State of Angular Deployment, SSR, and Prerendering"
event: Angular Toronto, Toronto, Canada (online)
date: 7th of April, 2020
slides: https://speakerdeck.com/mgechev/the-state-of-angular-deployment-ssr-and-prerendering-ng-conf-keynote
eventLink: https://www.meetup.com/AngularToronto/events/268982867/
flag: ๐จ๐ฆ
- title: "The State of Angular Deployment, SSR, and Prerendering, Keynote"
event: ng-conf Hardwired
date: 3th of April, 2020
eventLink: https://www.ng-conf.org/
video: https://www.youtube.com/watch?v=HuOHJYAkEFI
slides: https://speakerdeck.com/mgechev/the-state-of-angular-deployment-ssr-and-prerendering-ng-conf-keynote
flag: ๐
- title: "What's new in Angular"
event: State of Angular
date: 5th of March, 2020
slides: https://docs.google.com/presentation/d/1GrycY-K1yMmDcJMj9vCIwi8jxs-S6Wg-tF7Wk_5ejoU/preview
video: https://youtu.be/9G2gDLIgFbY
flag: ๐
- title: "Predictive Prefetching for the Web"
event: Silicon Valley Data Science, ML, AI Platform
date: 15th of January, 2020
slides: https://docs.google.com/presentation/d/17p4cZX45k3oFqE-hrJkwj3NW4omkfVTlMkGsbhaL-AU/preview
eventLink: https://www.meetup.com/Introduction-to-Data-Science/events/267511607/
flag: ๐บ๐ธ
- title: "Building JavaScript at Scale"
event: Modern Web Meetup, Mountain View, CA
date: 4th of December, 2019
slides: https://docs.google.com/presentation/d/17AbKCIiJqe53l9vgqUqoCOWKs9KE32ba2NJtLTwm1Kg/preview
flag: ๐บ๐ธ
- title: "The Future of the Front-End Frameworks, Keynote"
event: FrontEnd Con, Warsaw, Poland
date: 27th of November, 2019
eventLink: https://frontend-con.io/
video: https://www.youtube.com/watch?v=21474Pw1Azw
slides: https://speakerdeck.com/mgechev/the-future-of-the-front-end-frameworks-84e3beef-9afd-4241-a9a4-daabbc9c357f
flag: ๐ต๐ฑ
- title: "The Future of the Front-End Frameworks"
event: jsTalks, Sofia, Bulgaria
date: 23th of November, 2019
eventLink: http://www.jstalks.net/
slides: https://speakerdeck.com/mgechev/the-future-of-the-front-end-frameworks-84e3beef-9afd-4241-a9a4-daabbc9c357f
flag: ๐ง๐ฌ
- title: "The Future of the Front-End Frameworks, Keynote"
event: jsPoland, Warsaw, Poland
date: 22th of November, 2019
eventLink: https://js-poland.pl/
video: https://www.youtube.com/watch?v=r2cRmlzpQps
slides: https://speakerdeck.com/mgechev/the-future-of-the-front-end-frameworks-84e3beef-9afd-4241-a9a4-daabbc9c357f
flag: ๐ต๐ฑ
- title: "The Post-Ivy World, Keynote"
event: ngPoland, Warsaw, Poland
date: 21th of November, 2019
eventLink: https://ng-poland.pl/
slides: https://docs.google.com/presentation/u/1/d/15VuKk4XWC98kU8ghn8uSGL9Zc5Ehr5oRz8T4VxCHPzo/preview
video: https://www.youtube.com/watch?v=GbR_Urdl8WU
flag: ๐ต๐ฑ
- title: "Building JavaScript at Scale"
event: ISTA, Sofia, Bulgaria
date: 15th of November, 2019
slides: https://docs.google.com/presentation/d/17AbKCIiJqe53l9vgqUqoCOWKs9KE32ba2NJtLTwm1Kg/preview
video: https://www.youtube.com/watch?v=TVV6BReVhMw
flag: ๐ง๐ฌ
- title: "Predictive Prefetching for the Web"
event: Chrome Dev Summit, San Francisco, California, USA
date: 11th of November, 2019
eventLink: https://developer.chrome.com/devsummit/
slides: https://speakerdeck.com/mgechev/predictive-prefetching-for-the-web
video: https://www.youtube.com/watch?v=FS5NYN_n7_k
flag: ๐บ๐ธ
- title: "Tools for fast Angular applications"
event: Chrome Dev Summit, San Francisco, California, USA
date: 11th of November, 2019
eventLink: https://developer.chrome.com/devsummit/
slides: https://speakerdeck.com/mgechev/tools-for-fast-angular-applications-c69b2e18-c87e-45fb-9eb7-e557d9a1bb79
video: https://www.youtube.com/watch?v=l8mCutUMh78
flag: ๐บ๐ธ
- title: "Angular as an Integrated Development Platform"
event: Angular Kenya, Nairobi, Kenya (online)
date: 10th of November, 2019
slides: https://speakerdeck.com/mgechev/angular-as-an-integrated-development-platform
flag: ๐ฐ๐ช
- title: "The Future of the Front-End Frameworks, Keynote"
event: Connect.Tech, Atlanta, Georgia, USA
date: 18th of October, 2019
slides: https://speakerdeck.com/mgechev/the-future-of-the-front-end-frameworks
eventLink: http://connect.tech/2019
flag: ๐บ๐ธ
- title: "Building JavaScript at Scale"
event: Governance Forum, San Francisco, California, USA
date: 9th of October, 2019
slides: https://docs.google.com/presentation/d/17AbKCIiJqe53l9vgqUqoCOWKs9KE32ba2NJtLTwm1Kg/preview
eventLink: https://oasisdigital.com/governance-forum
video: https://www.youtube.com/watch?v=4SR5VUgWkuE
flag: ๐บ๐ธ
- title: "2nd Day Keynote"
event: AngularConnect, London, United Kingdom
date: 20th of September, 2019
slides: https://speakerdeck.com/mgechev/angularconnect-2nd-day-keynote
eventLink: https://www.angularconnect.com/
video: https://youtu.be/-Y3A_RCHoqg
flag: ๐ฌ๐ง
- title: "What's coming to Angular version 9, Keynote"
event: ng-SriLanka, (video call)
date: 13st of September, 2019
slides: https://speakerdeck.com/mgechev/whats-coming-to-angular-version-9-bec617cd-e56f-4c2d-9a41-72517d7beaab
eventLink: https://twitter.com/ngslconf
video: https://www.youtube.com/watch?v=ZmE8Ga85iuI
flag: ๐ฑ๐ฐ
- title: "Predictive Prefetching for the Web"
event: builderscon, Tokyo, Japan
date: 31st of August, 2019
slides: https://docs.google.com/presentation/d/1NpTwLWFDV8_IuYVZyHPN_6jXAGGYhFw4XHKFJasLq6Y/preview
video: https://www.youtube.com/watch?v=D6JFHqkDZbs
eventLink: https://builderscon.io/tokyo/2019
flag: ๐ฏ๐ต
- title: "Tools for Fast Angular Applications"
event: Angular Tokyo Meetup, Tokyo, Japan
date: 29th of August, 2019
slides: https://speakerdeck.com/mgechev/tools-for-fast-angular-applications
eventLink: https://www.meetup.com/ng-japan-tokyo/events/263547856/
flag: ๐ฏ๐ต
- title: "What's coming to Angular version 9"
event: Angular Bolivia, Cochabamba, Bolivia
date: 24th of August, 2019
slides: https://speakerdeck.com/mgechev/whats-coming-to-angular-version-9
eventLink: https://ng-bolivia.org/
flag: ๐ง๐ด
- title: "Tools for Fast Angular Applications"
event: Angular MTV, Google, Mountain View, California
date: 7th of August, 2019
slides: https://speakerdeck.com/mgechev/tools-for-fast-angular-applications
eventLink: https://www.meetup.com/modernweb/events/262393967/
flag: ๐บ๐ธ
- title: "What's New in Angular"
event: GDG, Reading, UK, online
date: 2nd of July, 2019
slides: https://speakerdeck.com/mgechev/whats-new-in-angular-version-8
eventLink: https://www.meetup.com/GDG-Reading-Thames-Valley/events/261955650/
flag: ๐ฌ๐ง
- title: "Building Fast Angular Applications from End-To-End"
event: AmsterdamJS, Amsterdam, Netherlands
date: 7th of June, 2019
slides: https://speakerdeck.com/mgechev/building-fast-angular-applications-from-end-to-end
eventLink: https://jsnation.com/
video: https://www.youtube.com/watch?v=gL8LD67xKNk
flag: ๐ณ๐ฑ
- title: "What's New in Angular, Keynote"
event: ngVikings, Copenhagen, Denmark
date: 27th of May, 2019
slides: https://speakerdeck.com/mgechev/whats-new-in-angular-version-8
eventLink: https://ngvikings.org/
video: https://youtu.be/kVnj0E-TiOA
flag: ๐ฉ๐ฐ
- title: "Introducing Machine Learning to the JavaScript Toolchain"
event: FullStack Conference, New York City, USA
date: 17th of May, 2019
slides: https://speakerdeck.com/mgechev/introducing-machine-learning-to-the-javascript-toolchain
eventLink: https://skillsmatter.com/conferences/11077-fullstack-nyc-2019-the-conference-on-javascript-node-and-internet-of-things
video: https://skillsmatter.com/skillscasts/13305-introducing-machine-learning-to-the-javascript-toolchain?utm_medium=social&utm_source=twitter&utm_campaign=skillscast
flag: ๐บ๐ธ
- title: "Faster Web Navigation with Predictive Prefetching"
event: Google I/O, Mountain View, CA, USA
date: 9th of May, 2019
slides: https://docs.google.com/presentation/d/1Ltg4_67M6FlbgsQ2v6wr44IpxC9_XRiuPLdUGPAxXEc/preview
eventLink: https://events.google.com/io2019/
video: https://www.youtube.com/watch?v=0jB4YWgAxUo
flag: ๐บ๐ธ
- title: "Tools for Faster Angular Applications"
event: ng-conf, Salt Lake City, Utah, USA
date: 3rd of May, 2019
slides: https://speakerdeck.com/mgechev/tools-for-fast-angular-applications
eventLink: https://www.ng-conf.org/
video: https://www.youtube.com/watch?v=5VlBaaXO6ok
flag: ๐บ๐ธ
- title: "Building Fast Angular Applications By Default"
event: ITKonekt, Belgrade, Serbia
date: 14th of April, 2019
slides: https://speakerdeck.com/mgechev/building-fast-angular-applications-by-default
eventLink: https://itkonekt.com/en/it-conference-belgrade/
video: https://www.youtube.com/watch?v=lV_4-HeDM9A&t=95s
flag: ๐ท๐ธ
- title: "Building Fast Angular Applications By Default"
event: Angular Sofia, Sofia, Bulgaria
date: 8st of April, 2019
slides: https://speakerdeck.com/mgechev/building-fast-angular-applications-by-default
eventLink: https://www.facebook.com/events/902916356706565/
flag: ๐ง๐ฌ
- title: "Life of Developer Programs Engineer"
event: University Outreach, Sofia, Bulggaria
date: 8th of April, 2019
slides: https://docs.google.com/presentation/d/1wTnzcKAcs6qAwojpn9U6Fb5mJZJiISEODZhgA4CxgQU/preview
flag: ๐ง๐ฌ
- title: "Building Fast Angular Applications By Default"
event: JSFest, Kiev, Ukraine
date: 6st of April, 2019
slides: https://speakerdeck.com/mgechev/building-fast-angular-applications-by-default
eventLink: http://jsfest.com.ua/jsfest2019/indexe.html
video: https://www.youtube.com/watch?v=Ewe_noCGtUQ
flag: ๐บ๐ฆ
- title: "Predictive Prefetching"
event: Angular San Francisco, San Francisco, California
date: 26st of March, 2019
slides: https://speakerdeck.com/mgechev/predictive-prefetching
eventLink: https://www.meetup.com/Angular-SF/events/259169379/
flag: ๐บ๐ธ
- title: "Introducing Machine Learning to the JavaScript Toolchain"
event: Developer Week 2019, Oakland, California
date: 21st of February, 2019
slides: https://speakerdeck.com/mgechev/web-performance-meets-machine-learning
eventLink: https://developerweek2019.sched.com/
flag: ๐บ๐ธ
- title: "Building JavaScript at Scale"
event: Acronis Event, Sofia University, Sofia, Bulgaria
date: 30th of January, 2019
slides: https://docs.google.com/presentation/d/1KY7OtSnrpAbwATrsNyCFFxKxEmCKl-rrpobz02GWrcI/preview
eventLink: https://acronis.events/sofia2019/
video: https://youtu.be/G58mXOi9mbI?t=26631
flag: ๐ง๐ฌ
- title: "Faster Angular Applications"
event: Connect.Tech, Atlanta, Georgia
date: 19th of October, 2018
slides: https://speakerdeck.com/mgechev/faster-angular-applications-1
eventLink: http://connect.tech/2018
flag: ๐บ๐ธ
- title: "Web Performance meets Machine Learning"
event: Connect.Tech, Atlanta, Georgia
date: 18th of October, 2018
slides: https://speakerdeck.com/mgechev/web-performance-meets-machine-learning
eventLink: http://connect.tech/2018
flag: ๐บ๐ธ
- title: "Predictive Prefetching for Angular"
event: Angular MTV, Google, Mountain View, California
date: 22nd of August, 2018
slides: https://speakerdeck.com/mgechev/predictive-prefetching-for-angular
eventLink: https://www.meetup.com/Angular-MTV/events/253469131/
video: https://www.youtube.com/watch?v=3K98yzaOww4
flag: ๐บ๐ธ
- title: "Purely Fast"
event: Angular Brisbane, Brisbane, Australia
date: 3rd of July, 2018
slides: https://speakerdeck.com/mgechev/faster-angular-applications-1
eventLink: http://speakerdeck.com/mgechev/purely-fast
flag: ๐ฆ๐บ
- title: "Faster Angular Applications"
event: Angular Australia, Melbourne, Australia
date: 22nd of June, 2018
slides: https://speakerdeck.com/mgechev/faster-angular-applications-1
eventLink: https://www.angularconf.com.au/
flag: ๐ฆ๐บ
- title: "Optimizing an Angular Application"
event: ng-conf, Salt Lake City, Utah, USA
date: 19th of April, 2018
video: https://www.youtube.com/watch?v=ybNj-id0kjY
slides: https://slidr.io/mgechev/optimizing-an-angular-application
eventLink: https://www.ng-conf.org/
flag: ๐บ๐ธ
- title: "Teach Your Bundler Users' Habits"
event: Render, Oxford, United Kingdom
date: 23rd of March, 2018
slides: https://slidr.io/mgechev/teach-your-bundler-users-habits
video: https://www.youtube.com/watch?v=L5tPWCB7jX0
flag: ๐ฌ๐ง
- title: "Mad Science with the Angular Compiler"
event: Google Spear Office (GDG SF), San Francisco, California
date: 20th of February, 2018
slides: https://speakerdeck.com/mgechev/mad-science-with-the-angular-compiler
flag: ๐บ๐ธ
- title: "Faster Angular Applications"
event: NgAtlanta, Atlanta, Georgia, USA
date: 1st of February, 2018
slides: https://speakerdeck.com/mgechev/faster-angular-applications
video: https://www.youtube.com/watch?v=HKoXyDfyAXE
eventLink: http://ng-atl.org/
flag: ๐บ๐ธ
- title: "Mad Science with the Angular Compiler (BG)"
event: Dreamix, Sofia, Bulgaria
date: 12th of January, 2018
video: https://www.youtube.com/watch?v=Pe6OC0Qe7ZY
slides: https://speakerdeck.com/mgechev/mad-science-with-the-angular-compiler
flag: ๐ง๐ฌ
- title: "Faster Angular Applications"
event: HolyJS, Moscow, Russia
date: 10th of December, 2017
slides: https://speakerdeck.com/mgechev/faster-angular-applications
eventLink: https://holyjs-moscow.ru/en/talks/3hmyldgekuymaycqcykq60/
video: https://www.youtube.com/watch?v=WP-d5CCuS60
flag: ๐ท๐บ
- title: "Angular Performance Checklist"
event: NG-COLOMBIA, online
date: 18th of November, 2017
video: https://www.youtube.com/watch?v=Rl4FX8cwHks&feature=youtu.be&t=3h28m29s
slides: https://speakerdeck.com/mgechev/angular-performance-checklist-1
eventLink: http://ng-colombia.org/
flag: ๐จ๐ด
- title: "Fast & /Fu(nctional|rious)/"
event: Tesla Motors, California, United States
date: 15th of November, 2017
eventLink: https://tesla.com/
flag: ๐บ๐ธ
- title: "Purely Fast"
event: AngularConnect, London, United Kingdom
date: 7th of November, 2017
eventLink: https://www.angularconnect.com/2017/sessions/#s-669
slides: https://speakerdeck.com/mgechev/purely-fast
video: https://www.youtube.com/watch?v=ukErcJDjR_Y
flag: ๐ฌ๐ง
- title: "Angular Performance Checklist"
event: Bay Fest, San Francisco, California
date: 28th of October, 2017
eventLink: https://bayfest2017.com/
slides: https://speakerdeck.com/mgechev/angular-performance-checklist-1
flag: ๐บ๐ธ
- title: "Angular Performance Checklist"
event: Angular Dev Summit, online
date: 11th of September, 2017
eventLink: https://angulardevsummit.com/
slides: https://speakerdeck.com/mgechev/angular-performance-checklist-1
flag: ๐
- title: "Angular Performance Checklist"
event: ngHouston, online
date: 18th of August, 2017
eventLink: https://www.meetup.com/ngHouston/events/xmmkbnywlbwb/
video: https://www.youtube.com/watch?v=esDKcn_1aic
slides: https://speakerdeck.com/mgechev/angular-performance-checklist-1
flag: ๐บ๐ธ
- title: "Angular Unplugged Q&A session"
event: Q&A session organized for the Bulgarian JavaScript community, Sofia, Bulgaria
date: 13th of July, 2017
slides: https://speakerdeck.com/mgechev/angular-unplugged
flag: ๐ง๐ฌ
- title: "Mad Science with the Angular Compiler"
event: AngularUP, Tel Aviv, Israel
date: 25th of June, 2017
slides: https://speakerdeck.com/mgechev/mad-science-with-the-angular-compiler
video: https://www.youtube.com/watch?v=E707WJakn7A
flag: ๐ฎ๐ฑ
- title: "Angular Performance Checklist"
event: ngcruise, cruise ship, Bahamas
date: 31st May, 2017
video: https://www.youtube.com/watch?v=p9vT0W31ym8
slides: https://speakerdeck.com/mgechev/angular-performance-checklist-1
flag: ๐ง๐ธ
- title: "Mad Science with the Angular Compiler"
event: Angular Bolivia (online)
date: 30th of April, 2017
slides: https://speakerdeck.com/mgechev/mad-science-with-the-angular-compiler
flag: ๐ง๐ด
- title: "Mad Science with the Angular Compiler"
event: ng-conf, Salt Lake City, Utah
date: 5th of April, 2017
video: https://www.youtube.com/watch?v=tBV4IQwPssU
slides: https://speakerdeck.com/mgechev/mad-science-with-the-angular-compiler
flag: ๐บ๐ธ
- title: "Linting Angular"
event: Modern Web, Mountain View, California
date: 9th of March 2017
slides: https://speakerdeck.com/mgechev/linting-angular-1
video: https://www.youtube.com/watch?v=-rhLjl3_y7U
flag: ๐บ๐ธ
- title: "Angular as Integrated Development Platform"
event: Angular Sofia, Sofia, Bulgaria
date: 12th of January 2017
slides: https://speakerdeck.com/mgechev/angular-as-integrated-development-platform
flag: ๐ง๐ฌ
- title: "Scalable Application Architecture"
event: ng-be, Ghent, Belgium
date: 9th of December 2016
slides: https://speakerdeck.com/mgechev/scalable-application-architecture
video: https://www.youtube.com/watch?v=gtOPAj9_FSM
flag: ๐ง๐ช
- title: "Building Angular App for Production"
event: SoCal CodeCamp, USC, Los Angeles
date: 12th of November 2016
slides: https://speakerdeck.com/mgechev/building-an-angular-app-for-production
flag: ๐บ๐ธ
- title: "Building Angular App for Production"
event: Angular Orange County, Google, Orange County
date: 10th of November 2016
slides: https://speakerdeck.com/mgechev/building-an-angular-app-for-production
flag: ๐บ๐ธ
- title: "Angular Toolset Support"
event: Connect.Tech, Atlanta, Georgia
date: 22nd of October 2016
slides: https://speakerdeck.com/mgechev/angular-toolset-support
eventLink: http://connect.tech/2016
flag: ๐บ๐ธ
- title: "Angular Performance Checklist"
event: Connect.Tech, Atlanta, Georgia
date: 21st of October 2016
slides: https://speakerdeck.com/mgechev/angular-performance-checklist
eventLink: http://connect.tech/2016
flag: ๐บ๐ธ
- title: "Linting Angular"
event: South Bay JavaScript, Mountain View, California
date: 12th of October 2016
slides: https://speakerdeck.com/mgechev/linting-angular
flag: ๐บ๐ธ
- title: "Angular 2 Toolset Support"
event: Capgemini Webinar (online)
date: 26th of May, 2016
slides: https://speakerdeck.com/mgechev/angular-2-toolset-support
flag: ๐ฎ๐ณ
- title: "Integrated Web Stack with Angular 2"
event: xlr8con (Sofia, Bulgaria)
date: 14th of May, 2016
slides: https://speakerdeck.com/mgechev/integrated-web-stack-with-angular-2
flag: ๐ง๐ฌ
- title: "Automated Angular 2 Style Checking with Codelyzer"
event: ng-conf (Salt Lake City, Utah, United States)
date: 6th of May, 2016
video: https://youtu.be/bci-Z6nURgE
slides: https://speakerdeck.com/mgechev/automated-angular-2-style-checking-with-codelyzer
flag: ๐บ๐ธ
- title: "Scalable Angular 2 Application Architecture"
event: FDConf (Minsk, Belarus)
date: 16th of April, 2016
slides: https://speakerdeck.com/mgechev/scalable-angular-2-application-architecture
video: https://www.youtube.com/watch?v=r9D5JeVClBs
flag: ๐ง๐พ
- title: "Angular 2 - Quick Web Start"
event: "Angular 2 โค NativeScript (Sofia, Bulgaria)"
date: 10th of March, 2016
slides: https://speakerdeck.com/mgechev/angular-2-quick-web-start
flag: ๐ง๐ฌ
- title: "Building Universal Applications with Angular 2"
event: ITWeekend 2015 (Sofia, Bulgaria),
date: November, 2015
slides: https://speakerdeck.com/mgechev/building-universal-applications-with-angular-2
flag: ๐ง๐ฌ
- title: "Building Universal Applications with Angular 2"
event: OpenFest 2015 (Sofia, Bulgaria)
date: November, 2015
slides: https://speakerdeck.com/mgechev/building-universal-applications-with-angular-2
video: https://www.youtube.com/watch?v=mVuR7Uld2Og
flag: ๐ง๐ฌ
- title: "Building Universal Applications with Angular 2"
event: JSTalks 2015 (Sofia, Bulgaria).
date: November, 2015
slides: https://speakerdeck.com/mgechev/building-universal-applications-with-angular-2
flag: ๐ง๐ฌ
- title: "Cutting Angularโs Crosscuts"
event: AngularConnect, London, United Kingdom
date: 21st of October, 2015
slides: https://speakerdeck.com/mgechev/cutting-angulars-crosscuts
video: https://www.youtube.com/watch?v=C6e6-31HD5A
flag: ๐ฌ๐ง
- title: "Single-Page Applications: Challenges"
event: IT Weekend, Kiev, Ukraine,
date: 12th of September, 2015
slides: https://speakerdeck.com/mgechev/single-page-applications-challenges
eventLink: http://ukraine.itweekend.ua/en/
video: https://www.youtube.com/watch?v=6WbqkhNeYZ8
flag: ๐บ๐ฆ
- title: "Bringing Immutability to Angular"
event: Front-end Weekend (online)
date: 16th of August, 2015
slides: https://speakerdeck.com/mgechev/bringing-immutability-to-angular
eventLink: http://frontendweekend.uwcua.com/
flag: ๐
- title: "Introduction to Angular 2"
event: Webloz Edge, Burgas, Bulgaria
date: 29th of June, 2015
slides: https://speakerdeck.com/mgechev/introduction-to-angular-2
flag: ๐ง๐ฌ
- title: "Code Reusability in Angular"
event: Angular Berlin, Berlin, Germany
date: 10th of June, 2015
slides: https://speakerdeck.com/mgechev/code-reusability-in-angular
flag: ๐ฉ๐ช