-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
940 lines (904 loc) · 49.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TVNVGK53ZC"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-TVNVGK53ZC');
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Aviv Kandabi, Freelance Software Developer.</title>
<meta name="author" content="Aviv Kandabi" />
<meta
name="description"
content="Software Developer, I develop desktop programs, video games, web apps, servers, proficient in a variety of different languages, platforms and systems."
/>
<meta
name="keywords"
content="C#, JavaScript, CSS, HTML5, Python, Unity, Qt, Software, Web, Developer, Programmer, Freelance, Aviv, Kandabi"
/>
<meta prefix="og: https://kandabi.com/" property="og:title" content="Aviv Kandabi, Freelance Software Developer." />
<meta prefix="og: https://kandabi.com/" property="og:url" content="https://kandabi.com/" />
<meta
prefix="og: https://kandabi.com/"
property="og:description"
content="I develop desktop programs, video games, web apps, servers, proficient in a variety of different languages, platforms and systems."
/>
<meta
prefix="og: https://kandabi.com/"
property="og:image"
content="https://kandabi.com/resources/images/og_en.png"
name="image"
/>
<meta prefix="og: https://kandabi.com/" property="og:type" content="website" />
<link rel="canonical" href="https://kandabi.com/" />
<link rel="stylesheet" href="./style/swiper.min.css" />
<link rel="stylesheet" href="./style/style.css" />
<link rel="shortcut icon" href="./resources/images/favicon.ico" />
<script src="./src/lozad.min.js"></script>
<script src="./src/current-device.min.js"></script>
<script src="./src/jquery-3.5.1.min.js"></script>
<script src="./src/particles.min.js"></script>
<script src="./src/swiper.min.js"></script>
<script src="./src/script.js"></script>
<script src="./src/map.js"></script>
<script>
var isRtl = false;
var pageLanguage = 'en';
RedirectByLanguage(pageLanguage);
</script>
</head>
<body>
<div class="loader">
<video autoplay loop muted playsinline width="200" height="200">
<source src="./resources/videos/loading.webm" type="video/webm" />
<source src="./resources/videos/loading.mp4" type="video/mp4" />
</video>
</div>
<div class="body">
<div class="sidebar">
<div class="logo" value="home">
<img src="./resources/images/logo.png" alt="logo" width="80" height="31" />
</div>
<div value="phone" class="phone">
<a href="tel:+972-53-4267886">
<img src="./resources/images/phone.png" alt="phone number" width="28" height="28" />
</a>
</div>
<div class="hamburger_icon">
<img src="./resources/images/menu.png" alt="menu icon" width="28" height="28" />
</div>
<div class="menu">
<div value="home" class="item">
<img
class="icon lozad"
data-src="./resources/images/home.png"
alt="home navigation icon"
width="30"
height="30"
/>
<button class="link button">Home</button>
</div>
<div value="about" class="item">
<img
class="icon lozad"
data-src="./resources/images/about.png"
alt="about page navigation icon"
width="30"
height="30"
/>
<button class="link button">About</button>
</div>
<div value="portfolio" class="item">
<img
class="icon lozad"
data-src="./resources/images/portfolio.png"
alt="portfolio page navigation icon"
width="30"
height="30"
/>
<button class="link button">Portfolio</button>
</div>
<div value="contact" class="item">
<img
class="icon lozad"
data-src="./resources/images/email.png"
alt="contact page navigation icon"
width="30"
height="30"
/>
<button class="link button">Contact</button>
</div>
<div value="linkedin" class="item">
<img
class="icon lozad"
data-src="./resources/images/linkedin.png"
alt="linkedin profile link"
width="30"
height="30"
/>
<a href="https://www.linkedin.com/in/kandabi/" target="_blank" rel="noreferrer">
<button class="link button">Linkedin</button>
</a>
</div>
<div value="github" class="item" style="border-bottom: none">
<img
class="icon lozad"
data-src="./resources/images/github.png"
alt="github profile link"
width="30"
height="30"
/>
<a href="https://github.com/kandabi" target="_blank" rel="noreferrer">
<button class="link button">Github</button>
</a>
</div>
</div>
<div class="language_container">
<div class="lang_icon">
<img src="./resources/images/translate.png" alt="translate menu icon" width="30" height="30" />
</div>
<div class="language_dropdown">
<button class="lang_text">Language</button>
<div class="item">
<a href="./he/">עברית</a>
</div>
<div class="item">
<a href="./es/">Español</a>
</div>
<div class="item disabled">
<span>English</span>
</div>
</div>
</div>
</div>
<div class="cookie_popup">
<span>This site uses cookies to track language preferences.</span>
<button class="cookie_btn button" value="contact">Okay</button>
</div>
<div class="content home">
<div id="particles" class="particles"></div>
<div class="text-main">
<h1>Hi,</h1>
<h2>I'm <span class="A_letter">A</span>viv,</h2>
<h3>Software Developer.</h3>
</div>
<div class="text-secondary">
<span>C# | Javascript | Typescript | Node.js | React.js | Three.js | Unity | Linux</span>
</div>
<button class="contact_btn button" value="contact">Contact Me!</button>
</div>
<div class="content about">
<div class="text-main">
<h2>About Me</h2>
</div>
<div class="text-secondary">
<span>
Israeli based software developer.
<br />
<br />
I specialize in developing web apps, servers, desktop programs and video games.
<br />
Proficient in a variety of different languages, platforms and systems:
<br />
C# | Javascript | Typescript | Node.js | React.js | Three.js | Unity | Linux
<br />
<br />
I take my work very diligently, focusing on a single project at a time.
<br />
My priorities are meeting the client's needs, with a personal attention to detail.
<br />
Available 24 hours a day, commited to meeting all deadlines set - to your full satisfaction.
<br />
<br />
Fluent Hebrew, English and Spanish speaker.
<br />
<br />
I’m looking forward to working with you,
<br />
Aviv
</span>
</div>
<video autoplay loop muted playsinline>
<source src="./resources/videos/night.webm" type="video/webm" />
<source src="./resources/videos/night.mp4" type="video/mp4" />
</video>
</div>
<div class="content portfolio">
<div class="text-main">
<h2>Portfolio</h2>
</div>
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>Mixups</h2>
Developed a gaming website teaming up competitive players against one another.
<br />
<br />
Includes game servers, matchmaking, ranks, real-time chat, friends list, and social media integrations.
<br />
<br />
Written in C#, React, TypeScript, SQL Server, Linux.
<br />
<br />
<span class="project-bottom-text">Developed as a freelancer.</span>
</span>
</div>
<div value="mixups" class="project-content">
<video class="lozad" autoplay loop muted playsinline>
<source data-src="./resources/videos/mixups.webm" type="video/webm" />
<source data-src="./resources/videos/mixups.mp4" type="video/mp4" />
</video>
</div>
</div>
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>Robin</h2>
Developed a clinic management system for Chiropractors.
<br />
<br />
Includes a calendar, patient profile, billing, employee management, initial consultations and report generation.
<br />
<br />
Written in C#, React, TypeScript, SQL Server, Docker.
<br />
<br />
<span class="project-bottom-text">
Developed as a freelancer for
<a
href="https://www.lifechiropractic.co.uk/"
rel="noreferrer"
target="_blank"
value="robin"
>LifeChiro Clinic</a>.
</span>
</span>
</div>
<div value="robin" class="project-content">
<video class="lozad" autoplay loop muted playsinline>
<source data-src="./resources/videos/robin.webm" type="video/webm" />
<source data-src="./resources/videos/robin.mp4" type="video/mp4" />
</video>
</div>
</div>
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>Mrkter</h2>
Developed an online banking platform for marketing and finances operations.
<br />
<br />
Includes a dashboard, credit card, authentication, currency conversions, account systems.
<br />
<br />
Written in TypeScript, React, AWS, S3, CloudFront.
<br />
<br />
<span class="project-bottom-text">
Developed as a freelancer for
<a
href="https://mrkter.io/"
rel="noreferrer"
target="_blank"
value="mrkter"
>Mrkter</a>.
</span>
</span>
</div>
<div value="mrkter" class="project-content">
<video class="lozad" autoplay loop muted playsinline>
<source data-src="./resources/videos/mrkter.webm" type="video/webm" />
<source data-src="./resources/videos/mrkter.mp4" type="video/mp4" />
</video>
</div>
</div>
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>GopticHub</h2>
Developed an E-Commerce system for selling optical lenses.
<br />
<br />
Includes ordering lenses by specifications, billing, shipment tracking, admin dashboard and report generation.
<br />
<br />
Written in Node.js, React, GraphQL, TypeScript, PostgreSQL.
<br />
<br />
<span class="project-bottom-text">
Developed as a freelancer for
<a
href="https://goptichub.com/"
value="goptichub"
target="_blank"
rel="noreferrer"
>GopticHub</a>.
</span>
</span>
</div>
<div value="goptichub" class="project-content">
<video class="lozad" autoplay loop muted playsinline>
<source data-src="./resources/videos/gohub.webm" type="video/webm" />
<source data-src="./resources/videos/gohub.mp4" type="video/mp4" />
</video>
</div>
</div>
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>Vidget+</h2>
Snowflix’s accessibility engine, empowers people with cognitive disabilities to better engage
with Audio-Visual Content.
<br />
<br />
Written in Javascript, Threejs and WebGL.
<br />
<br />
<span class="project-bottom-text">
Developed as a freelancer for
<a
href="https://www.snowflixtv.com/"
value="vidget+"
target="_blank"
rel="noreferrer"
>SnowflixTV</a>.
</span>
</span>
</div>
<div value="vidget+" class="project-content">
<video class="lozad" autoplay loop muted playsinline>
<source data-src="./resources/videos/vidget.webm" type="video/webm" />
<source data-src="./resources/videos/vidget.mp4" type="video/mp4" />
</video>
</div>
</div>
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>Map Comparer</h2>
Developed a Side-by-side map comparison app intended to display and analyze large map files
exported using aerial footage.
<br />
<br />
Able to draw: shapes, polygons, markers and lines with automatic area measurements.
<br />
<br />
Written in Javascript and jQuery, using the Leaflet map library and hosted on Netlify.
<br />
<br />
<span class="project-bottom-text">Developed as a freelancer.</span>
</span>
</div>
<div value="map-compare" class="project-content">
<video class="lozad" autoplay loop muted playsinline>
<source data-src="./resources/videos/compare-ai.webm" type="video/webm" />
<source data-src="./resources/videos/compare-ai.mp4" type="video/mp4" />
</video>
</div>
</div>
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>Threejs Hexsnow</h2>
Developed a threejs experience for web browsers creating a Hexagon world filled with icy mountains and falling snow.
<br />
<br />
Written in Typescript, Threejs and WebGL.
<br />
<br />
<span class="project-bottom-text">
Hosted on Netlify,
<a
href="https://threejs-hexsnow.netlify.app/"
value="threejs-hexsnow"
target="_blank"
rel="noreferrer"
>Try it now</a>.
</span>
</span>
</div>
<div value="threejs-hexsnow" class="project-content">
<video class="lozad" autoplay loop muted playsinline>
<source data-src="./resources/videos/threejs-hexsnow.webm" type="video/webm" />
<source data-src="./resources/videos/threejs-hexsnow.mp4" type="video/mp4" />
</video>
</div>
</div>
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>Threejs Ocean</h2>
Developed a threejs experience for web browsers simulating the ocean sea under the night sky.
<br />
<br />
Written in Javascript, Threejs and WebGL.
<br />
<br />
<span class="project-bottom-text">
Hosted on Netlify,
<a
href="https://threejs-ocean.netlify.app/"
value="threejs-ocean"
target="_blank"
rel="noreferrer"
>Try it now</a>.
</span>
</span>
</div>
<div value="threejs-ocean" class="project-content">
<video class="lozad" autoplay loop muted playsinline>
<source data-src="./resources/videos/threejs-ocean.webm" type="video/webm" />
<source data-src="./resources/videos/threejs-ocean.mp4" type="video/mp4" />
</video>
</div>
</div>
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>Threejs Impossibox</h2>
Developed a threejs impossible box, where every side of the it displays a different scene entirely.
<br />
<br />
Written in Typescript, Threejs and WebGL.
<br />
<br />
<span class="project-bottom-text">
Hosted on Netlify,
<a
href="https://threejs-impossibox.netlify.app/"
value="threejs-impossibox"
target="_blank"
rel="noreferrer"
>Try it now</a>.
</span>
</span>
</div>
<div value="threejs-impossibox" class="project-content">
<video class="lozad" autoplay loop muted playsinline>
<source data-src="./resources/videos/threejs-impossibox.webm" type="video/webm" />
<source data-src="./resources/videos/threejs-impossibox.mp4" type="video/mp4" />
</video>
</div>
</div>
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>OpenFTP</h2>
Developed an open-source software for transferring large files between computers through the
internet in a secure and fast manner.
<br />
<br />
Written in C++, using the Qt Framework for UI, alongside OpenSSL for secure network
encryption.
<br />
<br />
<span class="project-bottom-text">
Developed as an open-source project, hosted on
<a
href="https://github.com/kandabi/OpenFTP"
value="openftp"
target="_blank"
rel="noreferrer"
>Github</a>.
</span>
</span>
</div>
<div value="openftp" class="project-content">
<video class="lozad" autoplay loop muted playsinline>
<source data-src="./resources/videos/openftp.webm" type="video/webm" />
<source data-src="./resources/videos/openftp.mp4" type="video/mp4" />
</video>
</div>
</div>
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>Flymingo Inspections</h2>
Developed a web page to display detailed information on inspection reports for an Insurance
agency.
<br />
<br />
Written in Javascript, using jQuery and hosted on Netlify.
<br />
<br />
<span class="project-bottom-text">
Developed as a freelancer,
<a
href="https://inspection-reports.netlify.app/"
value="pixel-physics-simulation"
target="_blank"
rel="noreferrer"
>
Try it out!
</a>
</span>
</span>
</div>
<div value="flymingo-inspections" class="project-content">
<img
data-src="./resources/images/flymingo-inspections.jpg"
class="lozad"
alt="megabuilding past project"
/>
</div>
</div>
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>Robin Booking Widget</h2>
Developed a booking widget for embedding on websites.
<br />
<br />
Includes clinic selection, appointment types, time slots and patient details.
<br />
<br />
Written in C#, React, TypeScript, SQL Server, Docker.
<br />
<br />
<span class="project-bottom-text">
Developed as a freelancer for
<a
href="https://www.lifechiropractic.co.uk/"
rel="noreferrer"
target="_blank"
value="robin-booking-widget"
>LifeChiro Clinic</a>.
</span>
</span>
</div>
<div value="robin-booking-widget" class="project-content">
<video class="lozad" autoplay loop muted playsinline>
<source data-src="./resources/videos/robin-booking-widget.webm" type="video/webm" />
<source data-src="./resources/videos/robin-booking-widget.mp4" type="video/mp4" />
</video>
</div>
</div>
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>Just Donate</h2>
Just Donate is an application that users can register to, and they pose challenges for
themselves in which they "bet" with their friends.
<br />
<br />
If the user fails to meet the challenge, he will contribute to an organization of his choice.
<br />
<br />
If he succeeds, his friends will contribute instead.
<br />
<br />
<span class="project-bottom-text">
Developed the application's Backend as an employee at
<a
href="https://slash.co.il/en/portfolio/development-of-challenges-and-donations-application-just-donate"
value="slashapps"
target="_blank"
rel="noreferrer"
>Slash Apps</a>.
</span>
</span>
</div>
<div value="slashapps" class="project-content">
<video class="lozad" autoplay loop muted playsinline>
<source data-src="./resources/videos/justdonate.webm" type="video/webm" />
<source data-src="./resources/videos/justdonate.mp4" type="video/mp4" />
</video>
</div>
</div>
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>Tello Drone Game</h2>
Developed an Augmented Reality drone video game, where the player is able to fly a real drone
and use it to fire virtual weapons.
<br />
<br />
The game was built using the Unity game engine for mobile devices.
<br />
<br />
In order to display the drone's footage a native rendering plugin was developed to decode the
video stream.
<br />
<br />
<span class="project-bottom-text">Developed as a freelancer.</span>
</span>
</div>
<div value="drone_game" class="project-content">
<video class="lozad" autoplay loop muted playsinline>
<source data-src="./resources/videos/drone-game.webm" type="video/webm" />
<source data-src="./resources/videos/drone-game.mp4" type="video/mp4" />
</video>
</div>
</div>
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>Threejs Wormhole</h2>
Developed a threejs based wormhole experience, meant to practice 3D development and traversal.
<br />
<br />
<span class="project-bottom-text">Developed as a hobby project.</span>
</span>
</div>
<div value="threejs-wormhole" class="project-content">
<video class="lozad" autoplay loop muted playsinline>
<source data-src="./resources/videos/wormhole-wireframe.mp4" type="video/mp4" />
</video>
</div>
</div>
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>Pixel Physics Simulation</h2>
Developed an engaging particle physics simulation, simulating how water and sand interact with
each other.
<br />
<br />
Written in C++, using olc's Pixel Game Engine.
<br />
<br />
<span class="project-bottom-text">
Developed as a hobby project, released as open-source on
<a
href="https://github.com/kandabi/Pixel-Physics-Simulation"
value="pixel-physics-simulation"
target="_blank"
rel="noreferrer"
>Github</a>.
</span>
</span>
</div>
<div value="pixel-physics-simulation" class="project-content">
<video class="lozad" autoplay loop muted playsinline>
<source data-src="./resources/videos/pixel-simulation.webm" type="video/webm" />
<source data-src="./resources/videos/pixel-simulation.mp4" type="video/mp4" />
</video>
</div>
</div>
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>Pavlovia Experiments</h2>
Developed python based web experiments, meant to test subjects memory from photographs.
<br />
<br />
<br />
<span class="project-bottom-text">
Developed as a freelancer for
<a
href="https://www.gilaie-dotan-lab.com/"
value="pavlovia-experiments"
target="_blank"
rel="noreferrer"
>Bar-Ilan University</a>.
</span>
</span>
</div>
<div value="pavlovia-experiments" class="project-content">
<video class="lozad" autoplay loop muted playsinline>
<source data-src="./resources/videos/pavlovia.mp4" type="video/mp4" />
</video>
</div>
</div>
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>Machine Learning</h2>
Developed Machine Learning based Object Detectors, able to detect people, vehicles, animals
and many different types of complex objects.
<br />
<br />
Written in C++ and Python, trained using the YOLOv4 Framework, alongside the OpenCV library
for computer vision.
<br />
<br />
<span class="project-bottom-text">Developed as a Freelancer.</span>
</span>
</div>
<div value="object_detector" class="project-content">
<video class="lozad" autoplay loop muted playsinline>
<source data-src="./resources/videos/object-detector.webm" type="video/webm" />
<source data-src="./resources/videos/object-detector.mp4" type="video/mp4" />
</video>
</div>
</div>
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>Tip Calculator</h2>
Developed a tip calculator website for the purpose of learning Angular.
<br />
<br />
Written in Angular, TypeScript, Json web server and Node.js.
<br />
<br />
<span class="project-bottom-text">
Hosted on
<a
href="https://kandabi-tip-calculator.netlify.app/"
rel="noreferrer"
target="_blank"
value="tip-calculator"
>Netlify</a>
and
<a
href="https://github.com/kandabi/tip-calculator"
rel="noreferrer"
target="_blank"
value="tip-calculator"
>Github</a>.
</span>
</span>
</div>
<div value="tip-calculator" class="project-content">
<img
data-src="./resources/images/tip-calculator.jpg"
class="lozad"
alt="tip calculator project"
/>
</div>
</div>
<div class="swiper-slide">
<div class="project-text">
<span>
<h2>Mega Building</h2>
<span class="project-bottom-text">
Developed a business website for a building maintenance company.
</span>
</span>
</div>
<div value="mega-building.co.il" class="project-content">
<img
data-src="./resources/images/mega-building.png"
class="lozad"
alt="megabuilding past project"
/>
</div>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-pagination"></div>
<div class="swiper-scrollbar"></div>
<div class="overlay"></div>
</div>
</div>
<div class="content contact">
<div class="text-main">
<h2>Contact Me</h2>
</div>
<div class="text-secondary">
<span>
I am interested in freelance work - especially for ambitious or large projects in all development fields.
<br />
<br />
I'll be happy to assist you at every step in building your dream product.
<br />
<br />
You can contact me using the form below.
</span>
</div>
<form
action="thankyou.html"
id="form"
class="form"
name="contact"
method="POST"
data-netlify="true"
netlify-honeypot="bot-field"
>
<div style="display: none" hidden aria-hidden="true">
<label>
Don’t fill this out if you're human:
<input name="bot-field" />
</label>
</div>
<div class="input_container first">
<label class="hidden" for="name">Name</label>
<input class="name" type="text" placeholder="Name" name="name" id="name" />
<span class="border"></span>
</div>
<div class="input_container second">
<label class="hidden" for="email">Email</label>
<input class="email" type="email" placeholder="Email" required name="email" id="email" />
<span class="border"></span>
</div>
<div class="input_container third">
<label class="hidden" for="subject">Subject</label>
<input type="text" placeholder="Subject" name="subject" id="subject" />
<span class="border"></span>
</div>
<div class="input_container fourth">
<label class="hidden" for="message">Message</label>
<textarea placeholder="Message" required name="message" id="message"></textarea>
<span class="border"></span>
</div>
<button class="submit_btn button" value="submit">Send</button>
</form>
<div class="map_wrapper">
<div class="address">
<span>
Aviv Kandabi
<br />
Israel
<br />
Rishon Le Zion
<br />
aviv<span style="color: #ffa838">@</span>kandabi.com
<br />
<span style="color: #ffa838">+</span>972 53-4267886
</span>
</div>
<div id="map" class="map"></div>
</div>
</div>
</div>
<footer class="footer">
<div class="footer_social">
<div value="phone" class="item">
<a href="tel:+972-53-4267886">
<img
class="icon lozad"
data-src="./resources/images/phone.png"
alt="phone number"
width="30"
height="30"
/>
</a>
</div>
<div value="linkedin" class="item">
<a href="https://www.linkedin.com/in/kandabi/" target="_blank" rel="noreferrer">
<img
class="icon lozad"
data-src="./resources/images/linkedin.png"
alt="linkedin profile link"
width="30"
height="30"
/>
</a>
</div>
<div value="facebook" class="item">
<a href="https://www.facebook.com/kandabiaviv/" target="_blank" rel="noreferrer">
<img
class="icon lozad"
data-src="./resources/images/facebook.png"
alt="facebook profile link"
width="30"
height="30"
/>
</a>
</div>
<div value="github" class="item">
<a href="https://github.com/kandabi" target="_blank" rel="noreferrer">
<img
class="icon lozad"
data-src="./resources/images/github.png"
alt="github profile link"
width="30"
height="30"
/>
</a>
</div>
</div>
<div class="footer_logo">
<img class="lozad" data-src="./resources/images/logo.png" alt="logo" width="80" height="31" />
</div>
<div class="footer_text">
<span>
© 2017 - 2021 Copyright Aviv Kandabi
<br />
<a style="color: #848484" href="./sitemap.xml">Sitemap</a>
</span>
</div>
</footer>
</body>
</html>