-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmeetups.yaml
1222 lines (1139 loc) · 39.9 KB
/
meetups.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
events:
- :number: 109
:date: "2026-02-20"
:talks:
- :fullname: Paweł Strzałkowski
:title: My LLM is smarter than yours - czyli LLMy, Vector Search i RAG w Ruby
- :fullname: Krzysztof Hasiński
:title: Fantastic Databases and Where to Find Them
- :number: 108
:date: "2024-11-28"
:talks:
- :fullname: Adam Okoń
:title: Golang - z pamiętników wdrożeniowca, część 2
- :number: 107
:date: "2024-10-24"
:talks:
- :fullname: Adam Okoń
:title: Golang - z pamiętników wdrożeniowca
- :fullname: Maciej Małecki
:title: Ash Framework w praktyce
- :number: 106
:date: "2024-09-26"
:talks:
- :fullname: Adam Okoń
:title: Solid Queue + Mission Controll
- :fullname: Oskar Szrajer
:title: UNION, INTERSECT, EXCEPT in SQL and how to use them
- :number: 105
:date: "2024-08-29"
:talks:
- :fullname: Tomasz Stachewicz
:title: Jak hostować z homelabu
- :fullname: Adam Okoń
:title: Co nowego w świecie Railsowym?
- :number: 104
:date: "2024-06-27"
:talks:
- :fullname: Oskar Szrajer
:title: NixOS
- :fullname: Adam Okoń
:title: kolejne warsztaty z Rails Turbo
- :number: 103
:date: "2024-05-23"
:talks:
- :fullname: Michał Poczwardowski
:title: On Building Newsletter
:slides: https://trug.pl/assets/archive/20240523/on_building_newsletter_trug_2024_05_23.pdf
- :number: 102
:date: "2024-04-25"
:talks:
- :fullname: Adam Okoń
:title: Turbo, ciąg dalszy
- :number: 101
:date: "2024-03-28"
:talks:
- :fullname: Adam Okoń
:title: kontynuacja eksploracji wzorców dla turbo-rails
- :number: 100
:date: "2024-02-27"
:talks:
- :fullname: Adam Okoń
:title: turbo_frame vs trubo_stream
- :number: 99
:date: "2024-01-25"
:talks:
- :number: 98
:date: "2023-12-28"
:talks:
- :fullname: Ogladamy film
:title: Turbo Native in 15 minutes, Joe Masilotti
- :number: 97
:date: "2023-11-30"
:talks:
- :fullname: Ogladamy film
:title: Ruby on Rails - The Documentary
- :number: 96
:date: "2023-10-26"
:talks:
- :fullname: Adam Okoń
:title: Ruby on Serveless
- :fullname: Krzysztof Wawer
:title: Doctrine of Useful Objects - Get rid of mocking
:slides: https://wafcio.github.io/presentations/douo-mocking/
- :number: 95
:date: "2020-02-19"
:talks:
- :fullname: Oskar Szrajer
:title: dry-* gems
:slides: https://trug.pl/assets/archive/20200219/admeet.pdf
- :number: 94
:date: "2020-01-22"
:talks:
- :fullname: Adam Okoń
:title: Jak nie robić microfrontendów
- :number: 93
:date: "2019-12-18"
:talks:
- :fullname: Michał Matyas
:title: Testing React components
- :number: 92
:date: "2019-11-20"
:talks:
- :fullname: Krzysztof Wawer
:title: The Good Architecture
:slides: https://speakerdeck.com/wafcio/the-good-architecture
- :number: 91
:date: "2019-10-23"
:talks:
- :fullname: Bartek Kozal
:title: Czego się nauczyłem, ile zarobiłem i dlaczego rzuciłem programowanie po zbudowaniu sześciu side projektów
- :number: 90
:date: "2019-09-18"
:talks:
- :fullname: Artur Okoński
:title: O GraphQL i używaniu go z Ruby on Rails
- :number: 89
:date: "2019-08-21"
:talks:
- :fullname: ???
:title: ???
- :number: 88
:date: "2019-07-17"
:talks:
- :fullname: Piotr Macuk
:title: Migrating from Paperclip to ActiveStorage
:slides: https://trug.pl/assets/archive/20190717/active_storage.pdf
- :fullname: Piotr Macuk
:title: Selecting SMTP for SaaS business
:slides: https://trug.pl/assets/archive/20190717/smtp.pdf
- :fullname: Maciej Małecki
:title: AppSignal
- :number: 87
:date: "2019-06-19"
:talks:
- :fullname: Adam Okoń
:title: '"Then in the action"'
- :fullname: Michał Matyas
:title: "FFmpeg in Ruby"
- :number: 86
:date: "2019-05-22"
:talks:
- :fullname: Piotr Macuk
:title: VPS vs Heroku for small team
:slides: https://trug.pl/assets/archive/20190522/vps_heroku.pdf
- :fullname: Oskar Szrajer
:title: Podstawy programowania (część kolejna)
- :fullname: Tomasz Stachewicz
:title: Programowanie mikrokontrolerów (mruby)
- :number: 85
:date: "2019-04-17"
:talks:
- :fullname: Maciej Kubiak
:home_page: https://github.com/buffot
:title: Wprowadzenie do Frontend web developmentu
:video_id: GHIKtdl86H4
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/GHIKtdl86H4/sddefault.jpg
- :fullname: Paweł Gościcki
:title: '"Wymyślam algorytm"'
- :number: 84
:date: "2019-03-20"
:talks:
- :fullname: Oskar Szrajer
:title: Dry-view (live coding, refactor)
- :number: 83
:date: "2019-02-27"
:talks:
- :fullname: Paweł Pokrywka
:title: Podsumowanie 12 lat eksperymentu dot. wycieków danych
- :fullname: Oskar Szrajer
:title: Dry-view (better way to write views)
:slides: https://www.slideshare.net/secret/v1KMJE7D7aynTp
:video_id: CXt2kZvbV7c
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/CXt2kZvbV7c/sddefault.jpg
- :number: 82
:date: "2019-01-23"
:talks:
- :fullname: Adam Okoń
:title: JWT
- :number: 81
:date: "2018-12-12"
:talks:
- :fullname: Jacek Marmuszewski
:title: Why do we need security headers?
:slides: https://docs.google.com/presentation/d/1uZhbe-opQQ-90iQvnryoobZt3qa0GXfdgwiDbOcPMfk/edit#slide=id.g45e057549f_0_56
- :fullname: Oskar Szrajer
:title: GraphQL - część I - wstęp (Setup, Query and Types)
:slides: https://github.com/gotar/GraphQL_playground
- :fullname: Adam Okoń
:title: Lighting talk - Mermaidjs
:slides: https://mermaidjs.github.io/
- :number: 80
:date: "2018-11-21"
talks:
- :number: 79
:date: "2018-10-24"
:talks:
- :fullname: Agata Kubiak
:title: Rola badań w procesie projektowania
:slides: https://www.dropbox.com/s/42ne74dbdrw3xcj/TRUG%20Rola%20bada%C5%84%20w%20procesie%20projektowania.pdf?dl=0
- :fullname: Anton Koval
:title: Jak się żyje programistom na wschód od Polski
:slides: https://www.dropbox.com/s/9t8qvewocya3sn7/Programisci%20na%20Wch%C3%B3d%20od%20Europy.pdf?dl=0
- :number: 78
:date: "2018-09-26"
:talks:
- :fullname: Dejan Aćimović
:title: Moja Ruby historia - Jak zostałem programistą grubo po 30-stce.
:video_id: FP3gvcRPD_c
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/FP3gvcRPD_c/sddefault.jpg
- :fullname: Łukasz Skotarek
:title: Wprowadzenie do Property Based Testing
:video_id: 1aJ-rA5_9QU
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/1aJ-rA5_9QU/sddefault.jpg
- :number: 73
:date: "2018-04-18"
:talks:
- :fullname: Jan Dudek
:home_page: https://github.com/jdudek
:title: Front-end Deployment with Lambda@Edge
- :number: 72
:date: "2018-03-21"
:talks:
- :fullname: Michał Poczwardowski
:home_page: https://github.com/dmp0x7c5
:title: Delivering backend - case study.
:slides: https://speakerdeck.com/dmp0x7c5/delivering-backend-case-study/
- :fullname: Oskar Szrajer
:home_page: https://gotar.info
:title: Another Live code session (discovering ruby through TDD)
- :number: 71
:date: "2018-02-28"
:talks:
- :fullname: Oskar Szrajer
:home_page: https://gotar.info
:title: Live code session (discovering ruby through TDD)
- :number: 70
:date: "2018-01-24"
:talks:
- :fullname: Piotr Macuk
:home_page: https://github.com/macuk
:title: Hourly billing is nuts
:slides: https://www.slideshare.net/piotrmacuk/hourly-billing-is-nuts
- :number: 69
:date: "2017-12-20"
:talks:
- :fullname: Adam Okoń
:home_page: https://github.com/aokon
:title: Make frontend development great again in Rails
:video_id: rgmW_VIzPc4
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/rgmW_VIzPc4/sddefault.jpg
:slides: https://speakerdeck.com/aokon/trug-number-69-make-frontend-development-great-again-in-rails
- :number: 68
:date: "2017-11-22"
:talks:
- :fullname: Krzysztof Wawer
:home_page: https://github.com/wafcio
:title: DDD & Hexagonal Architecture
:video_id: zYF2XdGeQHs
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/zYF2XdGeQHs/sddefault.jpg
- :number: 67
:date: "2017-10-25"
:talks:
- :fullname: Sebastian Nowak
:title: AWS deploy pipeline for Jekyll blog
:home_page: https://github.com/seban
:video_id: ojvRSb4qQG4
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/ojvRSb4qQG4/sddefault.jpg
- :fullname: Anna Mikulińska
:title: Jak to się robi w wielkim świecie - berlińska scena softwareowa
- :fullname: Andrzej Krzywda
:home_page: https://twitter.com/andrzejkrzywda
:title: "Event-Driven Rails from scratch - Part 1: Motivation"
- :number: 66
:date: "2017-09-20"
:talks:
- :fullname: Krzysztof Wawer
:home_page: https://github.com/wafcio
:title: Git Good Practices
- :fullname: Agata Kubiak
:home_page: https://www.behance.net/AgataKubiak
:title: Logo - proces twórczy, ukryte znaczenie
- :number: 65
:date: "2017-08-30"
:talks:
- :fullname: Robert Kostrzewski
:title: Integracja mikroserwisu Machine Learning w Python z aplikacją webową Ruby on Rails
- :fullname: Oskar Szrajer
:home_page: https://gotar.info
:title: CSS Grid
:video_id: 5CmeDZmd-_I
:video_provider: youtube
:video_thumr: https://img.youtube.com/vi/5CmeDZmd-_I/sddefault.jpg
- :number: 64
:date: "2017-07-19"
:talks:
- :number: 63
:date: "2017-06-21"
:talks:
- :fullname: Marcin Siepetowski
:home_page: https://github.com/siepet
:title: Docker
:video_id: oZNMzAx57nY
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/oZNMzAx57nY/sddefault.jpg
:slides: https://docs.google.com/presentation/d/1p6uGENUkJKV4OrFMoafJVvMGdaE7ew-7mP3kP9S3aSo
- :fullname: Krzysztof Wawer
:home_page: https://github.com/wafcio
:title: "Slim Ruby on Rails: Controllers & Middlewares"
:slides: https://speakerdeck.com/wafcio/slim-ruby-on-rails-controllers-and-middlewares
- :number: 62
:date: "2017-05-24"
:talks:
- :fullname: Oskar Szrajer
:home_page: https://github.com/gotar
:title: Monady
:video_id: aQzmsXu3P7A
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/aQzmsXu3P7A/sddefault.jpg
- :number: 61
:date: "2017-04-26"
:talks:
- :fullname: Krzysztof Wawer
:home_page: https://github.com/wafcio
:title: Designing a developer friendly API client
- :fullname: Piotr Macuk
:home_page: https://github.com/macuk
:title: ActiveModel::Validations vs dry-validation vs custom solution - my form objects story.
- :number: 60
:date: "2017-03-22"
:talks:
- :fullname: Adam Okoń
:home_page: https://github.com/aokon
:title: Webpack 2 dla opornych
:video_id: HO-gFdVni1k
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/HO-gFdVni1k/sddefault.jpg
:slides: https://speakerdeck.com/aokon/trug-number-60-webpack-2
- :number: 59
:date: "2017-02-15"
:talks:
- :fullname: Paweł Niewiadomski
:home_page: https://github.com/pawelniewie
:title: GraphQL - zaawansowane API (mutacje, autoryzacja, itp.)
:video_id: HGa8dr2OYIk
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/HGa8dr2OYIk/sddefault.jpg
- :fullname: Michał Poczwardowski
:home_page: https://github.com/dmp0x7c5
:title: ML in Ruby
:video_id: zSfXh-Qul1s
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/zSfXh-Qul1s/sddefault.jpg
- :fullname: Szymon Szypulski
:home_page: https://github.com/szymonpk
:title: InSpec - Inspect Your Infrastructure
:slides:
- :number: 58
:date: "2017-01-18"
:talks:
- :fullname: Adam Okoń
:home_page: https://github.com/aokon
:title: PostgreSQL - Dlaczego moje zapytania są takie wolne?
:video_id: _zS4KjUE24w
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/_zS4KjUE24w/sddefault.jpg
:slides: https://speakerdeck.com/aokon/postgresql-dlaczego-moje-zapytania-sa-takie-wolne
- :fullname: Sebastian Nowak
:home_page: https://github.com/seban
:title: Haskell na produkcji
- :fullname: Agata Kubiak
:home_page: https://www.behance.net/AgataKubiak
:title: Logo - proces twórczy, ukryte znaczenie
- :number: 57
:date: "2016-12-14"
:talks:
- :fullname: Jakub Naliwajek
:home_page: https://github.com/naliwajek
:title: Jupyter, interactive notebooks
- :fullname: Stanisław Tuszyński
:home_page: https://github.com/stuszynski
:title: Dokku - part 2
- :number: 56
:date: "2016-11-19"
:talks:
- :fullname: Jakub Naliwajek
:home_page: https://github.com/naliwajek
:title: GraphQL
- :fullname: Ignacy Kasperowicz
:home_page: https://github.com/ignacykasperowicz
:title: OSINT - Why Internet is a scary place
- :number: 55
:date: "2016-10-19"
:talks:
- :fullname: Michał Kwiatkowski
:home_page: https://github.com/mkwiatkowski
:title: "Ruby contracts"
- :fullname: Maciej Małecki
:title: "Git"
:home_page: https://github.com/smt116
:slides: https://www.icloud.com/keynote/0LiFcstnYD8VV3pNltHqBGG_w#Git
- :fullname: Adrian Gruntkowski
:home_page: https://github.com/zoldar
:title: "Wprowadzenie do Ecto"
- :number: 54
:date: "2016-09-21"
:talks:
- :fullname: Maciej Małecki
:title: "Dreyfus Model"
:home_page: https://github.com/smt116
:video_id: T3Wlogn6HzQ
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/T3Wlogn6HzQ/sddefault.jpg
- :fullname: Krzysztof Wawer
:home_page: https://github.com/wafcio
:title: "Konfiguracja aplikacji Ruby - Rób to mądrze"
:video_id: aM-ioLCZ3fA
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/aM-ioLCZ3fA/sddefault.jpg
- :number: 53
:date: "2016-08-24"
:talks:
- :fullname: Adam Okoń
:home_page: https://github.com/aokon
:title: Z czym się je Vue.JS
:video_id: G3bzinki1AE
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/G3bzinki1AE/sddefault.jpg
:slides: https://speakerdeck.com/aokon/trug-number-54-z-czym-sie-je-vuejs
- :number: 52
:date: "2016-07-20"
:talks:
- :fullname: Szymon Jeż
:home_page: https://szymon.jez.net.pl
:title: "ETL systems in Elixir; Extract |> Transform |> Load; Case study of an ETL system written in Elixir"
:slides:
:video_id:
:video_provider:
:video_thumb:
- :number: 51
:date: "2016-06-22"
:talks:
- :fullname: Oskar Szrajer
:home_page: https://github.com/gotar
:title: "Dry-web workshops"
:video_id: 2FGRXzysd2M
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/2FGRXzysd2M/sddefault.jpg
- :number: 50
:date: "2016-05-25"
talks:
- :number: 49
:date: "2016-04-27"
:talks:
- :fullname: Robert Pankowecki
:home_page: https://github.com/paneq
:title: "Fuckin' startups..."
:video_id: 4uYmy3hDC4Q
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/4uYmy3hDC4Q/sddefault.jpg
- :fullname: Robert Pankowecki
:home_page: https://github.com/paneq
:title: "Jak zarobić $80 000 na blogu"
- :number: 48
:date: "2016-04-20"
:talks:
- :fullname: Bartłomiej Kozal
:home_page: https://github.com/bkzl
:title: "Kiedy zamykasz dochodowy biznes z 6 letnią historią czyli czego nauczyłem się jako CEO"
:slides: https://speakerdeck.com/bkzl/what-have-i-learned-as-a-ceo-pl
:video_id: Ik4gMxTKYrI
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/Ik4gMxTKYrI/sddefault.jpg
- :number: 47
:date: "2016-03-23"
:talks:
- :fullname: Krzysztof Wawer
:home_page: https://github.com/wafcio
:title: "Validations in Ruby"
:video_id: WIzh6FU9UdI
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/WIzh6FU9UdI/sddefault.jpg
- :fullname: Stanisław Tuszyński
:home_page: https://github.com/stuszynski
:title: "Deis. Your PaaS. Your Rules."
:video_id: ZxcQ5dWUAKI
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/ZxcQ5dWUAKI/sddefault.jpg
- :number: 46
:date: "2016-02-17"
:talks:
- :title: "Panel dyskusyjny - SPA hot or not?"
- :number: 45
:date: "2016-01-27"
:talks:
- :fullname: Maciej Małecki
:home_page: https://github.com/smt116
:title: "Interactors and Organizers"
- :fullname: Przemysław Kędzierski
:title: "Action Cable"
- :number: 44
:date: "2015-12-16"
:talks:
- :fullname: Adam Okoń
:home_page: https://github.com/aokon
:title: Derailed Benchmarks - nowe podejście do testowania wydajności aplikacji railsowej
- :number: 43
:date: "2015-11-18"
:talks:
- :fullname: Paweł Okoń
:title: "Appium - test automation framework for use with native, hybrid and mobile web apps."
- :number: 42
:date: "2015-10-21"
:talks:
- :fullname: Krzysztof Wawer
:home_page: https://github.com/wafcio
:title: "Moving API from Sinatra to Roda (live coding)"
:source_code: https://github.com/wafcio/roda-rom
- :number: 41
:date: "2015-09-09"
:talks:
- :fullname: Damian Nowak
:title: "Zebrałem milion dolarów od inwestorów na rozwój mojej firmy. Oto jak."
- :number: 40
:date: "2015-08-12"
:talks:
- :fullname: Oskar Szrajer
:home_page: https://github.com/gotar
:title: "Mapping data structures"
:slides: https://gist.github.com/gotar/4f1d2dfcf8fb2750bc25
:video_id:
:video_provider:
:video_thumb:
- :fullname: Krzysztof Wawer
:home_page: https://github.com/wafcio
- :fullname: Adam Okoń
:home_page: https://github.com/aokon
:title: Roda
:slides: https://speakerdeck.com/aokon/trug-number-40-roda
- :number: 39
:date: "2015-07-22"
:talks:
- :fullname: Stanisław Tuszyński
:home_page: https://github.com/stuszynski
:title: "Cooking with Chef"
:video_id: ctkSVZsiaF4
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/ctkSVZsiaF4/sddefault.jpg
- :number: 38
:date: "2015-06-17"
:talks:
- :fullname: Michał Poczwardowski
:home_page: https://github.com/dmp0x7c5
:title: "Defining DSL in Ruby"
:slides: https://speakerdeck.com/dmp0x7c5/defining-dsl-in-ruby/
:video_id: CTKrvzkEbKs
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/CTKrvzkEbKs/sddefault.jpg
- :fullname: Krzysztof Wawer
:home_page: https://github.com/wafcio
:title: "Generating a CSV file with ROM"
:slides: https://speakerdeck.com/wafcio/generating-a-csv-file-with-rom
:video_id: kdml2xdwmxo
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/kdml2xdwmxo/sddefault.jpg
- :number: 37
:date: "2015-05-20"
:talks:
- :fullname: Marta Buda
:home_page: https://github.com/mbuda
:title: "Małe co nieco Sequela"
:slides: https://speakerdeck.com/mbuda/male-co-nieco-sequela
:video_id: x505tjKQMfY
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/x505tjKQMfY/sddefault.jpg
- :fullname: Szymon Jeż
:home_page: https://szymon.jez.net.pl
:title: "ElixirConfEU 2015 - summary, report"
:slides: https://www.elixirconf.eu/
:video_id:
:video_provider:
:video_thumb:
- :fullname: Szymon Jeż
:home_page: https://szymon.jez.net.pl
:title: "3Alchemy session 1 - Freestyle improvised interactive live mob programming Elixir session"
:slides: https://github.com/jeznet/3alchemy#session-1-2015-05-20
:video_id:
:video_provider:
:video_thumb:
- :number: 36
:date: "2015-04-15"
:talks:
- :fullname: Szymon Jeż
:home_page: https://szymon.jez.net.pl
:title: "Why and how to try Elixir and Erlang/OTP?"
:slides: https://szymon.jez.net.pl/2015-04-15-trug-presentation-why-and-how-to-try-elixir-and-erlang-otp.html
:video_id:
:video_provider:
:video_thumb:
- :fullname: Szymon Jeż
:home_page: https://szymon.jez.net.pl
:title: "3Alchemy session 0 - Freestyle improvised interactive live mob programming Elixir session"
:slides: https://github.com/jeznet/3alchemy#session-0-2015-04-15
:video_id:
:video_provider:
:video_thumb:
- :number: 35
:date: "2015-03-18"
:talks:
- :fullname: Krzysztof Wawer
:home_page: https://github.com/wafcio
:title: Trailblazer bez trailblazera
:slides: https://speakerdeck.com/wafcio/trailblazer-bez-trailblazera
:video_id:
:video_provider:
:video_thumb:
- :number: 34
:date: "2015-02-18"
:talks:
- :fullname: Oskar Szrajer
:home_page: https://github.com/gotar
:title: ROM - Ruby Object Mapper
:slides:
:video_id: M0PfkUL_IB8
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/M0PfkUL_IB8/sddefault.jpg
- :number: 33
:date: "2015-01-21"
:talks:
- :fullname: Maciej Małecki
:home_page: https://github.com/smt116
:title: Ship your code with Codeship
:slides:
:video_id: SF5MmIvoF1o
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/SF5MmIvoF1o/sddefault.jpg
- :fullname: Krzysztof Wawer
:home_page: https://github.com/wafcio
:title: ORM, DataMapper czy Agregacja encji
:slides: https://speakerdeck.com/wafcio/activerecord-datamapper-czy-agregacja-encji
:video_id: dWjeToQHDkI
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/dWjeToQHDkI/sddefault.jpg
- :fullname: Michał Kwiatkowski
:home_page: https://github.com/mkwiatkowski
:title: "Języki funkcyjne: czego jeszcze mogą nas nauczyć?"
:slides:
:video_id: _JlL3p5V3Gg
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/_JlL3p5V3Gg/sddefault.jpg
- :number: 32
:date: "2014-12-17"
:talks:
- :fullname: Maciej Małecki
:home_page: https://github.com/smt116
:title: Eye
:slides:
:video_id:
:video_provider:
:video_thumb:
- :fullname: Adam Okoń
:home_page: https://github.com/aokon
:title: Rubymotion - Smart Watch
:slides:
:video_id:
:video_provider:
:video_thumb:
- :fullname: Oskar Szrajer
:home_page: https://github.com/gotar
:title: Repository Pattern
:slides:
:video_id:
:video_provider:
:video_thumb:
- :number: 31
:date: "2014-11-19"
:talks:
- :fullname: Mateusz Nowakowski
:home_page: https://github.com/nowakov
:title:
:slides:
:video_id:
:video_provider:
:video_thumb:
- :fullname: Krzysztof Wawer
:home_page: https://github.com/wafcio
:title: Jak (nie)używać Service Object
:slides: https://speakerdeck.com/wafcio/jak-nie-uzywac-service-object
:video_id:
:video_provider:
:video_thumb:
- :fullname: Oskar Szrajer
:home_page: https://github.com/gotar
:title: Lotus Validations
:slides:
:video_id:
:video_provider:
:video_thumb:
- :number: 30
:date: "2014-10-14"
:talks:
- :fullname: Adam Okoń
:home_page: https://github.com/aokon
:title: Rubymotion
:slides:
:video_id: wmssg1g6bNA
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/wmssg1g6bNA/sddefault.jpg
- :number: 29
:date: "2014-09-17"
:talks:
- :fullname: Michał Podlecki
:home_page: https://github.com/michalpodlecki
:title: Mazureo.pl
:slides: https://mazureo.pl/
:video_id: b3i5CHojnsU
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/b3i5CHojnsU/sddefault.jpg
- :fullname: Piotr Macuk
:home_page: https://github.com/macuk
:title: Konfeo.com -- moja przygoda z biznesem
:slides: /archive/20140917/Konfeo.com-moja-przygoda-z-biznesem-Piotr-Macuk.pdf
:video_id: l_XMz4m7lt4
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/l_XMz4m7lt4/sddefault.jpg
- :number: 28
:date: "2014-08-20"
:talks:
- :fullname: Oskar Szrajer
:home_page: https://gotar.info
:title: Beyond MVC
:slides: https://www.slideshare.net/oskarszrajer/beyond-mvc
:source_code:
:video_id: 9b1G_Q2AHXI
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/9b1G_Q2AHXI/sddefault.jpg
- :fullname: Paweł Gościcki
:home_page: https://github.com/pjg
:title: "Rspec: Best practices"
:slides: /archive/20140820/rspec.html
:source_code:
:video_id: NS2N-gqTU78
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/NS2N-gqTU78/sddefault.jpg
- :number: 27
:date: "2014-07-24"
:talks:
- :fullname: Krzysztof Wawer
:home_page: https://github.com/wafcio
:title: Budowanie aplikacji webowej w Ruby (Hobbit)
:slides: https://speakerdeck.com/wafcio/hobbit
:source_code: https://github.com/wafcio/blog_hobbit_trug
:video_id: njtrTTZFk-A
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/njtrTTZFk-A/sddefault.jpg
- :number: 26
:date: "2014-06-18"
:talks:
- :fullname: Oskar Szrajer
:home_page: https://gotar.info
:title: Lotus Router, Model, Controller, View
:slides: https://lotusrb.org
:video_id:
:video_provider:
:video_thumb:
- :number: 25
:date: "2014-05-21"
:talks:
- :fullname: Oskar Szrajer
:home_page: https://github.com/gotar
:title: Modern API (JSON, REST)
:slides:
:video_id: Xou9TQ9fKf4
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/Xou9TQ9fKf4/sddefault.jpg
- :fullname: Michał Kwiatkowski
:home_page: https://github.com/mkwiatkowski
:title: Porównanie Rails-Django
:slides:
:video_id:
:video_provider:
:video_thumb:
- :number: 24
:date: "2014-04-23"
:talks:
- :fullname: Krzysztof Wawer
:home_page: https://github.com/wafcio
:title: Odchudzanie .gitignore
:slides: https://speakerdeck.com/wafcio/odchudzanie-gitignore
:video_id: 96CLV52zLwI
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/96CLV52zLwI/sddefault.jpg
- :number: 23
:date: "2014-03-19"
:talks:
- :fullname: Bartłomiej Kozal
:home_page: https://github.com/bkzl
:title: CSS w dużych aplikacjach webowych
:slides: https://speakerdeck.com/bkzl/scalable-css
:video_id: 96590922
:video_provider: vimeo
:video_thumb: https://i.vimeocdn.com/video/476683884_640.jpg
- :fullname: Krzysztof Wawer
:home_page: https://github.com/wafcio
:title: Dynamiczne szablony Liquid Markup
:slides: https://speakerdeck.com/wafcio/dynamiczne-szablony-liquid-markup
:source_code: https://github.com/wafcio/liquid_example_trug
:video_id: W-Mg6J-97M8
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/W-Mg6J-97M8/sddefault.jpg
- :fullname: Oskar Szrajer
:home_page: https://github.com/gotar
:title: Keep your wrists healthy
:slides:
:video_id: 89779134
:video_provider: vimeo
:video_thumb: https://b.vimeocdn.com/ts/468/668/468668214_640.jpg
- :number: 22
:date: "2014-02-19"
:talks:
- :fullname: Adrian Gruntkowski
:home_page: https://github.com/zoldar
:title: React JS
:slides: https://zoldar.net/react/#1
:video_id: 91980711
:video_provider: vimeo
:video_thumb: https://i.vimeocdn.com/video/471590150_640.jpg
- :fullname: Oskar Szrajer
:home_page: https://github.com/gotar
:title: Elastic Search
:slides:
:video_id: 92492821
:video_provider: vimeo
:video_thumb: https://i.vimeocdn.com/video/472285541_640.jpg
- :number: 21
:date: "2014-01-22"
:talks:
- :fullname: Maciej Małecki
:home_page: https://github.com/smt116
:title: RethinkDB
:slides: https://smefju.pl/presentations/rethinkdb/#1
:video_id: 87866803
:video_provider: vimeo
:video_thumb: https://b.vimeocdn.com/ts/466/111/466111992_640.jpg
- :fullname: Adam Okoń
:home_page: https://github.com/aokon
:title: Puma
:slides:
:video_id: 89399924
:video_provider: vimeo
:video_thumb: https://b.vimeocdn.com/ts/468/411/468411439_640.jpg
- :fullname: Adam Okoń
:home_page: https://github.com/aokon
:title: Podsumowanie 2013
:slides:
:video_id: 89426724
:video_provider: vimeo
:video_thumb: https://b.vimeocdn.com/ts/468/411/468411386_640.jpg
- :number: 19
:date: "2013-11-20"
:talks:
- :fullname: Sebastian Nowak
:home_page: https://github.com/seban
:title: Git like a pro
:slides:
:video_id: 85487366
:video_provider: vimeo
:video_thumb: https://b.vimeocdn.com/ts/463/444/463444567_640.jpg
- :fullname: Sebastian Zontek
:home_page:
:title: Advertine
:slides: https://www.advertine.com/
:video_id: 85975292
:video_provider: vimeo
:video_thumb: https://b.vimeocdn.com/ts/463/514/463514579_640.jpg
- :number: 18
:date: "2013-10-23"
:talks:
- :fullname: Łukasz Piestrzeniewicz
:home_page: https://github.com/bragi
:title: Jak być partnerem zamiast pracownikiem
:slides: https://docs.google.com/presentation/d/1n110NqCARtX2qqASjuK_CtWRAFXPV1_N3jFldllkQRA/edit#slide=id.p
:video_id: iDKoYfXHbwE
:video_provider: youtube
:video_thumb: https://img.youtube.com/vi/iDKoYfXHbwE/sddefault.jpg
- :number: 17
:date: "2013-09-18"
:talks:
- :fullname: Michał Kwiatkowski
:home_page: https://github.com/mkwiatkowski
:title: AngularJS + Rails
:slides: https://mkwiatkowski.github.io/angularjs-rails4-trug-presentation
:video_id:
:video_provider:
:video_thumb:
- :fullname: Piotr Macuk
:home_page: https://github.com/macuk
:title: Mail gem problem
:slides: https://gist.github.com/macuk/6619938
:video_id:
:video_provider:
:video_thumb:
- :fullname: Piotr Macuk
:home_page: https://github.com/macuk
:title: Less is more
:slides: /archive/20130918/Less-is-More-Piotr-Macuk.pdf
:video_id:
:video_provider:
:video_thumb:
- :fullname: Adrian Gruntkowski
:home_page: https://github.com/zoldar
:title: Grafowe bazy danych
:slides: /archive/20130918/Grafowe-bazy-danych.pdf
:video_id:
:video_provider:
:video_thumb:
- :number: 16
:date: "2013-08-21"
talks:
- :number: 15
:date: "2013-07-24"
:talks:
- :fullname: Michał Kwiatkowski
:home_page: https://github.com/mkwiatkowski
:title: Emacs
:slides:
:video_id: 86509377
:video_provider: vimeo
:video_thumb: https://b.vimeocdn.com/ts/465/279/465279284_640.jpg
- :fullname: Szymon Wrożyński
:home_page: https://github.com/szw
:title: Vim
:slides:
:video_id: 87281357