-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1156 lines (1108 loc) · 53.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" data-theme="corporate">
<head>
<meta charset="UTF-8" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="pragma" content="no-cache" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Greg Jasiński 👣 Resume & Portfolio</title>
<!--Preloader styles-->
<style>
#preloader {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: white;
z-index: 9999;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
align-items: center;
align-content: center;
font-weight: 100;
text-align: center;
background-color: lightgray;
}
body:not(.loaded) {
overflow: hidden;
}
body.loaded #preloader {
display: none;
}
</style>
<script type="module" crossorigin src="/assets/index-b1b16968.js"></script>
<link rel="stylesheet" href="/assets/index-c1d2d53c.css">
</head>
<body x-data="dataBody">
<div id="preloader">
<div class="animate-pulse">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" width="24" height="24" style="display: inline-block; width: 24px; height: 24px">
<path stroke-linecap="round" stroke-linejoin="round" d="M10.05 4.575a1.575 1.575 0 10-3.15 0v3m3.15-3v-1.5a1.575 1.575 0 013.15 0v1.5m-3.15 0l.075 5.925m3.075.75V4.575m0 0a1.575 1.575 0 013.15 0V15M6.9 7.575a1.575 1.575 0 10-3.15 0v8.175a6.75 6.75 0 006.75 6.75h2.018a5.25 5.25 0 003.712-1.538l1.732-1.732a5.25 5.25 0 001.538-3.712l.003-2.024a.668.668 0 01.198-.471 1.575 1.575 0 10-2.228-2.228 3.818 3.818 0 00-1.12 2.687M6.9 7.575V12m6.27 4.318A4.49 4.49 0 0116.35 15m.002 0h-.002" />
</svg>
<span style="display: block; text-align:center">loading</span>
</div>
</div>
<!--Site menu-->
<div class="fixed bottom-0 left-0 w-full bg-white/60 p-2 lg:bg-transparent lg:p-0 lg:bottom-auto lg:left-auto lg:w-auto lg:top-12 lg:right-12 z-50">
<ul class="text-center lg:text-right funky-nav">
<template x-for="navItem in navItems">
<li
class="lg:mb-2 select-none"
>
<span
class="badge-lg tracking-wide badge rounded-sm pointer-events-none lg:pointer-events-auto lg:cursor-pointer select-none"
:class="current == navItem.slug ? 'badge-outline !filter-none' : 'badge-neutral hidden lg:inline'"
@click="navClick(navItem.slug)"
x-text="navItem.name"
></span>
</li>
</template>
</ul>
</div>
<!--End: Site menu-->
<!--#1 Intro section-->
<section
x-cloak
class="container px-6 lg:px-12 mx-auto lg:snap-always lg:snap-start"
data-section-slug="intro"
data-section-name="hello there!"
>
<div
class="grid lg:pb-6 3xl:pb-12 lg:grid-rows-[1fr_auto] lg:grid-cols-[1fr] lg:h-screen"
>
<!--Presentation section-->
<div
class="mix-blend-multiply w-full h-auto absolute aspect-square top-0 left-0 -translate-y-1/2 -translate-x-1/2 flex items-center justify-center lg:top-auto lg:left-auto lg:-translate-x-0 lg:-translate-y-0 lg:relative lg:aspect-auto lg:h-auto cursor-pointer lg:col-[1_/_1]"
id="circlz_shader_container"
></div>
<!--Text under presentation section-->
<div class="lg:col-[1_/_1]">
<div class="grid lg:grid-cols-12 lg:grid-rows-1">
<!--Contact section-->
<div
class="w-full h-screen items-center justify-center lg:justify-start flex lg:h-auto lg:col-span-5 lg:items-start lg:row-start-1 lg:row-span-full lg:col-start-1 3xl:col-span-full"
style="--tw-bg-opacity: 0.01"
>
<div class="short-bio">
<div
class="flex flex-col lg:flex-row items-center gap-4 text-center lg:text-left"
>
<div class="avatar">
<div class="w-32 lg:w-24 3xl:w-32 rounded-full">
<img src="greg.jpg" class="grayscale" />
</div>
</div>
<div>
<span class="text-3xl lg:text-2xl 3xl:text-3xl block"
>GREG JASIŃSKI</span
>
<span class="uppercase text-sm lg:text-xs 3xl:text-sm block"
>PHP / JavaScript / WordPress</span
>
</div>
</div>
<div
class="flex flex-col lg:flex-row items-center gap-4 mt-12 lg:mt-6 2xl:mt-12"
>
<a href="https://resume.io/r/9YJvTE2TX" target="_blank" class="btn btn-neutral rounded-sm">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-6 h-6 mr-2"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M9 13.5l3 3m0 0l3-3m-3 3v-6m1.06-4.19l-2.12-2.12a1.5 1.5 0 00-1.061-.44H4.5A2.25 2.25 0 002.25 6v12a2.25 2.25 0 002.25 2.25h15A2.25 2.25 0 0021.75 18V9a2.25 2.25 0 00-2.25-2.25h-5.379a1.5 1.5 0 01-1.06-.44z"
/>
</svg>
Download Resume
</a>
<a
href="mailto:[email protected]"
class="btn btn-outline rounded-sm"
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-6 h-6 mr-2"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M21.75 6.75v10.5a2.25 2.25 0 01-2.25 2.25h-15a2.25 2.25 0 01-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25m19.5 0v.243a2.25 2.25 0 01-1.07 1.916l-7.5 4.615a2.25 2.25 0 01-2.36 0L3.32 8.91a2.25 2.25 0 01-1.07-1.916V6.75"
/>
</svg>
E-mail
</a>
</div>
</div>
</div>
<!--End: Contact section-->
<!--Details section-->
<div
class="w-full h-screen items-center justify-center flex lg:h-auto lg:col-span-7 lg:col-start-6 lg:items-start lg:row-start-1 3xl:col-start-5 3xl:col-span-5"
style="--tw-bg-opacity: 0.01"
>
<div class="prose font-light">
<h1 class="font-thin uppercase lg:text-3xl 3xl:text-4xl">
Hello there!
</h1>
<p id="bi-t" class="2xl:text-lg 2xl:leading-loose">
I work on implementing designs and ideas on the web. For the
past several years, I've been working with the WordPress
environment, creating plugins, themes and WooCommerce
customizations. Pleased to walk you through my gallery!
</p>
</div>
</div>
<!-- End details section-->
</div>
</div>
</div>
</section>
<!--End #1 Intro section-->
<!--#2 Animation section-->
<section
x-cloak
class="container lg:px-12 mx-auto lg:h-screen relative lg:snap-always lg:snap-start"
data-section-slug="animation"
data-section-name="visuals / motion"
>
<div class="flex flex-col lg:h-full lg:pb-6 3xl:pb-12 relative z-10">
<!--Presentation section-->
<div
class="lg:basis-full lg:shrink lg:flex lg:items-center w-full h-screen lg:h-auto overflow-hidden lg:overflow-visible p-6 lg:p-0"
>
<div class="flex lg:h-5/6 w-full lg:justify-evenly lg:items-center">
<div
data-canvas-ptack-grid
class="order-2 mix-blend-multiply h-full justify-center flex flex-col lg:flex-row relative group/ptack w-full lg:w-1/2 "
>
<div
id="visual-stack"
class="absolute aspect-square w-[92%] h-auto left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 lg:translate-x-0 lg:aspect-auto lg:left-auto lg:h-5/6 lg:w-5/6 3xl:lg:h-4/5 3xl:lg:w-4/5 flex items-center content-center object-cover mask mask-squircle z-20 bg-white scale-0 origin-center transition-all"
x-bind:class="ptackModal ? 'scale-100' : 'scale-0'"
>
<div
class="relative w-full h-full flex items-center justify-center"
>
<div
class="prose font-light text-xl text-white flex flex-col content-center justify-center items-center h-full text-center p-4"
style="--tw-prose-bold: white"
>
<p class="grid-cols-2 gap-2 p-4 grid">
<span class="text-xl text-black col-span-2 mb-4"
>Experiment with:</span
>
<span class="badge badge-ghost rounded-sm col-span-1"
>#webassembly</span
>
<span class="badge badge-ghost rounded-sm col-span-1"
>#raylib</span
>
<span class="badge badge-ghost rounded-sm">#c++</span>
<span class="badge badge-ghost rounded-sm">#blender</span>
<span class="badge badge-ghost rounded-sm">#glsl</span>
<span class="badge badge-ghost rounded-sm"
>#meshroom</span
>
<span class="badge badge-ghost rounded-sm">
<span class="lg:hidden">#claywork</span>
<span class="hidden lg:inline">#clay modelling</span>
</span>
<span class="badge badge-ghost rounded-sm"
>#photogrammetry</span
>
<span class="badge badge-ghost rounded-sm"
>#javascript</span
>
<span class="badge badge-ghost rounded-sm"
>#digitakt</span
>
</p>
</div>
</div>
</div>
<canvas
class="emscripten-ptack w-full h-auto aspect-square lg:aspect-auto lg:h-full lg:w-full object-cover mask mask-squircle relative transition-all duration-[1800ms] hide-firefox-error"
x-bind:class="music ? 'lg:rotate-90' : 'lg:rotate-0'"
id="canvas"
oncontextmenu="event.preventDefault()"
tabindex="-1"
>
</canvas>
<div
class="absolute left-1/2 -translate-x-1/2 top-[calc(100%_+_2rem)] lg:left-auto lg:top-1/2 lg:-translate-y-1/2 3xl:translate-y-0 lg:right-full z-10 3xl:top-0 3xl:left-full 3xl:right-auto"
>
<div
class="relative flex justify-center flex-row gap-x-2 lg:gap-x-0 lg:justify-normal lg:flex-col gap-y-2 3xl:flex-row 3xl:gap-y-0 3xl:gap-x-2"
>
<div
data-tip="Pump the sparks"
class="tooltip tooltip-bottom"
>
<label
class="swap mask mask-squircle bg-[#020217] text-white p-2 hover:bg-gray-700"
>
<input
type="checkbox"
x-model="music"
x-on:change.debounce="if (music==true) { $refs.musique.play() } else {$refs.musique.pause()}"
/>
<svg
class="swap-on fill-current"
xmlns="http://www.w3.org/2000/svg"
width="48"
height="48"
viewBox="0 0 24 24"
>
<path
d="M3,9H7L12,4V20L7,15H3V9M16.59,12L14,9.41L15.41,8L18,10.59L20.59,8L22,9.41L19.41,12L22,14.59L20.59,16L18,13.41L15.41,16L14,14.59L16.59,12Z"
/>
</svg>
<svg
class="swap-off fill-current"
width="48"
height="48"
viewBox="0 0 512 512"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M405.8 26.71c-.6 0-1.2.04-1.9.14v-.02c-4.3.57-11.5 2.96-19.8 8.14-11 6.9-23.9 17.74-36.1 30.46-17.9 18.53-34.5 41.27-44.2 61.27 8.8 7.4 17.9 16.4 27 26.6 8-11.2 16.5-21.1 25.2-28.6s17.3-13.3 27.7-12.8c8.8.5 16.4 5 25.4 11.5s18.7 15.3 27.9 25.7c9.5 10.7 18.5 23.1 25.4 36.5 6.4-1.6 12.8-3.7 19-6.3 1.4-31.3-11-67.8-27.4-97.29-8.6-15.55-18.3-29.15-27.1-38.99-8.7-9.84-17.4-15.57-19.7-16.17h-.1c-.4-.09-.8-.14-1.3-.14zm-236.5 24.4c-1.7-.1-8.9 2.75-16.9 10.16-8 7.4-17 18.37-25.3 30.81-7.3 11.02-14 23.32-19.3 35.32 2.4 1 4.9 2.2 7.4 3.5 10.9 5.5 23 13.4 34.8 23.2 10 8.3 19.9 17.9 28.5 28.5 2.4-4 4.8-7.9 7.3-11.7 12-18.4 24.9-34.8 37.7-46.9 3.5-3.3 6.9-6.3 10.3-8.9-5.6-9.6-12-18.69-18.8-26.85-9.4-11.3-19.3-20.84-27.8-27.41-8.6-6.56-16.5-9.63-17.9-9.73zm91.9 70.99c-3.9-.2-14.2 4.4-25.4 15s-23.5 26.1-34.9 43.6c-22 34.1-40.1 76.4-42.3 104.8 1 1.6 3.3 4.1 8.3 6.6 5.9 3 14.6 5.9 24.9 8.1 20.6 4.5 47.8 6.7 75 6.5 27.2-.1 54.5-2.7 75.4-7.3 10.4-2.3 19.3-5.2 25.5-8.3 5-2.5 7.5-4.9 8.7-6.6-3.8-37.8-25.8-78.4-50.9-109.5-12.9-15.9-26.5-29.4-38.3-38.7-11.9-9.3-22.8-14-26-14.2zm121.5 7.8c-1.4-.1-7.8 2.2-15 8.4-7.1 6.2-15.2 15.4-22.6 25.9-.8 1.1-1.6 2.3-2.4 3.5 15.8 20.3 30.5 43.9 40.3 68.9 25.8 2.1 51.4-1.5 72.9-14.6-3.4-20.8-16.9-43.4-32.4-60.9-8.4-9.5-17.3-17.6-24.9-23.1-7.7-5.5-14.8-8.1-15.9-8.1zM87.83 140.7c-1.97.2-8.68 4-15.51 12.1s-14.08 19.7-20.41 32.5c-11.24 22.7-19.25 49.8-19.64 67.9 36.77 8.2 79.03 10.5 114.73-1.8 5.1-16.9 12.7-34.5 21.8-51.6-8.6-11.7-19.2-22.7-30.3-31.8-10.8-9-22-16.3-31.4-21.1-9.41-4.7-17.66-6.4-19.25-6.2h-.02zM413.7 254.6c-6 .6-12.1.9-18.1.9.5 73.3-9 141.5-27.8 193.4 6 1.9 11.6 4.3 16.7 7.2 20.4-55.2 30-125.9 29.2-201.5zm-294.8 22c-6 .8-12 1.3-18.1 1.5 13.7 62.4 27.6 124.8 44.4 170.4 4.2-1.2 8.5-2.3 12.9-3.3 1.6-.4 3.3-.7 5-1-15.8-42.8-30.3-105.2-44.2-167.6zm252.2 32.7c-6 2.6-12.8 4.7-20.3 6.6-10.5 42.5-23.9 86-38.7 124.2 6.3.3 12.6.8 18.8 1.5 15.7-41.1 29.7-87.4 40.2-132.3zm-178 9.5c6.2 44.7 12 86.5 16.7 120.8 6-.2 12-.4 18.1-.5-4.5-32.7-10.2-74.3-16.2-117.4-6.5-.8-12.7-1.7-18.6-2.9zm86.6 5.7c-4.2.2-8.5.3-12.8.3h-5.1c.2 35.8-2 77.3-5 114.2h18.1c3-36.9 5.2-78.1 4.8-114.5zM256 457c-32 0-67.7.1-94.1 5.8-13.2 2.8-24 7.1-30.8 12.5-4.3 3.4-7.1 11.1-8.6 15.7h267c-1.5-4.6-4.3-12.3-8.6-15.7-6.8-5.4-17.6-9.7-30.8-12.5-26.4-5.7-62.1-5.8-94.1-5.8z"
/>
</svg>
</label>
</div>
<div
class="w-16 h-16 tooltip tooltip-bottom"
data-tip="Visual stack"
>
<div
class="w-full h-full p-3 mask mask-squircle bg-[#f66b6b] hover:bg-[#f66b6b]/80 cursor-pointer transition-colors"
@click.debounce.100="ptackModal = !ptackModal"
>
<div
class="w-full h-full bg-white mask mask-circle transition-all origin-center"
:class="ptackModal ? 'scale-[25%]' : 'scale-100'"
></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--End Presentation section-->
<!--Text under presentation section-->
<div class="lg:h-max h-screen px-6 lg:px-0">
<div class="grid lg:grid-cols-12 lg:grid-rows-1">
<!--Contact section-->
<div
class="hidden w-full h-screen items-center justify-center lg:justify-start lg:flex lg:h-auto lg:col-span-5 lg:items-start lg:row-start-1 lg:row-span-full lg:col-start-1 3xl:col-span-full"
style="--tw-bg-opacity: 0.01"
>
<div class="short-bio">
<div
class="flex flex-col lg:flex-row items-center gap-4 text-center lg:text-left"
>
<div class="avatar">
<div class="w-32 lg:w-24 3xl:w-32 rounded-full">
<img src="greg.jpg" class="grayscale" />
</div>
</div>
<div>
<span class="text-3xl lg:text-2xl 3xl:text-3xl block"
>GREG JASIŃSKI</span
>
<span class="uppercase text-sm lg:text-xs 3xl:text-sm block"
>PHP / JavaScript / WordPress</span
>
</div>
</div>
<div
class="flex flex-col lg:flex-row items-center gap-4 mt-12 lg:mt-6 2xl:mt-12"
>
<a href="https://resume.io/r/9YJvTE2TX" target="_blank" class="btn btn-neutral rounded-sm">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-6 h-6 mr-2"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M9 13.5l3 3m0 0l3-3m-3 3v-6m1.06-4.19l-2.12-2.12a1.5 1.5 0 00-1.061-.44H4.5A2.25 2.25 0 002.25 6v12a2.25 2.25 0 002.25 2.25h15A2.25 2.25 0 0021.75 18V9a2.25 2.25 0 00-2.25-2.25h-5.379a1.5 1.5 0 01-1.06-.44z"
/>
</svg>
Download Resume
</a>
<a
href="mailto:[email protected]"
class="btn btn-outline rounded-sm"
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-6 h-6 mr-2"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M21.75 6.75v10.5a2.25 2.25 0 01-2.25 2.25h-15a2.25 2.25 0 01-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25m19.5 0v.243a2.25 2.25 0 01-1.07 1.916l-7.5 4.615a2.25 2.25 0 01-2.36 0L3.32 8.91a2.25 2.25 0 01-1.07-1.916V6.75"
/>
</svg>
E-mail
</a>
</div>
</div>
</div>
<!--End: Contact section-->
<!--Details section-->
<div
class="w-full h-screen items-center justify-center flex lg:h-auto lg:col-span-7 lg:col-start-6 lg:items-start lg:row-start-1 3xl:col-start-5 3xl:col-span-5"
style="--tw-bg-opacity: 0.01"
>
<div class="prose font-light">
<h1 class="font-thin uppercase lg:text-3xl 3xl:text-4xl">
Visuals / Motion
</h1>
<p class="2xl:text-lg 2xl:leading-loose">
I enjoy coding motion and interactivity, especially in the
context of 3D and web games world. Though I consider this area
an experiment, I know it can bring the best of me. After
collecting enough experience, I wouldn't hesitate to steer
completely into this alley.
</p>
</div>
</div>
<!-- End details section-->
</div>
</div>
<!--End text under presentation section-->
</div>
</section>
<!--End #2 Animation section-->
<!--#3a Core WordPress section-->
<section
x-cloak
class="container px-6 lg:px-12 mx-auto lg:snap-always lg:snap-start lg:h-screen"
data-section-slug="wordpress_a"
data-section-name="wordpress experience"
>
<div class="flex flex-col lg:h-full lg:pb-6 3xl:pb-12">
<!--Presentation section-->
<div
class="lg:basis-full lg:shrink flex lg:items-center w-full h-screen lg:h-auto"
>
<div class="flex flex-col lg:flex-row lg:h-5/6 w-full justify-evenly items-center">
<div class="w-full lg:w-1/4 lg:relative order-1">
<!--animate-dragons-->
<div class="animate-dragons animate-dragon-left">
<img src="./dragon-left.svg" class="hidden lg:block opacity-[0.14]" />
<div
class="prose w-full lg:mt-4 lg:absolute lg:top-1/2 lg:left-[120%] lg:-translate-y-1/2"
x-bind:class="stackPhaze == 1 ? 'lg:block' : 'lg:hidden'"
>
<div class="flex flex-wrap gap-2 justify-start">
<span
class="bg-gray-600 text-white py-1 px-2 rounded-sm shadow-sm"
><strong class="text-white">Backend</strong></span
>
<span
class="bg-black text-white py-1 px-2 rounded-sm shadow-sm"
><strong class="text-white">PHP 7/8</strong></span
>
<span
class="bg-black text-white py-1 px-2 rounded-sm shadow-sm"
><strong class="text-white">REST API</strong></span
>
<span
class="bg-black text-white py-1 px-2 rounded-sm shadow-sm"
><strong class="text-white">WooCommerce</strong></span
>
<span
class="bg-black text-white py-1 px-2 rounded-sm shadow-sm"
><strong class="text-white">Plugin dev.</strong></span
>
<span
class="bg-black text-white py-1 px-2 rounded-sm shadow-sm"
><strong class="text-white">WPML</strong></span
>
<span
class="bg-black text-white py-1 px-2 rounded-sm shadow-sm"
><strong class="text-white">ACF</strong></span
>
<span
class="bg-black text-white py-1 px-2 rounded-sm shadow-sm"
><strong class="text-white">CF7</strong></span
>
<span
class="bg-black text-white py-1 px-2 rounded-sm shadow-sm"
><strong class="text-white">Polylang</strong></span
>
<span
class="bg-black text-white py-1 px-2 rounded-sm shadow-sm"
><strong class="text-white">Sage</strong></span
>
<span
class="bg-black text-white py-1 px-2 rounded-sm shadow-sm"
><strong class="text-white">Blade</strong></span
>
<span
class="bg-black text-white py-1 px-2 rounded-sm shadow-sm"
><strong class="text-white">Bedrock</strong></span
>
<span
class="bg-black text-white py-1 px-2 rounded-sm shadow-sm"
><strong class="text-white">Acorn</strong></span
>
</div>
</div>
</div>
<!--end animate-dragons-->
</div>
<div class="w-full lg:w-1/4 relative order-3">
<!--animate-dragons-->
<div class="animate-dragons animate-dragon-right">
<img src="./dragon-right.svg" class="hidden lg:block opacity-[0.14]" />
<div
class="prose w-full lg:mt-4 lg:absolute lg:top-1/2 lg:right-[120%] lg:-translate-y-1/2"
x-bind:class="stackPhaze == 2 ? 'lg:block' : 'lg:hidden'"
>
<div class="flex flex-wrap gap-2 justify-end">
<span class="bg-white py-1 px-2 rounded-sm shadow-sm"
><strong>Tailwind</strong></span
>
<span class="bg-white py-1 px-2 rounded-sm shadow-sm"
><strong>JavaScript</strong></span
>
<span class="bg-white py-1 px-2 rounded-sm shadow-sm"
><strong>Alpine.js</strong></span
>
<span class="bg-white py-1 px-2 rounded-sm shadow-sm"
><strong>JQuery ♥</strong></span
>
<span class="bg-white py-1 px-2 rounded-sm shadow-sm"
><strong>React basics</strong></span
>
<span class="bg-white py-1 px-2 rounded-sm shadow-sm"
><strong>CSS3</strong></span
>
<span class="bg-white py-1 px-2 rounded-sm shadow-sm"
><strong>SCSS</strong></span
>
<span class="bg-white py-1 px-2 rounded-sm shadow-sm"
><strong>HTML5</strong></span
>
<span class="bg-white py-1 px-2 rounded-sm shadow-sm"
><strong>Gutenberg</strong></span
>
<span class="bg-white py-1 px-2 rounded-sm shadow-sm"
><strong>Figma</strong></span
>
<span class="bg-white py-1 px-2 rounded-sm shadow-sm"
><strong>WebGL basics</strong></span
>
<span class="bg-white py-1 px-2 rounded-sm shadow-sm"
><strong>GLSL basics</strong></span
>
<span
class="bg-gray-600 text-white py-1 px-2 rounded-sm shadow-sm"
><strong class="text-white">Frontend</strong></span
>
</div>
</div>
</div>
<!--end animate dragons-->
</div>
<div
id="falka_shader_container"
class="w-full lg:w-1/2 h-1/4 lg:px-12 lg:translate-y-1/4 object-contain order-2"
:class="stackPhaze != 0 ? 'hide-falka' : ''"
>
<!--switcher-->
<div
class="hidden lg:block prose absolute left-1/2 -bottom-[10%] translate-y-full -translate-x-1/2 z-10"
>
<p class="font-light text-center">
<span
class="bg-[#df4c4a] text-white py-2 px-2 rounded-full inline-block cursor-pointer select-none tooltip tooltip-bottom tooltip-primary"
x-bind:data-tip="stackPhaze == 0 ? 'Backend stack' : stackPhaze == 1 ? 'Frontend stack' : stackPhaze == 2 ? 'Dragon Telepathy' : '' "
@click.debounce.50="stackPhaze = (stackPhaze + 1) % 3"
>
<span
class="block w-4 h-4 bg-white mask mask-circle"
x-show="stackPhaze == 0"
></span>
<span
class="block w-4 h-4 bg-white mask mask-square"
x-show="stackPhaze == 1"
></span>
<span
class="block w-4 h-4 bg-white mask mask-star"
x-show="stackPhaze == 2"
></span>
</span>
</p>
</div>
<!--end switcher-->
</div>
</div>
</div>
<!--End Presentation section-->
<!--Text under presentation section-->
<div class="lg:h-max h-screen">
<div class="grid lg:grid-cols-12 lg:grid-rows-1">
<!--Contact section-->
<div
class="hidden w-full h-screen items-center justify-center lg:justify-start lg:flex lg:h-auto lg:col-span-5 lg:items-start lg:row-start-1 lg:row-span-full lg:col-start-1 3xl:col-span-full"
style="--tw-bg-opacity: 0.01"
>
<div class="short-bio">
<div
class="flex flex-col lg:flex-row items-center gap-4 text-center lg:text-left"
>
<div class="avatar">
<div class="w-32 lg:w-24 3xl:w-32 rounded-full">
<img src="greg.jpg" class="grayscale" />
</div>
</div>
<div>
<span class="text-3xl lg:text-2xl 3xl:text-3xl block"
>GREG JASIŃSKI</span
>
<span class="uppercase text-sm lg:text-xs 3xl:text-sm block"
>PHP / JavaScript / WordPress</span
>
</div>
</div>
<div
class="flex flex-col lg:flex-row items-center gap-4 mt-12 lg:mt-6 2xl:mt-12"
>
<a href="https://resume.io/r/9YJvTE2TX" target="_blank" class="btn btn-neutral rounded-sm">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-6 h-6 mr-2"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M9 13.5l3 3m0 0l3-3m-3 3v-6m1.06-4.19l-2.12-2.12a1.5 1.5 0 00-1.061-.44H4.5A2.25 2.25 0 002.25 6v12a2.25 2.25 0 002.25 2.25h15A2.25 2.25 0 0021.75 18V9a2.25 2.25 0 00-2.25-2.25h-5.379a1.5 1.5 0 01-1.06-.44z"
/>
</svg>
Download Resume
</a>
<a
href="mailto:[email protected]"
class="btn btn-outline rounded-sm"
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-6 h-6 mr-2"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M21.75 6.75v10.5a2.25 2.25 0 01-2.25 2.25h-15a2.25 2.25 0 01-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25m19.5 0v.243a2.25 2.25 0 01-1.07 1.916l-7.5 4.615a2.25 2.25 0 01-2.36 0L3.32 8.91a2.25 2.25 0 01-1.07-1.916V6.75"
/>
</svg>
E-mail
</a>
</div>
</div>
</div>
<!--End: Contact section-->
<!--Details section-->
<div
class="w-full h-screen items-center justify-center flex lg:h-auto lg:col-span-7 lg:col-start-6 lg:items-start lg:row-start-1 3xl:col-start-5 3xl:col-span-5"
style="--tw-bg-opacity: 0.01"
>
<div class="prose font-light">
<h1 class="font-thin uppercase lg:text-3xl 3xl:text-4xl">
wordpress experience
</h1>
<p class="2xl:text-lg 2xl:leading-loose">
My daily WordPress diet consist of: custom theming,
plugins development, WooCommerce modifications, API
integrations, and reanimating dead code. During last year, I've worked almost exclusively
using Sage and Bedrock, and I got to like them very much.
</p>
</div>
</div>
<!-- End details section-->
</div>
</div>
</div>
</section>
<!--End #3a WordPress section-->
<!--#3b Around WordPress section-->
<section
x-cloak
class="container px-6 lg:px-12 mx-auto lg:snap-always lg:snap-start lg:h-screen"
data-section-slug="wordpress_b"
data-section-name="around wordpress"
>
<div class="flex flex-col h-full lg:pb-6 3xl:pb-12 justify-between">
<!--Presentation section-->
<div
class="basis-full grow shrink flex items-center w-full justify-center"
>
<div class="w-full flex flex-col justify-evenly h-full">
<div class="lg:carousel w-full">
<div id="item1" class="lg:carousel-item w-full flex h-screen lg:h-auto">
<div class="flex w-full flex-col items-center justify-center lg:justify-start">
<video
id="video-shpong"
src="videos/shpong.m4v"
type="video/mp4"
preload="metadata"
muted
loop
class="aspect-[644/286] w-full h-auto lg:w-1/2 lg:shrink lg:basis-1/2 object-contain rounded-sm"
></video>
<div
class="basis-auto h-auto w-full lg:basis-1/2 lg:shrink lg:w-1/2 mt-6"
>
<div class="prose font-thin max-w-none">
<p
class="tooltip text-justify"
data-tip="Made with: Gutenberg, Create Block, HTML5 Canvas, JavaScript vanille, PHP/WP Plugin"
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-6 h-6 inline align-middle animate-turntable"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M11.25 11.25l.041-.02a.75.75 0 011.063.852l-.708 2.836a.75.75 0 001.063.853l.041-.021M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9-3.75h.008v.008H12V8.25z"
/>
</svg>
<span>
Experimental HTML Canvas / Gutenberg game block for
WP. You can embed it anywhere and let your visitors
play against the computer using gamepad.
</span>
</p>
</div>
<div class="flex flex-wrap justify-start gap-1 mt-6 lg:hidden">
<span class="badge badge-neutral font-thin">Gutenberg</span>
<span class="badge badge-neutral font-thin">Create Block</span>
<span class="badge badge-neutral font-thin">HTML5 Canvas</span>
<span class="badge badge-neutral font-thin">JavaScript vaille</span>
<span class="badge badge-neutral font-thin">PHP WP Plugin</span>
</div>
</div>
</div>
</div>
<!--end item 1-->
<div id="item2" class="lg:carousel-item w-full flex h-screen lg:h-auto">
<div class="flex w-full flex-col items-center justify-center lg:justify-start">
<video
id="video-iliketurtles"
src="videos/iliketurtles.m4v"
type="video/mp4"
preload="metadata"
muted
loop
class="bg-gray-300 lg:bg-gray-200 p-1 aspect-[644/286] w-full h-auto lg:w-1/2 lg:shrink lg:basis-1/2 object-contain rounded-sm"
></video>
<div
class="basis-auto h-auto w-full lg:basis-1/2 lg:shrink lg:w-1/2 mt-6"
>
<div class="prose font-thin max-w-none">
<p>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-6 h-6 inline align-middle animate-turntable"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M11.25 11.25l.041-.02a.75.75 0 011.063.852l-.708 2.836a.75.75 0 001.063.853l.041-.021M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9-3.75h.008v.008H12V8.25z"
/>
</svg>
<span>
Experimental doodling plugin for Gutenberg editor.
P5.js served as the backbone for the project.
Implemented functionality: brush size & type, color
picker, undo & redo.
</span>
</p>
</div>
<div class="flex flex-wrap justify-start gap-1 mt-6 lg:hidden">
<span class="badge badge-neutral font-thin">P5.js</span>
<span class="badge badge-neutral font-thin">React</span>
<span class="badge badge-neutral font-thin">Gutenberg</span>
<span class="badge badge-neutral font-thin">JavaScript</span>
<span class="badge badge-neutral font-thin">WP plugin</span>
</div>
</div>
</div>
</div>
<!--end item 2-->
</div>
<!--end carousel-->
<div
class="justify-center w-full py-2 gap-2 z-20 relative hidden lg:flex"
x-data="{currentSlide: 1}"
>
<a
href="#item1"
class="btn btn-sm 3xl:btn-md rounded-md"
x-bind:class="currentSlide == 1 ? 'btn-outline': 'btn-neutral'"
@click="currentSlide = 1;"
>WP Shpong</a
>
<a
href="#item2"
class="btn btn-sm 3xl:btn-md rounded-md"
x-bind:class="currentSlide == 2 ? 'btn-outline': 'btn-neutral'"
@click="currentSlide = 2;"
>WP Insta Doodle</a
>
</div>
</div>
</div>
<!--End Presentation section-->
<!--Text under presentation section-->
<div class="basis-[min-content]">
<div class="grid lg:grid-cols-12 lg:grid-rows-1">
<!--Contact section-->
<div
class="hidden w-full h-screen items-center justify-center lg:justify-start lg:flex lg:h-auto lg:col-span-5 lg:items-start lg:row-start-1 lg:row-span-full lg:col-start-1 3xl:col-span-full"
style="--tw-bg-opacity: 0.01"
>
<div class="short-bio">
<div
class="flex flex-col lg:flex-row items-center gap-4 text-center lg:text-left"
>
<div class="avatar">
<div class="w-32 lg:w-24 3xl:w-32 rounded-full">
<img src="greg.jpg" class="grayscale" />
</div>
</div>
<div>
<span class="text-3xl lg:text-2xl 3xl:text-3xl block"
>GREG JASIŃSKI</span
>
<span class="uppercase text-sm lg:text-xs 3xl:text-sm block"
>PHP / JavaScript / WordPress</span
>
</div>
</div>
<div
class="flex flex-col lg:flex-row items-center gap-4 mt-12 lg:mt-6 2xl:mt-12"
>
<a href="https://resume.io/r/9YJvTE2TX" target="_blank" class="btn btn-neutral rounded-sm">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-6 h-6 mr-2"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M9 13.5l3 3m0 0l3-3m-3 3v-6m1.06-4.19l-2.12-2.12a1.5 1.5 0 00-1.061-.44H4.5A2.25 2.25 0 002.25 6v12a2.25 2.25 0 002.25 2.25h15A2.25 2.25 0 0021.75 18V9a2.25 2.25 0 00-2.25-2.25h-5.379a1.5 1.5 0 01-1.06-.44z"
/>
</svg>
Download Resume
</a>
<a
href="mailto:[email protected]"
class="btn btn-outline rounded-sm"
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-6 h-6 mr-2"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M21.75 6.75v10.5a2.25 2.25 0 01-2.25 2.25h-15a2.25 2.25 0 01-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25m19.5 0v.243a2.25 2.25 0 01-1.07 1.916l-7.5 4.615a2.25 2.25 0 01-2.36 0L3.32 8.91a2.25 2.25 0 01-1.07-1.916V6.75"
/>
</svg>
E-mail
</a>
</div>
</div>
</div>
<!--End: Contact section-->
<!--Details section-->
<div
class="w-full h-screen items-center justify-center flex lg:h-auto lg:col-span-7 lg:col-start-6 lg:items-start lg:row-start-1 3xl:col-start-5 3xl:col-span-5"
style="--tw-bg-opacity: 0.01"
>
<div class="prose font-light">
<h1 class="font-thin uppercase lg:text-3xl 3xl:text-4xl">
around wordpress
</h1>
<p class="2xl:text-lg 2xl:leading-loose">
I tend to think in terms of images and motion. Not a
particularly useful skill when faced with a hole in a business
app, but maybe the Force knows better? These types of things
I've enjoyed coding most.
</p>
</div>
</div>
<!-- End details section-->
</div>
</div>
</div>
</section>
<!--End #3b Around WordPress section-->
<!--#4 Two of us section-->
<section
x-cloak
class="container px-6 lg:px-12 mx-auto lg:snap-always lg:snap-start lg:h-screen"
data-section-slug="two_of_us"
data-section-name="the two of us"
>
<!--Presentation section-->
<div class="basis-full h-screen lg:h-full flex items-center w-full gap-x-4 lg:gap-x-10">
<div class="w-1/2 drop-grande-left">
<video
id="video-rico-left"
src="videos/riconaplazy.m4v"
type="video/mp4"
preload="metadata"
muted
loop
class="h-full w-full aspect-square object-contain rounded-md filter-helena clip-rico-glasses"
></video>
</div>
<div class="w-1/2 drop-grande-right">
<video
id="video-rico-right"
src="videos/riconaplazy.m4v"
type="video/mp4"
preload="metadata"
muted
loop
class="h-full w-full aspect-square object-contain rounded-md -scale-x-[1] filter-inkwell clip-rico-glasses"
></video>
</div>
</div>
<!--End Presentation section-->
</section>
<!--End #4 Two of us section-->
<!--#4 Life skills section-->
<section
x-cloak
class="container px-6 lg:px-12 mx-auto lg:snap-always lg:snap-start lg:h-screen"
data-section-slug="life"
data-section-name="life skills"
>
<div class="flex flex-col h-full lg:pb-6 3xl:pb-12">
<!--Presentation section-->
<div class="basis-full shrink flex items-center w-full">
<div class="flex w-full justify-center">
<div class="overflow-x-auto w-full lg:w-3/4 3xl:w-3/6">
<!--Leadership-->
<div class="chat chat-start">
<div class="chat-image avatar">
<div class="w-5 h-5 lg:w-10 lg:h-10 rounded-full bg-gray-300 aspect-square mask mask-circle">
</div>
</div>
<div class="chat-bubble">More of a supporter personality. Successfully plays second fiddle.</div>
<div class="chat-header opacity-50">
Leadership
</div>
</div>
<!--Perseverance-->
<div class="chat chat-start">
<div class="chat-image avatar">
<div class="w-5 h-5 lg:w-10 lg:h-10 rounded-full bg-gray-300 aspect-square mask mask-circle">
</div>
</div>
<div class="chat-bubble">Truly committed to work, even if no clear goal is set.</div>
<div class="chat-header opacity-50">
Perseverance
</div>
</div>