-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1336 lines (1265 loc) · 40.1 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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Yaroslav Nesterov - Android Developer</title>
<link rel="icon" type="image/x-icon" href="./favicon.ico">
<style type="text/css">
@font-face {
font-family: fixedsys;
src: url("./retrowave/fixedsys.ttf");
}
html, body {
padding: 0px;
margin: 0px;
background-color: #000000;
font-family: arial;
overflow-x: hidden;
font-family: fixedsys;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
-ms-user-select: none;
}
img {
-webkit-user-drag: none;
}
::-webkit-scrollbar {
display: none;
}
* {
box-sizing: content-box;
}
a {
text-decoration: none;
}
canvas {
width: 100%;
image-rendering: optimizeSpeed; /* Older versions of FF */
image-rendering: -moz-crisp-edges; /* FF 6.0+ */
image-rendering: -webkit-optimize-contrast; /* Safari */
image-rendering: -o-crisp-edges; /* OS X & Windows Opera (12.02+) */
image-rendering: pixelated; /* Awesome future-browsers */
-ms-interpolation-mode: nearest-neighbor;
}
.underlayer_box {
top: 0;
margin: auto;
}
.layer_box {
top: 0;
margin: auto;
mix-blend-mode: exclusion;
}
.layer {
width: 440px;
height: 411px;
/*mix-blend-mode: exclusion; doesn't work in Safari for nested element*/
}
#content {
display: none;
}
#volume_box {
width: 40px;
height: 128px;
border: 2px #550055 solid;
box-shadow: 0 0 0 1px #ff00ff;
border-radius: 0px;
margin: 16px;
overflow: hidden;
background-color: #550055;
z-index: 1;
cursor: ns-resize;
position: absolute;
right: 0;
filter: opacity(0.5);
}
#volume_box:hover {
filter: opacity(1);
}
#volume_track_line {
width: 4px;
height: 92px;
background-color: #ff00ff;
border-radius: 0px;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
opacity: 0.0; /* эхх */
}
#volume_track {
width: 100%;
/*height: 80px; in html attribute*/
position: absolute;
background-color: #ff00ff;
margin: 0 auto;
bottom: 0;
left: 0;
right: 0;
border-radius: 0px;
}
#volume_track img {
width: 24px;
height: 24px;
position: absolute;
left: 0;
top: 8px;
right: 0;
margin: auto;
}
#header {
height: 450px;
position: relative;
text-align: center;
}
.center_box {
display: flex;
justify-content: center;
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
#sky {
width: 100%;
height: 100%;
left: 0;
top: 0;
right: 0;
bottom: 0;
margin: auto;
}
#firmament {
width: 100%;
height: 100%;
left: 0;
top: 0;
right: 0;
bottom: 0;
margin: auto;
position: absolute;
mix-blend-mode: exclusion;
background: radial-gradient(farthest-corner at 50% 100%, rgba(0, 80, 128, 0.5), rgba(0, 80, 128, 0.5) 30%, rgba(0, 0, 0, 0.5)), url("./retrowave/noise.svg");
filter: contrast(2) brightness(50%);
opacity: 0.5;
}
#canvas_ground {
background: radial-gradient(circle at 50% 0%, rgba(255, 0, 255, 0.05), rgba(255, 0, 255, 0.025));
/*background: radial-gradient(farthest-corner at 50% 100%, rgba(50, 0, 50, 0.5), rgba(25, 0, 25, 0.5) 50%, rgba(10, 0, 10, 0.5)), url("./retrowave/noise.svg");
filter: contrast(2);*/
margin-bottom: -4px;
}
#ground_fog {
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(180deg, rgba(25, 0, 25, 0.5) 0%, rgba(255, 0, 255, 0.0) 50%);;
}
@keyframes blink {
0% {
color: rgba(255, 255, 255, 1);
}
50% {
color: rgba(255, 255, 255, 0);
}
100% {
color: rgba(255, 255, 255, 1);
}
}
@-webkit-keyframes blink {
0% {
color: rgba(255, 255, 255, 1);
}
50% {
color: rgba(255, 255, 255, 0);
}
100% {
color: rgba(255, 255, 255, 1);
}
}
.blinking {
-moz-transition: all 1s ease-in-out;
-webkit-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
-ms-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
-moz-animation: blink normal 1s infinite ease-in-out; /* Firefox */
-webkit-animation: blink normal 1s infinite ease-in-out; /* Webkit */
-ms-animation: blink normal 1s infinite ease-in-out; /* IE */
animation: blink normal 1s infinite ease-in-out; /* Opera */
}
#progress_box {
width: 298px;
border: 1px #ff00ff solid;
margin-left: auto;
margin-right: auto;
padding: 0px 16px 16px 16px;
}
#progress_title {
color: white;
font-size: 32px;
background-color: black;
position: relative;
top: -20px;
left: -8px;
padding: 0px 8px;
}
#progress_bar tr td {
width: 40px;
height: 20px;
background-color: black;
border-top: 2px black solid;
border-bottom: 2px black solid;
}
#start_button {
cursor: pointer;
visibility: hidden;
border: 1px #ff00ff solid;
right: 0;
margin-left: auto;
}
#start_button_text {
background-color: #ff00ff;
font-size: 24px;
padding: 8px 16px 8px 16px;
}
#start_button_text:hover {
background-color: black;
color: #ff00ff;
}
.headline {
background-color: black;
font-size: 24px;
color: white;
}
.secondary {
color: #aaa;
}
.social_button {
position: relative;
width: 48px;
height: 48px;
background-color: black;
display: inline-block;
border: 1px black solid;
border-bottom: 1px #ff00ff solid;
cursor: pointer;
}
.social_button:hover {
border: 1px #ff00ff solid;
}
.social_button img {
width: 24px;
height: 24px;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
margin: auto;
}
.tab {
padding: 8px;
background-color: black;
color: white;
border: 1px solid black;
border-bottom: 1px solid #ff00ff;
display: inline-block;
}
.tab div {
display: flex;
align-items: center;
justify-content: center;
}
.tab:hover {
border: 1px solid #ff00ff;
cursor: pointer;
}
.tab_selected {
border: 1px solid #ff00ff;
}
.tab_selected:hover {
border: 1px solid #ff00ff;
}
.tab .tab_title {
vertical-align: middle;
display: none;
}
.tab_selected .tab_title {
display: inline-block;
margin-left: 6px;
}
.emoji {
font-family: arial;
}
.text-line {
background-color: black;
}
.wrapped {
white-space: normal;
}
.page {
color: white;
display: none;
}
.page_selected {
display: block;
}
.vline {
position: relative;
bottom: -5px;
}
.arrow {
position: relative;
right: -8px;
top: -5px;
z-index: 1;
}
.pet_lang {
background-color: black;
margin-top: 8px;
display: inline-block;
position: absolute;
padding: 2px 0px;
}
.pet_lang div {
color: white;
display: flex;
align-items: center;
justify-content: center;
}
.pet_lang img {
margin-left: 4px;
}
.pet_link_buttons {
text-align: right;
margin-top: 8px;
}
.pet_link_button {
background-color: black;
border: 1px solid black;
border-bottom: 1px solid #ff00ff;
display: inline-block;
}
.pet_link_button div {
color: white;
display: flex;
align-items: center;
justify-content: center;
}
.pet_link_button:hover {
cursor: pointer;
border: 1px solid #ff00ff;
}
</style>
</head>
<body>
<div id="volume_box">
<div id="volume_track_line"></div>
<div id="volume_track" style="height: 80px">
<img id="volume_icon" src="./retrowave/volume-off.png" />
</div>
</div>
<div id="content">
<div id="header">
<div class="center_box">
<canvas id="zero2_canvas" width=1280 height=720 style="width: 800px; height: 450px;"></canvas>
</div>
<div id="firmament" class="center_box"></div>
<div id="sky" class="center_box">
<canvas id="canvas_sky"></canvas>
</div>
<div class="center_box underlayer_box">
<img id="avaBlack" class="layer" src="./retrowave/red.png" style="filter: brightness(0);" />
</div>
<div class="center_box layer_box">
<img id="avaRed" class="layer" src="./retrowave/red.png" />
</div>
<div class="center_box layer_box">
<img id="avaGreen" class="layer" src="./retrowave/green.png" />
</div>
<div class="center_box layer_box">
<img id="avaBlue" class="layer" src="./retrowave/blue.png" />
</div>
<div class="center_box">
<img src="./retrowave/mnts.png" width="1000" height="206" />
</div>
<div id="title" style="position: absolute; color: white; padding: 16px; text-align: left;">
<span id="name" style="font-size: 24px;"></span>
<br>
<span id="vocation" style="font-size: 16px; line-height: 24px;"></span>​<span id="cursor" class="blinking" style="display: none; font-weight: bold;">█</span>
</div>
</div>
<div>
<canvas id="canvas_ground" style="position: absolute; width: 100%;"></canvas>
<div id="ground_fog"></div>
<div style="position: absolute; max-width: 460px; left: 0; right: 0; margin: auto; padding-top: 8px; white-space: nowrap; overflow-x: scroll;">
<div class="tab tab_selected">
<div>
<img src="./retrowave/icons/account-box.svg" />
<span class="tab_title">About me</span>
</div>
</div>
<div class="tab">
<div>
<img src="./retrowave/icons/flipper.svg" />
<span class="tab_title">img2fbm</span>
</div>
</div>
<div class="tab">
<div>
<img src="./retrowave/icons/file-seeker.svg" />
<span class="tab_title">File Seeker</span>
</div>
</div>
<div class="tab">
<div>
<img src="./retrowave/icons/wifi-seeker.svg" />
<span class="tab_title">WiFi Seeker</span>
</div>
</div>
<div class="tab">
<div>
<img src="./retrowave/icons/smile.svg" />
<span class="tab_title">Diary</span>
</div>
</div>
<div class="tab">
<div>
<img src="./retrowave/icons/insets.svg" />
<span class="tab_title">Insets</span>
</div>
</div>
<div class="tab">
<div>
<img src="./retrowave/icons/adb.svg" />
<span class="tab_title">adb-ext</span>
</div>
</div>
<div class="page page_selected">
<font size="+1"> </font>
<font class="arrow">↑</font><font class="text-line vline">┃</font>
<font class="arrow">↑</font><font class="text-line vline">┃</font>
<font class="arrow">↑</font><font class="text-line vline">┃</font>
<font class="arrow">↑</font><font class="text-line vline">┃</font>
<font class="arrow">↑</font><font class="text-line vline">┃</font>
<font class="arrow">↑</font><font class="text-line vline">┃</font>
<br>
<font class="text-line"><font size="+1">My pet projects</font> ━━┻━━━━━┻━━━━━┻━━━━━┻━━━━━┻━━━━━┛</font>
<br><br><br>
<span class="headline">Contacts</span>
<br><br>
<a href="https://t.me/atomofiron">
<div class="social_button">
<img src="./retrowave/socials/telegram.svg" />
</div>
</a>
<a href="https://t.me/anarchdev">
<div class="social_button">
<img src="./retrowave/socials/horn.svg" />
</div>
</a>
<div class="social_button" onclick="copyContact('atomofiron#5236')">
<img src="./retrowave/socials/discord.svg" />
</div>
<a href="https://twitter.com/atomofiron">
<div class="social_button">
<img src="./retrowave/socials/twitter.svg" />
</div>
</a>
<a href="https://github.com/atomofiron">
<div class="social_button" onclick="copy">
<img src="./retrowave/socials/github-circle.svg" />
</div>
</a>
<div class="social_button" onclick="copyContact('[email protected]')">
<img src="./retrowave/socials/email.svg" />
</div>
<a href="https://ru.linkedin.com/in/atomofiron">
<div class="social_button">
<img src="./retrowave/socials/linkedin-box.svg" />
</div>
</a>
<a href="https://play.google.com/store/apps/developer?id=Yaroslav+Nesterov">
<div class="social_button">
<img src="./retrowave/socials/google-play.svg" />
</div>
</a>
<br><br><br>
<span class="headline">Languages and libs I use:</span>
<br><br>
<font class="text-line wrapped">
Kotlin <span class="secondary">- Material, Dagger 2, Coroutines, Room, AndroidX (preference & datastore, lifecycle, navigation), Compose, Picasso, Retrofit (OkHttp), Leak Canary, Play Core, Insets</span>
<br><br>
Rust <span class="secondary">- clap, rayon, nix, image, regex, indicatif, svg</span>
<br><br>
Java<span class="emoji">🦖</span>, Bash<span class="emoji">☠️</span>, JavaScript<span class="emoji">💩</span>
</font>
<br><br><br>
<span class="headline">My work environment:</span>
<br><br>
<font class="text-line wrapped">
• Manjaro Linux & Windows 11 LTSC <span class="secondary">on PC</span>
<br>
• Macbook Pro 14" <span class="secondary">(2021, M1 Pro)</span>
<br>
• Macbook Pro 13" <span class="secondary">(2016, dualboot with Kali Linux)</span>
</font>
<br><br><br>
<span class="headline">I perform at meetups</font>
<br><br>
<iframe width="220" height="105" frameBorder="0" src="https://youtube.com/embed/-WQyzIKPUqA" allowfullscreen></iframe>
<iframe width="220" height="105" frameBorder="0" src="https://youtube.com/embed/dN25q1tFamo" allowfullscreen></iframe>
</div>
<br><br>
<div class="page">
<span class="headline">Image to Flipper Animation converter</span>
<br>
<div class="pet_lang">
<div>
Lang: Rust<img src="./retrowave/icons/rust.svg" />
</div>
</div>
<div class="pet_link_buttons">
<div class="pet_link_button">
<a href="https://github.com/Atomofiron/img2fbm">
<div>
<img src="./retrowave/socials/github-circle.svg" />
Repository
<img src='./retrowave/icons/follow-outside.svg' />
</div>
</a>
</div>
</div>
<video width="460" height="222" preload="none" controls style="background-color: black;" loop="" playsmuted="" muted="" [muted]="'muted'">
<source type="video/mp4" src="https://user-images.githubusercontent.com/14147217/255355638-59cbb785-d17d-46e0-a8fe-b8a8210959ec.mp4">
</video>
<span style="font-size: 0"></span>
<br>
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/a29d019b-a75c-407d-b957-3228ffdac3af height=64 alt=yuno-whisper />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/5a5f8b1f-a6a6-4f21-8c67-09d4f9a73753 height=64 alt=yuno-whisper_preview />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/efc04271-4cea-4a58-878a-38c83db58200 height=64 alt=yuno-eyes />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/a2160d4e-5e24-414e-8a72-fc67b410df87 height=64 alt=yuno-eyes_preview />
<br>
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/006bea7f-bde2-4ca1-9236-7538c226da87 height=64 alt=yuno-shoot />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/f9160543-3abd-4916-a8cc-ea93033f7589 height=64 alt=yuno-shoot_preview />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/8b384c08-77b3-4e98-8d77-a5c77bce5e89 height=64 alt=yuno-shadow />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/c00d93e3-27e3-43a1-bf87-e11bb1bbba36 height=64 alt=yuno-shadow_preview />
<br>
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/e25a9657-52d9-4440-8287-da271b10a8d2 height=64 alt=yuno-run />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/fa408c48-f6c2-4b90-99b3-d0466ad54a56 height=64 alt=yuno-run_preview />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/f0377d75-ab9c-466c-ac1a-5356fbee23eb height=64 alt=yuno-mysterious />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/db4df409-013d-4e21-8638-73045bb65841 height=64 alt=yuno-mysterious_preview />
<br>
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/b1877adc-9a84-49da-ad55-6ffd3eb2f532 height=64 alt=yuno-knife />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/f2b1d1dc-4fd8-47da-8a48-98557b4f0159 height=64 alt=yuno-knife_preview />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/b2546d3e-0c0d-4254-bc99-82a747374d3a height=64 alt=yuno-katana />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/708cb70a-7c62-4b86-a584-308234174a08 height=64 alt=yuno-katana_preview />
<br>
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/b945a37b-1cc6-4d8c-b38d-7aa34e4cdb6d height=64 alt=yuno-heh />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/4ddae3cf-505a-4767-ad1b-ff51bb7617ca height=64 alt=yuno-heh_preview />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/af9dd5fc-0344-453f-8b5a-db7973acced3 height=64 alt=yuno-final />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/5e239de0-cb5b-4570-825c-1907c6ea7c9a height=64 alt=yuno-final_preview />
<br>
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/326055d9-20f3-494f-a246-fe333ba7aea0 height=64 alt=yuno-fight />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/bda9d394-2043-43df-928b-c12a0d3540de height=64 alt=yuno-fight_preview />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/ad108e71-7cc6-4395-a82a-6b20bcb085df height=64 alt=yuno-crying />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/71f62107-5164-43c5-8620-ebe7f00b0a5e height=64 alt=yuno-crying_preview />
<br>
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/1065cd48-1374-4877-a646-1b608b5cc34e height=64 alt=yuno-confused />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/fc92e7fd-ea35-4e2d-8080-415372ff732c height=64 alt=yuno-confused_preview />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/a3bb221b-80ff-4816-a769-3394a1bd0368 height=64 alt=yuno-axe />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/cb9fd2fe-2e16-493f-ab42-049e36279318 height=64 alt=yuno-axe_preview />
<br>
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/cbbbed4e-eacd-47bf-8c6d-3e7e7d57539c height=64 alt=yuno-afraid />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/b6ccf9b0-0824-444d-9983-c952218a3778 height=64 alt=yuno-afraid_preview />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/4cffb737-c60d-413f-b23a-32abcd06ce8f height=64 alt=yuno-shooting />
<img src=https://github.com/Atomofiron/img2fbm/assets/14147217/8c9b2f13-5d29-4edb-ac07-9ad4f23a9a5c height=64 alt=yuno-shooting_preview />
</div>
<div class="page">
<span class="headline">Tree file manager</span>
<br>
<div class="pet_lang">
<div>
Lang: Kotlin<img src="./retrowave/icons/kotlin.svg" />
</div>
</div>
<div class="pet_link_buttons">
<div class="pet_link_button">
<a href="https://play.google.com/store/apps/details?id=app.atomofiron.searchboxapp">
<div>
<img src="./retrowave/socials/google-play.svg" />
Google Play
<img src='./retrowave/icons/follow-outside.svg' />
</div>
</a>
</div>
<div class="pet_link_button">
<a href="https://github.com/Atomofiron/android-search-box-app">
<div>
<img src="./retrowave/socials/github-circle.svg" />
Repository
<img src='./retrowave/icons/follow-outside.svg' />
</div>
</a>
</div>
</div>
<br>
<div style="white-space: nowrap; overflow-x: scroll;">
<img height=640 src="https://play-lh.googleusercontent.com/1X3XF7HCZPMgH4t9fWUOrbbglHhh0YrB35OV3BQdYed00sdlIGUBfGC49M7n-7BsU0hx=h1280-rw" />
<img height=640 src="https://play-lh.googleusercontent.com/yydVZk4XxV7Xr20i-5UnlWy-pHIhRmvXLdCIf_Iq8PqDt_5lEuIVgOzso6_bAjmhmw=h1280-rw" />
<img height=640 src="https://play-lh.googleusercontent.com/B-imDxNu_dYGTcQks3yiSfK4m4YUHiv7oGic7JFQ-waRKzma6CYBzM6UrCgmoCcDNA=h1280-rw" />
<img height=640 src="https://play-lh.googleusercontent.com/rY2heHuc6hSqpb9eGzqEwBQmkCrZqidwwLGi_ia2plIYJCiVSBiut_pHRQP-86mLTE0i=h1280-rw" />
<img height=640 src="https://play-lh.googleusercontent.com/Ycu8dNg-WTNme68kpjiVLH_aQl_iKGIRPNvC7vVw_nBArT4X_RiR1FBpqhacNm8NTQ=h1280-rw" />
<img height=640 src="https://play-lh.googleusercontent.com/YEy30bo0yJ-A2wnrjLAQx9YlwbzkXARy8ySqChoDXDLpjIwgvIfxlhNXGlIOX10NKpEr=h1280-rw" />
<img height=640 src="https://play-lh.googleusercontent.com/yjntGWQ0Tqdx4n46hco7elBtVBp9jj4enRV3CxlAsXCN0Zamk3OqfPyUfP3tor40NA=h1280-rw" />
<img height=640 src="https://play-lh.googleusercontent.com/7NQyBvhhtnVv62yDApz9q_V2lIoozZpmO3nLZQPENtrDWQ0JSb4d1zfh1tBhvHPSfhQ=h1280-rw" />
<img height=640 src="https://play-lh.googleusercontent.com/4KmzfJudkiqS9E3q-HNkiUG1_ceWtJ_br2q6IsnJYLrAJxbW2LGdc7SEIfbtYff2Pv_N=h1280-rw" />
<img height=640 src="https://play-lh.googleusercontent.com/7uOY5YJFpuzAIOatzwp5zu9vrPXSyMLDZqrpTTDQ08mps8RiMB83s1ZYWTVe9e3Myg=h1280-rw" />
<img height=640 src="https://play-lh.googleusercontent.com/sXyBg9oPa0cn5DI8fBkZcmCmmXzhYKkCk2IKtXW6eUOk3VC348ucPdCC5f1rGTa3OW6K=h1280-rw" />
<img height=640 src="https://play-lh.googleusercontent.com/SP5rABnEOD4MEDhUvW5vKkW_V45PqSv6oNFFcWgI1z-OrKL7INxUGu1QXDq0MDzJoNM=h1280-rw" />
<img height=640 src="https://play-lh.googleusercontent.com/gS1IfFYdKME5Pemur3HsiznpxWy-6uKzFFqYvcIZCY9PLREoWv1a3xo1yUiXni6SNtQ=h1280-rw" />
</div>
</div>
<div class="page">
<span class="headline">WiFi scanner</span>
<br>
<div class="pet_lang">
<div>
Lang: Kotlin<img src="./retrowave/icons/kotlin.svg" />
</div>
</div>
<div class="pet_link_buttons">
<div class="pet_link_button">
<a href="https://play.google.com/store/apps/details?id=ru.raslav.wirelessscan">
<div>
<img src="./retrowave/socials/google-play.svg" />
Google Play
<img src='./retrowave/icons/follow-outside.svg' />
</div>
</a>
</div>
<div class="pet_link_button">
<a href="https://github.com/atomofiron/android-wifi-seeker">
<div>
<img src="./retrowave/socials/github-circle.svg" />
Repository
<img src='./retrowave/icons/follow-outside.svg' />
</div>
</a>
</div>
</div>
<br>
<div style="white-space: nowrap; overflow-x: scroll;">
<img width=320 src='https://play-lh.googleusercontent.com/KXSwoi3iw2SXdIkK2QacCP5PbdpkjNBK-M73xXdi5cpMb5bwJCVbZ5E8n5YSZM7fsus=w2560-h1440-rw' />
<img width=320 src='https://play-lh.googleusercontent.com/gyMPT2Vl5ALHToVVQLxBNAkKimuQnUP132LzSeaqO5S3XiVvq2iQnBjmRFoBLcvzrvI=w2560-h1440-rw' />
<img height=320 src='https://play-lh.googleusercontent.com/6hrSc1gvHnNGT06F1JsNnLW0xkV7PxUzzd8b_tFqzzSOGxW3btUvGZ2BCtQGsEZVkIZR=w2560-h1440-rw' />
</div>
</div>
<div class="page">
<span class="headline">Your feelings diary</span>
<br>
<div class="pet_lang">
<div>
Lang: Kotlin<img src="./retrowave/icons/kotlin.svg" />
</div>
</div>
<div class="pet_link_buttons">
<div class="pet_link_button">
<a href="https://play.google.com/store/apps/details?id=io.sergiolabs.feelingsdiary">
<div>
<img src="./retrowave/socials/google-play.svg" />
Google Play
<img src='./retrowave/icons/follow-outside.svg' />
</div>
</a>
</div>
</div>
<br>
</div>
<div class="page">
<span class="headline">Android extentet window insets</span>
<br>
<div class="pet_lang">
<div>
Lang: Kotlin<img src="./retrowave/icons/kotlin.svg" />
</div>
</div>
<div class="pet_link_buttons">
<div class="pet_link_button">
<a href="https://github.com/atomofiron/android-extended-insets">
<div>
<img src="./retrowave/socials/github-circle.svg" />
Repository
<img src='./retrowave/icons/follow-outside.svg' />
</div>
</a>
</div>
</div>
<br>
<video width="460" height="327" preload="none" controls style="background-color: black;" loop="" playsmuted="" muted="" [muted]="'muted'">
<source type="video/mp4" src="https://github.com/atomofiron/android-extended-insets/assets/14147217/2369db1d-566e-4b4d-9b90-9fae9e97c2d9">
</video>
</div>
<div class="page">
<span class="headline">ADB console tool</span>
<br>
<div class="pet_lang">
<div>
Lang: Rust<img src="./retrowave/icons/rust.svg" />
</div>
</div>
<div class="pet_link_buttons">
<div class="pet_link_button">
<a href="https://github.com/atomofiron/adb-ext">
<div>
<img src="./retrowave/socials/github-circle.svg" />
Repository
<img src='./retrowave/icons/follow-outside.svg' />
</div>
</a>
</div>
</div>
<br>
<img width=460 src="https://user-images.githubusercontent.com/14147217/270132662-aeef69e9-41d0-47ee-8744-35d170ce707a.png">
</div>
</div>
</div>
</div>
<div id="progress_box_overlay" style="display: table; position: absolute; top: 0; left: 0; height: 100%; width: 100%;">
<div style="display: table-cell; vertical-align: middle;">
<div id="progress_box">
<span id="progress_title">Loading…</span>
<br>
<table id="progress_bar" cellspacing="0" cellpadding="0" style="border: 1px #ff00ff solid; padding-right: 2px;">
<tr id="progress_row"></tr>
</table>
<br>
<table id="start_button">
<tr>
<td id="start_button_text">Continue</td>
</tr>
</table>
</div>
</div>
</div>
<script type="text/javascript">
const poop = console.log
function get(id) {
return document.getElementById(id)
}
function getByClass(id) {
return document.getElementsByClassName(id)
}
HTMLCollection.prototype.indexOf = function(el) {
for (let i = 0; i < this.length; i++) {
if (this[i] === el) return i
}
}
const px = 'px'
function noPx(value) {
let str = value.endsWith(px) ? value.substring(0, value.length - 2) : value
return (str.length == 0) ? 0 : parseInt(str)
}
let userAgent = navigator.userAgent
const isIPhone = userAgent.includes("iPhone")
const imgs = document.getElementsByTagName("img")
for (let img of imgs) {
img.draggable = false
}
let links = document.getElementsByTagName('a')
for (let a of links) {
a.target = '_blank'
}
const groundCanvas = document.getElementById("canvas_ground")
const ground = groundCanvas.getContext("2d")
const skyCanvas = document.getElementById("canvas_sky")
const sky = skyCanvas.getContext("2d")
const pixelRatio = window.devicePixelRatio
const lineWidthMin = 0.5 * pixelRatio
const lineWidthMax = 4 * pixelRatio
const hLineWidthMax = lineWidthMax * 2
const hLineCount = 25
let vLineCount = 30
const zeroTwoCanvas= get("zero2_canvas")
const zeroTwoCtx = zeroTwoCanvas.getContext("2d");
const tanLimit = Math.PI / 2
let time = 0
function updateLinesCount() {
vLineCount = window.innerWidth * pixelRatio / 100
vLineCount = vLineCount | 0
vLineCount += vLineCount % 2
}
document.onresize = updateLinesCount
window.onresize = updateLinesCount
updateLinesCount()
function drowVerticalLines() {
const groundWidth = groundCanvas.width
const groundHeight = groundCanvas.height
const hStep = groundWidth / vLineCount
const centerX = groundWidth / 2
const lineWidthMaxHalf = lineWidthMax / 2
ground.beginPath()
for (let x = hStep / 2; x < groundWidth - hStep / 4; x += hStep) {
let dif = centerX - x
let lineWidth = Math.max(lineWidthMin * 2, Math.abs(dif) / centerX * lineWidthMax)
dif *= Math.abs(dif) / hStep + 5
let x2 = x - dif
ground.moveTo(x, 0)
ground.lineTo(x + lineWidth, 0)
ground.lineTo(x2 + lineWidthMaxHalf, groundHeight)
ground.lineTo(x2 - lineWidthMaxHalf, groundHeight)
ground.fill()
}
}
function drowHorizontalLines() {
const groundWidth = groundCanvas.width
const groundHeight = groundCanvas.height
ground.lineWidth = lineWidthMax / 2
ground.beginPath()
ground.moveTo(0, 0)
ground.lineTo(groundWidth, 0)
ground.stroke()
const yOffset = 50
for (let i = 0; i < hLineCount * 2; i++) {
let arg = time
arg += (i + 1) * tanLimit / hLineCount / 2
arg %= tanLimit
let y = Math.tan(arg) * 50 - yOffset
if (y < 0 || y > groundHeight) continue
y = y|0 + 0.5
const lineWidth = hLineWidthMax * (y / groundHeight)
ground.lineWidth = Math.max(lineWidthMin, lineWidth)
ground.beginPath()
ground.moveTo(0, y)
ground.lineTo(groundWidth, y)
ground.stroke()
}
}
function drawWorld() {
const windowWidth = window.innerWidth * pixelRatio
const windowHeight = window.innerHeight * pixelRatio
groundCanvas.width = windowWidth
groundCanvas.height = windowHeight
const skyHeight = skyCanvas.clientHeight * pixelRatio
skyCanvas.width = windowWidth
skyCanvas.height = skyHeight
ground.lineCap = 'round'
ground.strokeStyle = '#ff00ff'
ground.fillStyle = '#ff00ff'
drowVerticalLines()
drowHorizontalLines()
drawStars()
time += Math.PI / 3000
time %= tanLimit
}
const stars = [ ]
const starCount = 300
const maxLight = "rgb(255 255 255)"
for (let i = 0; i < starCount; i++) {
stars.push(null)
let j = stars.length * Math.random()
j |= 0
stars[i] = stars[j]
stars[j] = [ i, Math.sqrt(Math.random()) ]
}
function drawStars() {
const skyWidth = skyCanvas.width
const skyHeight = skyCanvas.height
if (skyHeight <= 0) return
sky.lineWidth = lineWidthMin
let dx = 0
for (let i = 0; i < stars.length; i++) {
dx += skyWidth / stars.length
if (Math.abs(dx - skyWidth / 2) < 100) {
continue // make the center clean
}
const star = stars[i]
let arg = time
arg += star[0] * tanLimit / starCount
arg %= tanLimit
let y = Math.tan(arg ) * 50
let y2 = Math.tan(arg - 0.02 - 0.02 * star[1]) * 50 - 1
if (y2 > skyHeight) continue
const lineWidth = lineWidthMax * (y / skyHeight)
sky.lineWidth = Math.max(lineWidthMin, lineWidth)
let dy = y - y2
if (dy < 4) {
let alpha = Math.round(Math.pow(1.0 - Math.cos(Math.min(y - y2, 4.0) / 4.0 * Math.PI / 2.0), 2) * 100.0)
sky.strokeStyle = "rgb(255 255 255 / " + alpha + "%)"
} else {
sky.strokeStyle = maxLight
}
y += skyHeight * star[1]
y2 += skyHeight * star[1]
if (y2 > skyHeight) continue
drawStar(dx, y, y2, skyWidth, skyHeight)
}
}
function drawStar(dx, y, y2, skyWidth, skyHeight) {
let x = dx + skyWidth / stars.length
let x2 = x
x += (x - skyWidth / 2) * (y / skyHeight)
x2 += (x2 - skyWidth / 2) * (y2 / skyHeight)
sky.beginPath()
sky.moveTo(x, skyHeight - y)
sky.lineTo(x2, skyHeight - y2)
sky.stroke()
}
const avaBlack = get("avaBlack")
const avaRed = get("avaRed")
const avaGreen = get("avaGreen")
const avaBlue = get("avaBlue")
const trembling = 5
let disappearance = 1 // 10
let maxTranslation = 20
let intensitySecuence = 0
let intensityStep = Math.PI / 30
let deviationRed = 0
let deviationGreen = 0
let deviationBlue = 0
let desortingInterval = 0
let oneWay = false
let disortingStarterInterval = 0
let probability = 0.5
function startDisorting(anyWay) {
if (anyWay != true) {
const yes = Math.random() < probability
if (yes) probability /= 2
else {
probability += Math.min(0.3, (1 - probability) / 2)
return
}
}
clearInterval(desortingInterval)
intensitySecuence = 0
const deviation = Math.PI * 2 * Math.random()
if (oneWay) {
deviationRed = 0
deviationGreen = 0
deviationBlue = Math.PI
} else {
deviationRed = deviation
deviationGreen = deviationRed + Math.PI * 2 / 3
deviationBlue = deviationRed + Math.PI * 4 / 3
}
desortingInterval = setInterval(distortPicture, 16)
}
function distortPicture() {
const r = oneWay ? Math.min(Math.PI / 2, intensitySecuence) : intensitySecuence
intensitySecuence += intensityStep
if (intensitySecuence > Math.PI) {
intensitySecuence = 0
clearInterval(desortingInterval)
avaRed.style.transform = ''
avaGreen.style.transform = ''
avaBlue.style.transform = ''
if (oneWay) {
zeroTwoElsePicture(true)