-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircleK_workshop_presentation_final.html
More file actions
2621 lines (2521 loc) · 154 KB
/
circleK_workshop_presentation_final.html
File metadata and controls
2621 lines (2521 loc) · 154 KB
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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Warsztaty Claude Code</title>
<link href="https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--yellow: #F5C700;
--yellow-dark: #D4AA00;
--yellow-light: #FFF4CC;
--black: #111111;
--white: #FFFFFF;
--gray-light: #F7F7F7;
--gray-mid: #DEDEDE;
--gray-text: #555555;
--green: #4CAF50;
--green-light: #E8F5E9;
--red: #E53935;
--red-light: #FFEBEE;
--title-size: clamp(1.9rem, 4.5vw, 3.8rem);
--h2-size: clamp(1.4rem, 3vw, 2.4rem);
--h3-size: clamp(1rem, 2vw, 1.55rem);
--body-size: clamp(0.88rem, 1.6vw, 1.25rem);
--small-size: clamp(0.78rem, 1.3vw, 1.05rem);
--label-size: clamp(0.68rem, 1.1vw, 0.88rem);
--slide-padding: clamp(1.4rem, 3.5vh, 3rem) clamp(1.8rem, 4.5vw, 4.5rem);
--content-gap: clamp(0.6rem, 1.4vw, 1.4rem);
--element-gap: clamp(0.3rem, 0.8vw, 0.7rem);
--sidebar-w: clamp(48px, 5vw, 68px);
}
html, body {
width: 100%;
height: 100%;
overflow: hidden;
font-family: 'DM Sans', sans-serif;
background: var(--black);
}
.presentation {
width: 100vw;
height: 100vh;
overflow-y: scroll;
scroll-snap-type: y mandatory;
scroll-behavior: smooth;
}
.slide {
width: 100vw;
height: 100vh;
scroll-snap-align: start;
display: flex;
flex-direction: row;
overflow: hidden;
background: var(--white);
}
/* SIDEBAR */
.sidebar {
width: var(--sidebar-w);
background: var(--yellow);
display: flex;
align-items: flex-end;
justify-content: center;
padding-bottom: calc(clamp(1rem, 2.5vh, 2rem) + 3rem);
flex-shrink: 0;
}
.sidebar-label {
writing-mode: vertical-rl;
transform: rotate(180deg);
font-family: 'Barlow', sans-serif;
font-weight: 900;
font-size: clamp(0.72rem, 1.1vw, 0.95rem);
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--black);
}
/* MAIN */
.main {
flex: 1;
display: flex;
flex-direction: column;
padding: var(--slide-padding);
gap: var(--content-gap);
overflow: hidden;
min-width: 0;
}
/* SLIDE HEADER */
.slide-header {
flex-shrink: 0;
}
.slide-title {
font-family: 'Barlow', sans-serif;
font-weight: 800;
font-size: var(--h2-size);
color: var(--black);
line-height: 1.15;
}
.accent-bar {
height: 4px;
background: var(--yellow);
width: 0;
margin-bottom: 0.4em;
}
/* SLIDE BODY */
.slide-body {
flex: 1;
overflow: hidden;
display: flex;
flex-direction: column;
gap: var(--content-gap);
min-height: 0;
}
/* TYPOGRAPHY */
h3 {
font-family: 'Barlow', sans-serif;
font-weight: 700;
font-size: var(--h3-size);
color: var(--black);
margin-bottom: 0.25em;
}
p {
font-size: var(--body-size);
color: var(--gray-text);
line-height: 1.5;
}
ul, ol {
padding-left: 1.4em;
display: flex;
flex-direction: column;
gap: var(--element-gap);
}
li {
font-size: var(--body-size);
color: var(--gray-text);
line-height: 1.4;
}
strong { color: var(--black); font-weight: 700; }
/* CARDS */
.cards { display: grid; gap: clamp(0.4rem, 0.9vw, 0.85rem); }
.cols-2 { grid-template-columns: 1fr 1fr; }
.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.card {
background: var(--gray-light);
border-top: 4px solid var(--yellow);
border-radius: 0 0 6px 6px;
padding: clamp(0.55rem, 1.1vw, 1rem);
display: flex;
flex-direction: column;
gap: 0.25em;
}
.card.featured { border-top-color: var(--black); }
.card.danger { border-top-color: var(--red); }
.card.success { border-top-color: var(--green); }
.card-title {
font-family: 'Barlow', sans-serif;
font-weight: 700;
font-size: var(--small-size);
color: var(--black);
}
.card p {
font-size: var(--small-size);
}
/* TABLE */
.tbl { width: 100%; border-collapse: collapse; font-size: var(--small-size); }
.tbl th {
background: var(--black);
color: var(--white);
font-family: 'Barlow', sans-serif;
font-weight: 700;
padding: 0.38em 0.7em;
font-size: var(--label-size);
text-align: left;
}
.tbl td {
padding: 0.3em 0.7em;
border-bottom: 1px solid var(--gray-mid);
color: var(--gray-text);
}
.tbl tr:nth-child(even) td { background: var(--gray-light); }
/* BLOCKQUOTE */
blockquote {
border-left: 4px solid var(--yellow);
padding: 0.5em 0.9em;
background: var(--yellow-light);
border-radius: 0 4px 4px 0;
font-style: italic;
color: var(--gray-text);
font-size: var(--small-size);
}
/* FLOW CHAIN */
.flow { display: flex; align-items: center; flex-wrap: wrap; gap: 0.3em; }
.flow-box {
background: var(--gray-light);
border: 2px solid var(--gray-mid);
border-radius: 6px;
padding: 0.4em 0.7em;
font-size: var(--label-size);
text-align: center;
white-space: nowrap;
}
.flow-box.hi { background: var(--yellow-light); border-color: var(--yellow-dark); font-weight: 600; }
.flow-box.dark { background: var(--black); color: var(--white); }
.flow-arrow { font-size: var(--h3-size); color: var(--yellow-dark); font-weight: 900; padding: 0 0.3em; }
/* CODE */
pre {
background: var(--black);
color: #e8e8e8;
border-radius: 6px;
padding: clamp(0.55rem, 1.1vw, 1rem);
font-family: 'Courier New', Courier, monospace;
font-size: var(--small-size);
overflow: auto;
line-height: 1.5;
flex-shrink: 0;
}
code {
font-family: 'Courier New', Courier, monospace;
font-size: 0.92em;
}
/* HANDS-ON */
.hands-on {
background: #FFF8E0;
border: 1px solid var(--yellow);
border-left: 4px solid var(--yellow-dark);
border-radius: 0 6px 6px 0;
padding: 0.55em 0.95em;
flex-shrink: 0;
}
.ho-label {
font-family: 'Barlow', sans-serif;
font-weight: 800;
font-size: var(--label-size);
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--yellow-dark);
margin-bottom: 0.2em;
}
.hands-on p {
font-size: var(--small-size);
color: var(--black);
}
/* TITLE SLIDE */
.title-slide .main {
justify-content: center;
position: relative;
overflow: hidden;
}
.title-deco {
position: absolute;
right: -5%;
top: 50%;
transform: translateY(-50%);
width: clamp(200px, 35vw, 450px);
height: clamp(200px, 35vw, 450px);
border-radius: 50%;
background: var(--yellow);
opacity: 0.07;
pointer-events: none;
}
.title-main {
font-family: 'Barlow', sans-serif;
font-weight: 900;
font-size: clamp(2.4rem, 6.5vw, 5.5rem);
letter-spacing: -0.03em;
line-height: 1.05;
color: var(--black);
margin: 0;
}
.title-sub {
font-family: 'DM Sans', sans-serif;
font-size: var(--h3-size);
color: var(--gray-text);
margin: 0.5em 0 0;
}
.title-pres {
margin-top: 1.5em;
display: flex;
flex-direction: column;
gap: 0.3em;
}
.pres-lbl {
font-family: 'Barlow', sans-serif;
font-weight: 700;
font-size: var(--label-size);
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--gray-text);
}
.pres-names {
font-family: 'Barlow', sans-serif;
font-weight: 600;
font-size: var(--small-size);
color: var(--black);
}
/* ANIMATIONS */
@keyframes fadeSlideUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
from { opacity: 0; transform: translateX(-32px); }
to { opacity: 1; transform: translateX(0); }
}
@keyframes accentBarGrow {
from { width: 0; }
to { width: clamp(50px, 7vw, 100px); }
}
.reveal { opacity: 0; }
.reveal-left { opacity: 0; }
.visible .reveal { animation: fadeSlideUp 0.55s cubic-bezier(0.16,1,0.3,1) forwards; }
.visible .reveal-left { animation: fadeSlideLeft 0.55s cubic-bezier(0.16,1,0.3,1) forwards; }
.visible .stagger > *:nth-child(1) { animation-delay: 0.05s; }
.visible .stagger > *:nth-child(2) { animation-delay: 0.10s; }
.visible .stagger > *:nth-child(3) { animation-delay: 0.15s; }
.visible .stagger > *:nth-child(4) { animation-delay: 0.20s; }
.visible .stagger > *:nth-child(5) { animation-delay: 0.25s; }
.visible .stagger > *:nth-child(6) { animation-delay: 0.30s; }
.visible .stagger > *:nth-child(7) { animation-delay: 0.35s; }
.visible .stagger > *:nth-child(8) { animation-delay: 0.40s; }
.visible .accent-bar { animation: accentBarGrow 0.5s cubic-bezier(0.16,1,0.3,1) 0.15s forwards; }
/* NAVIGATION */
#nav-ui {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 100;
pointer-events: none;
}
#progress-bar {
width: 100%;
height: 3px;
background: rgba(0,0,0,0.12);
}
#progress {
height: 100%;
background: var(--yellow);
width: 0%;
transition: width 0.4s ease;
}
#nav-bar {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.4em 1.2em 0.6em;
background: rgba(17,17,17,0.82);
backdrop-filter: blur(8px);
pointer-events: all;
}
#counter {
font-family: 'Barlow', sans-serif;
font-weight: 700;
font-size: 0.8rem;
color: rgba(255,255,255,0.6);
letter-spacing: 0.08em;
}
#nav-dots {
display: flex;
gap: 6px;
align-items: center;
}
.dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: rgba(255,255,255,0.25);
cursor: pointer;
transition: background 0.25s, transform 0.25s;
}
.dot.active {
background: var(--yellow);
transform: scale(1.35);
}
/* UTIL */
.tag {
display: inline-block;
background: var(--yellow-light);
border: 1px solid var(--yellow-dark);
border-radius: 4px;
padding: 0.15em 0.5em;
font-size: var(--label-size);
font-family: 'Barlow', sans-serif;
font-weight: 700;
color: var(--black);
letter-spacing: 0.05em;
}
.section-label {
font-family: 'Barlow', sans-serif;
font-weight: 800;
font-size: var(--label-size);
text-transform: uppercase;
letter-spacing: 0.15em;
color: var(--yellow-dark);
margin-bottom: 0.3em;
}
.numbered-list {
list-style: none;
padding: 0;
display: flex;
flex-direction: column;
gap: var(--element-gap);
}
.numbered-list li {
display: flex;
align-items: flex-start;
gap: 0.7em;
}
.num-badge {
flex-shrink: 0;
width: 1.6em;
height: 1.6em;
background: var(--yellow);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Barlow', sans-serif;
font-weight: 900;
font-size: var(--label-size);
color: var(--black);
}
.num-text {
font-size: var(--body-size);
color: var(--gray-text);
line-height: 1.4;
}
.highlight-box {
background: var(--yellow-light);
border-left: 4px solid var(--yellow-dark);
border-radius: 0 6px 6px 0;
padding: 0.6em 1em;
font-size: var(--body-size);
color: var(--black);
}
/* ADDITIONAL COMPONENTS FOR SLIDES 12-44 */
/* Context bar */
.ctx-bar { display: flex; height: clamp(2.2rem, 4.5vh, 3.2rem); border-radius: 6px; overflow: hidden; border: 2px solid var(--gray-mid); }
.ctx-seg { display: flex; align-items: center; justify-content: center; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: var(--label-size); padding: 0 0.8em; }
/* Permission rows */
.perm-row { display: flex; border: 1px solid var(--gray-mid); border-radius: 6px; overflow: hidden; margin-bottom: 0.32em; align-items: stretch; }
.perm-badge { font-family: 'Barlow', sans-serif; font-weight: 900; min-width: 5.5em; padding: 0.45em 0.9em; display: flex; align-items: center; justify-content: center; font-size: var(--label-size); }
.perm-badge.allow { background: #1a5c2a; color: var(--white); }
.perm-badge.ask { background: var(--yellow-dark); color: var(--black); }
.perm-badge.deny { background: var(--red); color: var(--white); }
.perm-text { padding: 0.45em 0.9em; font-size: var(--label-size); color: var(--gray-text); display: flex; align-items: center; }
/* Mode cards */
.mode-card { background: var(--gray-light); border-left: 4px solid var(--yellow); border-radius: 0 6px 6px 0; padding: 0.45em 0.9em; display: flex; gap: 0.8em; margin-bottom: 0.32em; align-items: flex-start; }
.mode-card.special { border-left-color: var(--red); }
.mode-name { font-family: 'Courier New', monospace; font-weight: 700; min-width: 8.5em; font-size: var(--label-size); color: var(--black); flex-shrink: 0; }
.mode-desc { font-size: var(--label-size); color: var(--gray-text); }
/* Priority layers */
.prio-layer { display: flex; align-items: center; border-radius: 6px; padding: 0.4em 0.9em; gap: 0.8em; margin-bottom: 0.28em; }
.prio-num { font-family: 'Barlow', sans-serif; font-weight: 900; width: 1.6em; height: 1.6em; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); flex-shrink: 0; font-size: var(--label-size); }
.prio-text { font-size: var(--small-size); }
.prio-text strong { color: inherit; }
.prio-sub { font-size: var(--label-size); opacity: 0.8; display: block; font-family: 'Courier New', monospace; margin-top: 0.1em; }
/* Bad/Good */
.bad-good { display: flex; flex-direction: column; gap: 0.32em; }
.bg-row { display: flex; gap: 0.5em; align-items: stretch; }
.bg-badge { font-family: 'Barlow', sans-serif; font-weight: 900; font-size: var(--label-size); min-width: 3.5em; padding: 0.4em 0.5em; border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.bg-badge.zle { background: var(--red-light); color: var(--red); }
.bg-badge.dobrze { background: var(--green-light); color: #2e7d32; }
.bg-text { font-family: 'Courier New', monospace; font-size: var(--label-size); background: var(--gray-light); border: 1px solid var(--gray-mid); border-radius: 4px; padding: 0.4em 0.7em; flex: 1; color: var(--black); display: flex; align-items: center; }
/* Steps */
.steps { display: flex; flex-direction: column; gap: 0.32em; }
.step { display: flex; gap: 0.7em; align-items: flex-start; }
.step-n { background: var(--black); color: var(--yellow); font-family: 'Barlow', sans-serif; font-weight: 900; width: 1.5em; height: 1.5em; min-width: 1.5em; display: flex; align-items: center; justify-content: center; border-radius: 3px; flex-shrink: 0; font-size: var(--label-size); }
.step-t { font-size: var(--small-size); color: var(--gray-text); line-height: 1.4; }
/* Compare grid */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(0.4rem, 0.9vw, 0.85rem); }
.col-box { background: var(--gray-light); border-top: 4px solid var(--gray-mid); border-radius: 0 0 6px 6px; padding: 0.7em 0.9em; }
.col-box.hi { border-top-color: var(--yellow); }
.col-box.green { border-top-color: var(--green); }
.col-box.red { border-top-color: var(--red); }
.col-box h4 { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: var(--small-size); margin-bottom: 0.3em; }
.col-box p { font-size: var(--label-size); }
.col-box ul { font-size: var(--label-size); }
.col-box li { font-size: var(--label-size); }
/* End slide */
.end-slide .main { justify-content: center; position: relative; overflow: hidden; }
.end-deco { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); font-family: 'Barlow', sans-serif; font-weight: 900; font-size: clamp(8rem, 20vw, 18rem); color: var(--yellow); opacity: 0.2; line-height: 1; pointer-events: none; user-select: none; }
.contact-names { font-family: 'Barlow', sans-serif; font-weight: 600; font-size: var(--h3-size); color: var(--black); margin-bottom: 0.5em; }
/* Sec label */
.sec-label { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: var(--label-size); text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-text); border-bottom: 2px solid var(--yellow); padding-bottom: 0.2em; margin-bottom: 0.4em; display: inline-block; }
/* Responsive */
@media (max-height: 700px) {
:root {
--title-size: clamp(1.5rem, 3.5vw, 2.8rem);
--body-size: clamp(0.75rem, 1.3vw, 1rem);
--h3-size: clamp(0.85rem, 1.6vw, 1.25rem);
}
}
@media (max-width: 600px) {
.cols-3, .cols-2, .compare { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
</style>
</head>
<body>
<div class="presentation">
<!-- SLAJD 1 — Strona tytułowa -->
<section class="slide title-slide" id="s1">
<div class="sidebar"><span class="sidebar-label">Strona tytułowa</span></div>
<div class="main">
<div class="title-deco"></div>
<div class="accent-bar"></div>
<h1 class="title-main reveal-left">Warsztaty<br>Claude Code</h1>
<div class="title-pres reveal">
<div class="pres-lbl">Prowadzący</div>
<div class="pres-names">Jakub Walczak · Karol Kasprzak · Przemysław Świda · Sylwia Rapacz</div>
</div>
</div>
</section>
<!-- SLAJD 2 — O warsztacie w wielkim skrócie -->
<section class="slide" id="s2">
<div class="sidebar"><span class="sidebar-label">O warsztacie w wielkim skrócie</span></div>
<div class="main">
<div class="slide-header">
<div class="accent-bar"></div>
<h2 class="slide-title reveal-left">O warsztacie w wielkim skrócie</h2>
</div>
<div class="slide-body stagger">
<h3 class="reveal">Cele wysokopoziomowe</h3>
<div class="cards cols-2 reveal">
<div class="card">
<div class="card-title">Możliwości i ograniczenia</div>
<p>Zrozumieć możliwości i ograniczenia Claude Code w codziennej pracy</p>
</div>
<div class="card">
<div class="card-title">Skuteczne prompty</div>
<p>Nauczyć się pisać prompty, które dają przewidywalny wynik</p>
</div>
<div class="card">
<div class="card-title">Zarządzanie kontekstem</div>
<p>Efektywnie zarządzać kontekstem i sesjami</p>
</div>
<div class="card featured">
<div class="card-title">Samodzielna implementacja</div>
<p>Samodzielnie przeprowadzić implementację z pomocą AI</p>
</div>
</div>
</div>
</div>
</section>
<!-- SLAJD 3 — Projekt szkoleniowy -->
<section class="slide" id="s3">
<div class="sidebar"><span class="sidebar-label">Projekt szkoleniowy</span></div>
<div class="main">
<div class="slide-header">
<div class="accent-bar"></div>
<h2 class="slide-title reveal-left">Projekt szkoleniowy: Kino</h2>
</div>
<div class="slide-body stagger">
<p class="reveal">Aplikacja do rezerwacji biletów — klient przegląda repertuar, wybiera miejsca na seans, system blokuje je w czasie rzeczywistym. Admin zarządza filmami, salami i seansami.</p>
<div class="cards cols-2 reveal">
<div class="card">
<div class="card-title">Backend</div>
<p>API, logika rezerwacji, blokowanie miejsc w czasie rzeczywistym, zarządzanie seansami</p>
</div>
<div class="card">
<div class="card-title">Frontend</div>
<p>Przeglądanie repertuaru, interaktywny wybór miejsc, panel admina</p>
</div>
</div>
<div class="cards cols-3 reveal">
<div class="card">
<div class="card-title">Filmy</div>
<p>Zarządzanie tytułami, opis, czas trwania</p>
</div>
<div class="card">
<div class="card-title">Sale i seanse</div>
<p>Konfiguracja sal, planowanie seansów, dostępność</p>
</div>
<div class="card featured">
<div class="card-title">Use casy</div>
<p>Opisane — część robimy razem, potem samodzielnie</p>
</div>
</div>
</div>
</div>
</section>
<!-- SLAJD 4 — Agenda — Dzień I -->
<section class="slide" id="s4">
<div class="sidebar"><span class="sidebar-label">Agenda — Dzień I</span></div>
<div class="main">
<div class="slide-header">
<div class="accent-bar"></div>
<h2 class="slide-title reveal-left">Agenda — Dzień I</h2>
</div>
<div class="slide-body stagger">
<table class="tbl reveal">
<thead>
<tr>
<th>Godzina</th>
<th>Aktywność</th>
</tr>
</thead>
<tbody>
<tr><td>9:00–9:45</td><td>Wstęp</td></tr>
<tr><td>9:45–10:00</td><td>Przerwa</td></tr>
<tr><td>10:00–11:00</td><td>Teoria cz. 1 + dyskusja</td></tr>
<tr><td>11:00–11:15</td><td>Przerwa</td></tr>
<tr><td>11:15–12:30</td><td>Teoria cz. 2 + dyskusja</td></tr>
<tr><td>12:30–13:30</td><td>Obiad</td></tr>
<tr><td>13:30–15:30</td><td>Implementacja: Feature 1</td></tr>
<tr><td>15:30–15:45</td><td>Przerwa</td></tr>
<tr><td>15:45–16:45</td><td>Testy BDD (Gherkin)</td></tr>
<tr><td>16:45–17:00</td><td>Podsumowanie</td></tr>
</tbody>
</table>
<blockquote class="reveal">Cheatsheet z komendami i skrótami rozdamy podczas wprowadzenia.</blockquote>
</div>
</div>
</section>
<!-- SLAJD 5 — Cele i plan szkolenia -->
<section class="slide" id="s5">
<div class="sidebar"><span class="sidebar-label">Cele i plan szkolenia</span></div>
<div class="main">
<div class="slide-header">
<div class="accent-bar"></div>
<h2 class="slide-title reveal-left">Cele i plan szkolenia</h2>
</div>
<div class="slide-body stagger">
<ol class="numbered-list reveal">
<li>
<span class="num-badge">1</span>
<span class="num-text">Teoria: czym jest LLM, tokenizacja, modele Claude, okno kontekstowe</span>
</li>
<li>
<span class="num-badge">2</span>
<span class="num-text">Claude Code — narzędzia, uprawnienia, bezpieczeństwo</span>
</li>
<li>
<span class="num-badge">3</span>
<span class="num-text">Podejście agentowe i pętla agentowa</span>
</li>
<li>
<span class="num-badge">4</span>
<span class="num-text">CLAUDE.md i zarządzanie kontekstem</span>
</li>
<li>
<span class="num-badge">5</span>
<span class="num-text">Techniki prompt engineeringu</span>
</li>
<li>
<span class="num-badge">6</span>
<span class="num-text">Adaptive Thinking i wybór modelu</span>
</li>
<li>
<span class="num-badge">7</span>
<span class="num-text">Plan Mode — zaawansowane planowanie</span>
</li>
<li>
<span class="num-badge">8</span>
<span class="num-text">Warsztaty praktyczne (5 ćwiczeń hands-on)</span>
</li>
</ol>
</div>
</div>
</section>
<!-- SLAJD 6 — Czym jest Claude Code -->
<section class="slide" id="s6">
<div class="sidebar"><span class="sidebar-label">Czym jest Claude Code</span></div>
<div class="main">
<div class="slide-header">
<div class="accent-bar"></div>
<h2 class="slide-title reveal-left">Czym jest Claude Code?</h2>
</div>
<div class="slide-body stagger">
<p class="reveal">Claude Code to interfejs CLI, który łączy się z modelami LLM Anthropic poprzez API. Wszystkie odpowiedzi, analiza kodu i decyzje generuje model językowy działający <strong>po stronie Anthropic</strong> — nie lokalnie.</p>
<div class="reveal" style="display:flex; gap: var(--content-gap); align-items: stretch; flex:1; min-height:0;">
<div style="display:flex; flex-direction:column; gap:0.5em; flex:1;">
<div class="card featured" style="flex:1;">
<div class="card-title">Twój komputer</div>
<p><code>claude</code> (CLI)<br>Twoje pliki<br>Komendy Bash</p>
<div style="margin-top:0.5em;">
<div class="flow" style="flex-wrap:nowrap; gap:0.2em;">
<div class="flow-box" style="font-size:var(--label-size);">Read</div>
<div class="flow-box" style="font-size:var(--label-size);">Edit</div>
<div class="flow-box" style="font-size:var(--label-size);">Bash</div>
<div class="flow-box" style="font-size:var(--label-size);">Grep</div>
<div class="flow-box" style="font-size:var(--label-size);">Glob</div>
</div>
</div>
</div>
</div>
<div style="display:flex; flex-direction:column; align-items:center; justify-content:center; gap:0.4em;">
<div style="font-size:var(--small-size); color:var(--yellow-dark); font-weight:700; text-align:center;">API call ▶</div>
<div style="width:60px; height:2px; background:var(--yellow-dark);"></div>
<div style="font-size:var(--small-size); color:var(--gray-text); text-align:center;">◀ odpowiedź</div>
</div>
<div style="display:flex; flex-direction:column; gap:0.5em; flex:1;">
<div class="card" style="flex:1; border-top-color:var(--black);">
<div class="card-title">Anthropic Cloud</div>
<p><strong>Claude LLM (myśli)</strong><br>Analizuje · Decyduje · Generuje kod</p>
</div>
</div>
</div>
<blockquote class="reveal"><strong>Bez połączenia z API</strong> Claude Code nie działa — model w chmurze jest mózgiem, CLI jest tylko interfejsem.</blockquote>
</div>
<div class="hands-on reveal">
<div class="ho-label">Hands-on</div>
<p>Uruchom <code>claude</code> w terminalu i napisz: <strong>Cześć! Przedstaw się — kim jesteś i co potrafisz?</strong></p>
</div>
</div>
</section>
<!-- SLAJD 7 — LLM -->
<section class="slide" id="s7">
<div class="sidebar"><span class="sidebar-label">LLM</span></div>
<div class="main">
<div class="slide-header">
<div class="accent-bar"></div>
<h2 class="slide-title reveal-left">Czym jest LLM?</h2>
</div>
<div class="slide-body stagger">
<div class="cards cols-3 reveal">
<div class="card">
<div class="card-title">LLM (Large Language Model)</div>
<p>Model językowy, który przewiduje kolejny fragment tekstu (token) na podstawie kontekstu. Jak T9 w starym telefonie, ale z ogromną wiedzą o języku, kodzie i logice.</p>
</div>
<div class="card">
<div class="card-title">Działanie probabilistyczne</div>
<p>Model oblicza prawdopodobieństwo każdego możliwego następnego tokenu i wybiera. Ten sam prompt może dać różne odpowiedzi.</p>
</div>
<div class="card danger">
<div class="card-title">Nie "wiedzą" — szacują</div>
<p>Gdy model nie ma dobrego kandydata, "zgaduje" — stąd halucynacje. Zawsze weryfikuj wyniki.</p>
</div>
</div>
<div class="highlight-box reveal">
<strong>Kluczowe pojęcia:</strong> Token · Prawdopodobieństwo · Kontekst · Halucynacje
</div>
<div class="reveal" style="display:flex; gap:var(--content-gap); align-items:center;">
<div style="flex:1;">
<div class="flow">
<div class="flow-box">Prompt</div>
<div class="flow-arrow">→</div>
<div class="flow-box hi">Model</div>
<div class="flow-arrow">→</div>
<div class="flow-box">P(token₁)</div>
<div class="flow-arrow">→</div>
<div class="flow-box dark">Wynik</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- SLAJD 8 — LLM -->
<section class="slide" id="s8">
<div class="sidebar"><span class="sidebar-label">LLM</span></div>
<div class="main">
<div class="slide-header">
<div class="accent-bar"></div>
<h2 class="slide-title reveal-left">Jak model przewiduje — przykłady</h2>
</div>
<div class="slide-body stagger">
<div class="cards cols-2 reveal">
<div class="card featured">
<div class="card-title">"Stolica Polski to ___"</div>
<table class="tbl" style="margin-top:0.4em;">
<thead><tr><th>Token</th><th>Prawdopodobieństwo</th></tr></thead>
<tbody>
<tr><td><strong>"Warszawa"</strong></td><td><strong>92.5%</strong></td></tr>
<tr><td>"miasto"</td><td>2.1%</td></tr>
<tr><td>"War"</td><td>1.8%</td></tr>
<tr><td>"Kraków"</td><td>0.2%</td></tr>
</tbody>
</table>
</div>
<div class="card featured">
<div class="card-title">"public static void ___"</div>
<table class="tbl" style="margin-top:0.4em;">
<thead><tr><th>Token</th><th>Prawdopodobieństwo</th></tr></thead>
<tbody>
<tr><td><strong>"main"</strong></td><td><strong>85%</strong></td></tr>
<tr><td>"run"</td><td>5%</td></tr>
<tr><td>"init"</td><td>3%</td></tr>
<tr><td>"test"</td><td>2%</td></tr>
</tbody>
</table>
</div>
</div>
<div class="highlight-box reveal">
<strong>Kod jest bardziej przewidywalny niż język naturalny</strong> — ścisła składnia, powtarzalne wzorce (try-catch, REST, testy) — stąd wysoka skuteczność LLM w programowaniu.
</div>
</div>
</div>
</section>
<!-- SLAJD 9 — LLM -->
<section class="slide" id="s9">
<div class="sidebar"><span class="sidebar-label">LLM</span></div>
<div class="main">
<div class="slide-header">
<div class="accent-bar"></div>
<h2 class="slide-title reveal-left">Knowledge cutoff</h2>
</div>
<div class="slide-body stagger">
<h3 class="reveal">Skąd model "wie" nowe rzeczy?</h3>
<div class="cards cols-3 reveal">
<div class="card">
<div class="card-title">Model zamrożony po treningu</div>
<p>Model nie uczy się z Twoich promptów ani kodu — po treningu jest "zamrożony". Inference to korzystanie z gotowego modelu, nie dalsze uczenie.</p>
</div>
<div class="card danger">
<div class="card-title">Knowledge cutoff</div>
<p>Każdy model ma datę odcięcia wiedzy:<br>Opus 4.6: maj 2025<br>Sonnet 4.6: sierpień 2025<br>Haiku 4.5: luty 2025<br><strong>Nowsze informacje = ryzyko halucynacji</strong></p>
</div>
<div class="card success">
<div class="card-title">Rozwiązania</div>
<p><strong>WebFetch</strong> — pobieranie treści z URL<br><strong>MCP</strong> — łączenie z zewnętrznymi źródłami danych</p>
</div>
</div>
<div class="reveal">
<div class="flow">
<div class="flow-box hi">Wiedza z treningu<br>(zamrożona)</div>
<div class="flow-arrow">→</div>
<div class="flow-box dark">Knowledge cutoff<br>(np. sie. 2025)</div>
<div class="flow-arrow">→</div>
<div class="flow-box" style="border-color:var(--red); background:var(--red-light);">Po dacie: halucynacje!</div>
<div class="flow-arrow">→</div>
<div class="flow-box hi">WebFetch / MCP<br>(świeże dane)</div>
</div>
</div>
</div>
<div class="hands-on reveal">
<div class="ho-label">Hands-on</div>
<p>Zapytaj Claude o coś po dacie odcięcia wiedzy, np. <strong>Jaka jest najnowsza wersja Spring Boot?</strong></p>
</div>
</div>
</section>
<!-- SLAJD 10 — LLM -->
<section class="slide" id="s10">
<div class="sidebar"><span class="sidebar-label">LLM</span></div>
<div class="main">
<div class="slide-header">
<div class="accent-bar"></div>
<h2 class="slide-title reveal-left">Tokenizacja</h2>
</div>
<div class="slide-body stagger">
<p class="reveal"><strong>Token</strong> to podstawowa jednostka tekstu dla modelu — nie zawsze równa się jednemu słowu. Tokenizer rozbija tekst na fragmenty ze swojego słownika (~100 000 tokenów):</p>
<div class="cards cols-2 reveal">
<div class="card featured">
<div class="card-title">Angielski</div>
<pre style="margin-top:0.3em; background:#1a1a2e; font-size:var(--small-size);">"authentication" → 1 token
(częste angielskie słowo)</pre>
</div>
<div class="card danger">
<div class="card-title">Polski (+70% tokenów!)</div>
<pre style="margin-top:0.3em; background:#1a1a2e; font-size:var(--small-size);">"uwierzytelniania" → 4 tokeny
(polskie słowo rozbijane na kawałki)</pre>
</div>
</div>
<div class="reveal">
<table class="tbl">
<thead>
<tr><th>Język</th><th>Tekst</th><th>Tokeny</th></tr>
</thead>
<tbody>
<tr>
<td>EN</td>
<td><code>"Create a user authentication service"</code></td>
<td><strong>~7 tokenów</strong></td>
</tr>
<tr>
<td>PL</td>
<td><code>"Stwórz serwis uwierzytelniania użytkowników"</code></td>
<td><strong>~12 tokenów (+70%!)</strong></td>
</tr>
</tbody>
</table>
</div>
<blockquote class="reveal">Tokeny to waluta LLM — za nie płacisz i one definiują limity.</blockquote>
</div>
</div>
</section>
<!-- SLAJD 11 — LLM -->
<section class="slide" id="s11">
<div class="sidebar"><span class="sidebar-label">LLM</span></div>
<div class="main">
<div class="slide-header">
<div class="accent-bar"></div>
<h2 class="slide-title reveal-left">Modele dostępne w Anthropic / Claude Code</h2>
</div>
<div class="slide-body stagger">
<table class="tbl reveal">
<thead>
<tr>
<th>Model</th>
<th>Charakterystyka</th>
<th>Knowledge cutoff</th>
<th>Input / Output (za 1M tokenów)</th>
<th>Kiedy używać</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Claude Opus 4.6</strong></td>
<td>Najbardziej zaawansowany, głęboki reasoning</td>
<td>Maj 2025</td>
<td>$5 / $25</td>
<td>Planowanie architektury, złożony debugging, code review</td>
</tr>
<tr>
<td><strong>Claude Sonnet 4.6</strong> <span class="tag">domyślny</span></td>
<td>Złoty środek: jakość + szybkość</td>
<td>Sierpień 2025</td>
<td>$3 / $15</td>
<td>Codzienna praca: coding, testy, refactoring — 80% zadań</td>
</tr>
<tr>
<td><strong>Claude Haiku 4.5</strong></td>
<td>Najszybszy i najtańszy</td>
<td>Luty 2025</td>
<td>$1 / $5</td>
<td>Boilerplate, CRUD, szybkie pytania</td>
</tr>
</tbody>
</table>
<blockquote class="reveal"><strong>Output jest ~5× droższy niż input</strong> — odpowiedź modelu kosztuje znacznie więcej niż prompt. Dlatego wybór modelu i kontrola długości odpowiedzi mają bezpośredni wpływ na koszty.</blockquote>
</div>
<div class="hands-on reveal">
<div class="ho-label">Hands-on</div>
<p>Uruchom Claude Code i wpisz <code>/model</code> — sprawdź jaki model jest aktywny. Użyj strzałek aby zobaczyć dostępne modele. Potem wpisz <code>/cost</code> — zobacz ile tokenów zużyłeś w sesji.</p>
</div>
</div>
</section>
<section class="slide" id="s12">
<div class="sidebar"><span class="sidebar-label">Okno kontekstowe</span></div>
<div class="main">
<div class="slide-header">
<div class="accent-bar"></div>
<h2 class="slide-title reveal-left">Pamięć konwersacji</h2>
</div>
<div class="slide-body stagger">
<p class="reveal" style="font-size:var(--body-size);color:var(--gray-text);margin-bottom:var(--element-gap);">
LLM jest <strong style="color:var(--black);">stateless</strong> — nie pamięta niczego między sesjami. Każde zapytanie to nowa, izolowana operacja.
<strong style="color:var(--black);">Okno kontekstowe to rozwiązanie</strong>: wszystko co Claude "pamięta" jest dosłownie zawarte w tym oknie jako ciąg tokenów.
</p>
<div class="reveal" style="background:var(--gray-light);border-radius:6px;padding:clamp(0.6rem,1.2vw,1.1rem);font-family:'Courier New',monospace;font-size:var(--small-size);margin-bottom:var(--content-gap);">
<div style="color:var(--gray-text);margin-bottom:0.5em;font-family:'Barlow';font-weight:700;font-size:var(--label-size);text-transform:uppercase;letter-spacing:0.1em;">Okno kontekstowe (~200 000 tokenów)</div>
<div style="display:grid;grid-template-columns:1fr 2fr 1.2fr;gap:0.5em;">
<div style="background:var(--yellow-light);border:1px solid var(--yellow);border-radius:4px;padding:0.6em;font-size:var(--small-size);">
<div style="font-family:'Barlow';font-weight:800;color:var(--black);margin-bottom:0.3em;">System prompt</div>
<div style="color:var(--gray-text);font-size:var(--label-size);">~7%</div>
<div style="color:var(--gray-text);font-size:var(--label-size);">CLAUDE.md</div>
<div style="color:var(--green);font-size:var(--label-size);margin-top:0.4em;">↑ zawsze na początku</div>
</div>
<div style="background:var(--white);border:1px solid var(--gray-mid);border-radius:4px;padding:0.6em;font-size:var(--small-size);">
<div style="font-family:'Barlow';font-weight:800;color:var(--black);margin-bottom:0.3em;">Messages (historia sesji)</div>
<div style="display:flex;gap:2px;margin:0.4em 0;align-items:center;">