-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
908 lines (799 loc) · 46 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
<!DOCTYPE html>
<html lang="fa">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title> Omid Sotooni | امید ستونی</title>
<meta name="description" content="سایت شخصی امید ستونی | در این جا سعی میکنم تجربه هایم در حوزه کامپیوتر را بنویسم">
<meta name="author" content="Omid Sotooni" />
<!-- Favicons -->
<link href="Content/img/favicon.png" rel="icon">
<link href="Content/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="Content/vendor/aos/aos.css" rel="stylesheet">
<link href="Content/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="Content/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="Content/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="Content/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="Content/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="Content/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="Content/css/style.css" rel="stylesheet">
</head>
<body>
<!-- ======= Mobile nav toggle button ======= -->
<!-- <button type="button" class="mobile-nav-toggle d-xl-none"><i class="bi bi-list mobile-nav-toggle"></i></button> -->
<i class="bi bi-list mobile-nav-toggle d-xl-none"></i>
<!-- ======= Header ======= -->
<header id="header" class="d-flex flex-column justify-content-center">
<nav id="navbar" class="navbar nav-menu">
<ul>
<li><a href="#hero" class="nav-link scrollto active"><i class="bi bi-house-door"></i> <span>Home</span></a></li>
<li><a href="#about" class="nav-link scrollto"><i class="bi bi-person"></i> <span>About</span></a></li>
<li><a href="#resume" class="nav-link scrollto"><i class="bi bi-file-earmark-text"></i> <span>Resume</span></a>
</li>
<li><a href="#skills" class="nav-link scrollto"><i class="bi bi-lightning"></i> <span>Skills</span></a></li>
<li><a href="#services" class="nav-link scrollto"><i class="bi bi-server"></i> <span>Services</span></a></li>
<!-- <li><a href="#team" class="nav-link scrollto"><i class="bi bi-people"></i> <span>Team</span></a></li> -->
<li><a href="#certifications" class="nav-link scrollto"><i class="bi bi-patch-check"></i><span>Certifications</span></a></li>
<li><a href="#contact" class="nav-link scrollto"><i class="bi bi-envelope"></i> <span>Contact</span></a></li>
</ul>
</nav><!-- .nav-menu -->
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex flex-column justify-content-center">
<div class="container" data-aos="zoom-in" data-aos-delay="100">
<h1>Omid Sotooni</h1>
<p>I'm <span class="typed"
data-typed-items="Software Engineer, Delving into Machine Learning, Full Stack Developer (.Net), Freelancer"></span>
</p>
<div class="social-links">
<a href="https://www.linkedin.com/in/omidsotooni/" target="_blank" class="linkedin"><i
class="bx bxl-linkedin"></i></a>
<a href="https://github.com/omidsotooni/" target="_blank" class="github"><i class="bx bxl-github"></i></a>
<a href="https://gitlab.com/sotooni" target="_blank" class="gitlab"><i class="bx bxl-gitlab"></i></a>
</div>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>About Me</h2>
<p>I like programming and programmers</p>
</div>
<div class="row">
<div class="col-lg-8 pt-4 pt-lg-0 content">
<h3>Software Development Engineer & Delving into Machine Learning.</h3>
<p class="fst-italic">
Life is too short to do the things you don't love doing. "Bruce Dickinson"
</p>
<div class="row">
<div class="col-lg-6">
<ul>
<li><i class="bi bi-chevron-right"></i> <strong>Birthday:</strong> <span>October 5, 1994</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Website:</strong> <span> <a
href="https://omidsotooni.github.io/" target="_blank">omidsotooni.github.io</a></span></li>
<!-- <li><i class="bi bi-chevron-right"></i> <strong>Phone:</strong> <span>+123 456 7890</span></li> -->
<li><i class="bi bi-chevron-right"></i> <strong>City:</strong> <span>Mashhad, Iran</span></li>
</ul>
</div>
<div class="col-lg-6">
<ul>
<!-- , Decision Science & Knowledge Engineering -->
<li><i class="bi bi-chevron-right"></i> <strong>Studying:</strong> <span>Computer Science</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>1st-Email:</strong> <span>mr.sotooni@yahoo.com</span>
</li>
<li><i class="bi bi-chevron-right"></i> <strong>2nd-Email:</strong>
<span>omid.sotooni7@gmail.com</span>
</li>
</ul>
</div>
</div>
<p>
<b> Everybody have to know programming, I believe the future of world will be coding and nothing else!</b>
<br />Dynamic and results-oriented Software Development Engineer with a proven history of crafting and
maintaining sophisticated projects across diverse sectors such as cryptocurrency, e-commerce, and
management solutions. Proficient in both front-end and back-end development, specializing in ASP.NET Core,
Angular, and blockchain technologies. Skilled in requirement analysis, solution implementation, and system
optimization to drive superior performance. Committed to continuous learning and staying abreast of
emerging technologies and industry best practices.
</p>
</div>
<div class="col-lg-4">
<img src="Content/img/profile-img.jpg" class="img-fluid" alt="">
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Facts Section ======= -->
<!-- <section id="facts" class="facts">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Facts</h2>
<p>This is Heading and should be change . . .</p>
</div>
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="count-box">
<i class="bi bi-emoji-smile"></i>
<span data-purecounter-start="0" data-purecounter-end="232" data-purecounter-duration="1" class="purecounter"></span>
<p>Happy Clients</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-md-0">
<div class="count-box">
<i class="bi bi-journal-richtext"></i>
<span data-purecounter-start="0" data-purecounter-end="521" data-purecounter-duration="1" class="purecounter"></span>
<p>Projects</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="bi bi-headset"></i>
<span data-purecounter-start="0" data-purecounter-end="1463" data-purecounter-duration="1" class="purecounter"></span>
<p>Hours Of Support</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="bi bi-award"></i>
<span data-purecounter-start="0" data-purecounter-end="25" data-purecounter-duration="1" class="purecounter"></span>
<p>Awards</p>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Facts Section -->
<!-- ======= Resume Section ======= -->
<section id="resume" class="resume">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Resume</h2>
<p>Growing up, I have discovered over time, is rather like housework, never finished. - Lois McMaster Bujold
</p>
</div>
<div class="row">
<div class="col-lg-6">
<h3 class="resume-title">Sumary</h3>
<div class="resume-item pb-0">
<h4>Omid Sotooni</h4>
<p><em>Experienced and results-driven Senior .NET Developer with a proven track record in developing and
maintaining complex projects in the cryptocurrency, e-commerce, and management solutions domains.
Skilled in both front-end and back-end development, with expertise in ASP.NET Core, Angular, and
blockchain technologies. Adept at analyzing requirements, implementing solutions, and optimizing
system performance. Committed to staying updated with emerging technologies and best practices.</em>
<br />
Top skills: Microservice, Docker, RabbitMQ, Blockchain (Ethereum, Bitcoin), Hangfire, REST APIs, Git,
Websocket • C#, SQL, .NET Framework, .NET Core, ASP.NET Core, EF Core, LINQ • ML, Artificial
Intelligence (AI), Blockchain Service, Analysis • Microsoft SQL Server, My SQL, PostgreSQL, MongoDB,
Redis • HTML5, Angular, CSS3, JS, JQuery, Bootstrap, Search Engine Optimization (SEO)
</p>
<ul>
<li>Mashhad, Khorasan, Iran</li>
<li>omid.sotooni7@gmail.com</li>
</ul>
</div>
<h3 class="resume-title">Education</h3>
<div class="resume-item">
<h4>Master of Computer Science | Decision Science & Knowledge Engineering</h4>
<h5>2021 - Present</h5>
<p><em>Hakim Sabzevari University</em></p>
<p></p>
</div>
<div class="resume-item">
<h4>Bachelor of Computer Science</h4>
<h5>2014 - 2018</h5>
<p><em>University of Birjand</em></p>
<p>Strive for a better life.</p>
</div>
</div>
<div class="col-lg-6">
<h3 class="resume-title">Professional Experience</h3>
<div class="resume-item">
<h4>Senior Software Development Engineer</h4>
<h5>May 2023 - Present</h5>
<p><em><a href="hhttps://heilton.com/" target="_blank">Heilton Co </a>Mashhad, Razavi Khorasan, Iran ·
Full-time Remote</em></p>
Development and maintenance of the Green Change (GC) project, a cryptocurrency payment solution involving
transactions and communication with exchanges and financial brokers.
<ul>
<li>Implemented and developed exchange rates</li>
<li>Implemented and developed oa Crypto transaction analysis project for Crypto Payments</li>
</ul>
Technologies used: Microservices, Docker, RabbitMQ, .NET Core, .NET Framework, Microsoft SQL Server,
MongoDB, Redis, REST APIs, Git, LINQ, Job Scheduling (Hangfire), Websocket, Webhook, HTML5, CSS3, JQuery.
</div>
<div class="resume-item">
<h4>Senior Software Development Engineer</h4>
<h5>Jun 2022 - Apr 2023</h5>
<p><em><a href="https://yesnapars.com/" target="_blank">Yesnapars </a> · Full-time</em></p>
YesnaPars is a company that provide technology-based management solutions for ministries and large
organizations.
<ul>
<li>Contributed as a Full Stack .NET Core Developer to develop technology-based management solutions for
ministries and large organizations</li>
<li>Conducted analysis, development, and implementation, including SEO optimization</li>
<li>Design and SEO YesnaPars site</li>
</ul>
Technologies used: ASP.NET Core, Angular, Microsoft SQL Server, Entity Framework and Entity Framework (EF)
Core, Language Integrated Query (LINQ), HTML5, CSS3, JS, Bootstrap.
</div>
<div class="resume-item">
<h4>Software Development Engineer</h4>
<h5>Jun 2021 - Jun 2022</h5>
<p><em><a href="http://ecom.padide.com/" target="_blank">Ecom Padide (Tejarat Electronic Padide) </a> ·
Full-time</em></p>
Padideh Kish E-Commerce Company is a subsidiary of Padideh Holding, which focuses on blockchain services
and related technologies and developing office software fo Padideh Holding.
<ul>
<li>Played a key role as a Back-End .NET Core Developer in developing blockchain and CRM projects</li>
<li>Conducted analysis, design, and development, focusing on high-transaction volume systems</li>
<li>Blockchain Services, launching and improving the performance of full nodes on BTC-based and
ETH-based</li>
<li>Blockchain · Smart Contracts · Blockchain Services · React JS, Node JS · Ethereum · Bitcoin ·
Dogecoin, DASH, Litecoin · Cryptocurrency · Cryptocurrency Exchange Platforms</li>
</ul>
Technologies used: ASP.NET Core, PostgreSQL, Entity Framework Core, REST APIs, React JS, Node JS,
Blockchain Services
</div>
<div class="resume-item">
<h4>Self-employed</h4>
<h5>Mar 2021 - Nov 2021</h5>
<p><em><a href="https://atashgahacademy.com/" target="_blank">Atashgah Academy</a> · Remote</em></p>
Provided web development and SEO expertise remotely (SEO Expert)
<ul>
<li>
Reviewing Asp.Net MVC and Learning about .Net Core
</li>
</ul>
Technologies used: WordPress and SEO · Search Engine Optimization (SEO) · HTML5, CSS3, JS, Bootstrap ·
Asp.Net MVC, .Net Core, EF Core.
<p><em><a href="https://online.sarayemodares.ir/" target="_blank">Sarayemodares</a> · Remote</em></p>
<h5>Mar 2021 - Sep 2021</h5><br />
Web developer, SEO expert and design online webinar for <a href="https://online.sarayemodares.ir/"
target="_parent">Sarayemodares</a>
<ul>
<li>
Reviewing Asp.Net MVC and Learning about .Net Core
</li>
</ul>
Technologies used: Search Engine Optimization (SEO) · WordPress and SEO · WordPress Design · HTML5, CSS3,
JS, Bootstrap · Asp.Net MVC, .Net Core, EF Core
</div>
<div class="resume-item">
<h4>Junior Software Engineer</h4>
<h5>Jan 2016 - Jun 2019</h5>
<p><em><a href="https://heilton.com/" target="_blank">Heilton Co</a> · Part-time</em></p>
Contributed to various development projects, including content management systems and online webinar
sites.
Managed multiple websites and provided education for programming users and admin in https://heilton.com
website.
Manages websites, blogger and education for https://t.me/HeiltonProgramming users.
<br />Technologies used: WordPress, ASP.NET Framework, ASP.NET MVC, SQL, SQL Server, Search Engine
Optimization (SEO), HTML5, CSS3, JS, Bootstrap.<br />
<p><em><a href="https://controlkaran.ir/" target="_blank">Control Karan(Electronic online shop)</a> ·
Part-time</em></p>
<h5>Nov 2018 - Jun 2019</h5><br />
Provided web development and SEO expertise remotely, contributing to electronic online shops and legal
websites.
<br />Technologies used: WordPress, Search Engine Optimization (SEO), HTML5, CSS3, JS, Bootstrap.
</div>
</div>
</div>
</section><!-- End Resume Section -->
<!-- ======= Skills Section ======= -->
<section id="skills" class="skills section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Skills</h2>
<p>Maybe I don't remember them all of them now! But when I used them, I tried to be my best.</p>
</div>
<div class="row skills-content">
<div class="col-lg-6">
<div class="progress">
<span class="skill">ASP.NET Web Form, ASP.NET MVC, Dotnet Core, C#.Net <i class="val">85%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Sql Server, MySQL, PostgreSQL <i class="val">75%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Blockchain Services Development (Ethereum, Bitcoin)<i class="val">75%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Microservice, Docker and RabbitMQ<i class="val">60%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Windows Server and Linux <i class="val">55%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="55" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="progress">
<span class="skill">SEO, WordPress/CMS <i class="val">80%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">HTML, CSS, Java Script, Jquery <i class="val">75%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Hangfire, REST APIs, Websocket, Git <i class="val">70%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Artificial Intelligence (AI), ML, Python<i class="val">70%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">MongoDB and Redis <i class="val">60%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Skills Section -->
<!-- ======= Portfolio Section ======= -->
<!-- <section id="portfolio" class="portfolio section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Portfolio</h2>
<p>This is Heading and should be change . . .</p>
</div>
<div class="row">
<div class="col-lg-12 d-flex justify-content-center" data-aos="fade-up" data-aos-delay="100">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-app">App</li>
<li data-filter=".filter-card">Card</li>
<li data-filter=".filter-web">Web</li>
</ul>
</div>
</div>
<div class="row portfolio-container" data-aos="fade-up" data-aos-delay="200">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="Content/img/portfolio/portfolio-1.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>App 1</h4>
<p>App</p>
<div class="portfolio-links">
<a href="Content/img/portfolio/portfolio-1.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="App 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" class="portfolio-details-lightbox" data-glightbox="type: external" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="Content/img/portfolio/portfolio-2.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Web 3</h4>
<p>Web</p>
<div class="portfolio-links">
<a href="Content/img/portfolio/portfolio-2.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Web 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" class="portfolio-details-lightbox" data-glightbox="type: external" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="Content/img/portfolio/portfolio-3.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>App 2</h4>
<p>App</p>
<div class="portfolio-links">
<a href="Content/img/portfolio/portfolio-3.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="App 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" class="portfolio-details-lightbox" data-glightbox="type: external" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="Content/img/portfolio/portfolio-4.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Card 2</h4>
<p>Card</p>
<div class="portfolio-links">
<a href="Content/img/portfolio/portfolio-4.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Card 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" class="portfolio-details-lightbox" data-glightbox="type: external" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="Content/img/portfolio/portfolio-5.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Web 2</h4>
<p>Web</p>
<div class="portfolio-links">
<a href="Content/img/portfolio/portfolio-5.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Web 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" class="portfolio-details-lightbox" data-glightbox="type: external" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="Content/img/portfolio/portfolio-6.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>App 3</h4>
<p>App</p>
<div class="portfolio-links">
<a href="Content/img/portfolio/portfolio-6.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="App 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" class="portfolio-details-lightbox" data-glightbox="type: external" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="Content/img/portfolio/portfolio-7.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Card 1</h4>
<p>Card</p>
<div class="portfolio-links">
<a href="Content/img/portfolio/portfolio-7.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Card 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" class="portfolio-details-lightbox" data-glightbox="type: external" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="Content/img/portfolio/portfolio-8.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Card 3</h4>
<p>Card</p>
<div class="portfolio-links">
<a href="Content/img/portfolio/portfolio-8.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Card 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" class="portfolio-details-lightbox" data-glightbox="type: external" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="Content/img/portfolio/portfolio-9.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Web 3</h4>
<p>Web</p>
<div class="portfolio-links">
<a href="Content/img/portfolio/portfolio-9.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Web 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" class="portfolio-details-lightbox" data-glightbox="type: external" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Portfolio Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Services</h2>
<p>Here are the services I offer:</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<div class="icon-box iconbox-blue">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5"
d="M300,521.0016835830174C376.1290562159157,517.8887921683347,466.0731472004068,529.7835943286574,510.70327084640275,468.03025145048787C554.3714126377745,407.6079735673963,508.03601936045806,328.9844924480964,491.2728898941984,256.3432110539036C474.5976632858925,184.082847569629,479.9380746630129,96.60480741107993,416.23090153303,58.64404602377083C348.86323505073057,18.502131276798302,261.93793281208167,40.57373210992963,193.5410806939664,78.93577620505333C130.42746243093433,114.334589627462,98.30271207620316,179.96522072025542,76.75703585869454,249.04625023123273C51.97151888228291,328.5150500222984,13.704378332031375,421.85034740162234,66.52175969318436,486.19268352777647C119.04800174914682,550.1803526380478,217.28368757567262,524.383925680826,300,521.0016835830174">
</path>
</svg>
<i class="bx bxl-dribbble"></i><i class="bi bi-code-slash"></i>
</div>
<h4><a href="">Software Development</a></h4>
<p>I specialize in developing scalable and efficient software solutions tailored to your business needs.
With a solid foundation in various programming languages and frameworks, I design and implement robust
applications that meet the highest standards of performance, security, and usability.</p>
<p>My approach to software development involves a meticulous process of requirements gathering,
architecture design, coding, testing, and deployment. By following agile methodologies, I ensure
flexibility and adaptability throughout the development lifecycle, allowing for quick iterations and
seamless integration of feedback.</p>
<p>Whether it's front-end, back-end, or full-stack development, I leverage cutting-edge technologies and
best practices to deliver solutions that drive innovation and business growth. From enterprise-level
software systems to small-scale applications, I'm committed to delivering excellence and exceeding
client expectations.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-md-0" data-aos="zoom-in"
data-aos-delay="200">
<div class="icon-box iconbox-orange">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5"
d="M300,582.0697525312426C382.5290701553225,586.8405444964366,449.9789794690241,525.3245884688669,502.5850820975895,461.55621195738473C556.606425686781,396.0723002908107,615.8543463187945,314.28637112970534,586.6730223649479,234.56875336149918C558.9533121215079,158.8439757836574,454.9685369536778,164.00468322053177,381.49747125262974,130.76875717737553C312.15926192815925,99.40240125094834,248.97055460311594,18.661163978235184,179.8680185752513,50.54337015887873C110.5421016452524,82.52863877960104,119.82277516462835,180.83849132639028,109.12597500060166,256.43424936330496C100.08760227029461,320.3096726198365,92.17705696193138,384.0621239912766,124.79988738764834,439.7174275375508C164.83382741302287,508.01625554203684,220.96474134820875,577.5009287672846,300,582.0697525312426">
</path>
</svg>
<i class="bx bx-file"></i><i class="bi bi-currency-bitcoin"></i>
</div>
<h4><a href="">Blockchain Development</a></h4>
<p>With expertise in blockchain technology, I provide comprehensive blockchain development services to
help businesses leverage the power of decentralized solutions. My services include:</p>
<ul>
<li>Smart contract development: I design and deploy secure and efficient smart contracts tailored to
your specific requirements.</li>
<li>Decentralized application (DApp) development: I create decentralized applications that run on
blockchain networks, offering transparency, security, and immutability.</li>
<li>Blockchain integration: I integrate blockchain technology into existing systems or develop new
solutions from scratch, enabling businesses to streamline operations and enhance data security.</li>
</ul>
<p>Whether you're looking to explore blockchain for financial transactions, supply chain management, or
any other use case, I deliver innovative solutions that drive efficiency, transparency, and trust.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box iconbox-pink">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5"
d="M300,541.5067337569781C382.14930387511276,545.0595476570109,479.8736841581634,548.3450877840088,526.4010558755058,480.5488172755941C571.5218469581645,414.80211281144784,517.5187510058486,332.0715597781072,496.52539010469104,255.14436215662573C477.37192572678356,184.95920475031193,473.57363656557914,105.61284051026155,413.0603344069578,65.22779650032875C343.27470386102294,18.654635553484475,251.2091493199835,5.337323636656869,175.0934190732945,40.62881213300186C97.87086631185822,76.43348514350839,51.98124368387456,156.15599469081315,36.44837278890362,239.84606092416172C21.716077023791087,319.22268207091537,43.775223500013084,401.1760424656574,96.891909868211,461.97329694683043C147.22146801428983,519.5804099606455,223.5754009179313,538.201503339737,300,541.5067337569781">
</path>
</svg>
<i class="bx bx-tachometer"></i><i class="bx bx-line-chart"></i>
</div>
<h4><a href="">Freelance Development & SEO</a></h4>
<p>As a versatile professional, I offer a combined service of freelance development and SEO to empower
your online presence. Here's what I bring to the table:</p>
<ul>
<li>Freelance Development: I provide comprehensive freelance development services, collaborating with
clients to deliver tailored solutions for various projects. From web development to software
engineering, I ensure high-quality deliverables and timely completion, meeting your business
objectives with precision.</li>
<li>SEO (Search Engine Optimization): With expertise in SEO, I optimize your website to enhance its
visibility in search engine results, driving organic traffic and increasing your online presence.
Through strategic keyword research, content optimization, and technical SEO tactics, I help you climb
the search engine rankings, attracting more potential customers and maximizing your digital reach.
</li>
</ul>
<p>By combining freelance development and SEO services, I empower businesses to thrive in the digital
landscape, offering holistic solutions to elevate their online performance and achieve sustainable
growth.</p>
</div>
</div>
</div>
</div>
</section><!-- End Services Section -->
<!-- ======= Team Section ======= -->
<!-- <section id="team" class="team section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Members Of HeiltonGroup</h2>
<p>Many years ago, we decided to be a team with Sir Lotfi and started producing educational content in the field of programming. Unfortunately, we no longer work together today, I am very happy to be with The HeiltonProgramming. </p>
</div>
<div class="row">
<div class="col-lg-6">
<div class="member d-flex align-items-start" data-aos="zoom-in" data-aos-delay="100">
<div class="pic"><img src="Content/img/team/RahimLotfi.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Rahim Lotfi</h4>
<span>Chief Executive Officer</span>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>
<div class="social">
<a href=""><i class="ri-twitter-fill"></i></a>
<a href=""><i class="ri-facebook-fill"></i></a>
<a href=""><i class="ri-instagram-fill"></i></a>
<a href=""> <i class="ri-linkedin-box-fill"></i> </a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 mt-4 mt-lg-0">
<div class="member d-flex align-items-start" data-aos="zoom-in" data-aos-delay="200">
<div class="pic"><img src="Content/img/team/OmidSotooni.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Omid Sotooni</h4>
<span>Product Manager</span>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>
<div class="social">
<a href=""><i class="ri-twitter-fill"></i></a>
<a href=""><i class="ri-facebook-fill"></i></a>
<a href=""><i class="ri-instagram-fill"></i></a>
<a href="https://www.linkedin.com/in/omidsotooni/" target="_blank"> <i class="ri-linkedin-box-fill"></i> </a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 mt-4">
<div class="member d-flex align-items-start" data-aos="zoom-in" data-aos-delay="300">
<div class="pic"><img src="Content/img/team/TirdadSolhi.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Tirdad Solhi</h4>
<span>Network Manager</span>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>
<div class="social">
<a href=""><i class="ri-twitter-fill"></i></a>
<a href=""><i class="ri-facebook-fill"></i></a>
<a href=""><i class="ri-instagram-fill"></i></a>
<a href=""> <i class="ri-linkedin-box-fill"></i> </a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 mt-4">
<div class="member d-flex align-items-start" data-aos="zoom-in" data-aos-delay="400">
<div class="pic"><img src="Content/img/team/MohsenShafiee.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Mohsen Shafiee</h4>
<span>Technical Manager</span>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>
<div class="social">
<a href=""><i class="ri-twitter-fill"></i></a>
<a href=""><i class="ri-facebook-fill"></i></a>
<a href=""><i class="ri-instagram-fill"></i></a>
<a href=""> <i class="ri-linkedin-box-fill"></i> </a>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Team Section -->
<!-- ======= Licenses & Certifications Section ======= -->
<section id="certifications" class="licenses-certifications section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2><i class="bi bi-patch-check"></i> Certifications</h2>
</div>
<div class="row">
<div class="col-lg-6">
<div class="license-item">
<h3>Microservice in .Net Core</h3>
<p>Issued Apr 2023 <a href="https://toplearn.com/Certificate/18745__4d3723fa-22e3-4b0c-97a0-b1c4d0182e38" class="btn btn-primary" target="_blank">Inquire</a></p>
<p>Credential ID: 18745__4d3723fa-22e3-4b0c-97a0-b1c4d0182e38</p>
<p>Issuer: Toplearn</p>
<p>Description: This certification covers Microservice architecture principles, Dockerization, RabbitMQ, Microsoft SQL Server, MongoDB, and Redis.</p>
</div>
</div>
<div class="col-lg-6">
<div class="license-item">
<h3>Web Design Certificate</h3>
<p>Issued Nov 2020 <a href="http://www.mpt-academy.at/certs/" class="btn btn-primary" target="_blank">Inquire</a> </p>
<p>Credential ID: 46293666</p>
<p>Issuer: MPT Academy</p>
<p>Description: This certificate verifies proficiency in Web Design.</p>
</div>
</div>
</div>
</div>
</section><!-- End Licenses & Certifications Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Contact</h2>
</div>
<div class="row mt-1">
<div class="col-lg-4">
<div class="info">
<div class="address">
<i class="bi bi-geo-alt"></i>
<h4>Location:</h4>
<p>Mashhad, Iran</p>
</div>
<div class="email">
<i class="bi bi-envelope"></i>
<h4>Email:</h4>
<p>mr.sotooni@yahoo.com</p>
</div>
<div class="phone">
<i class="bi bi-phone"></i>
<h4>Call:</h4>
<p>+1 234 56 78</p>
</div>
</div>
</div>
<div class="col-lg-8 mt-5 mt-lg-0">
<form action="Content/forms/contact.php" method="post" role="form" class="php-email-form">
<div class="row">
<div class="col-md-6 form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" required>
</div>
<div class="col-md-6 form-group mt-3 mt-md-0">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" required>
</div>
</div>
<div class="form-group mt-3">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject" required>
</div>
<div class="form-group mt-3">
<textarea class="form-control" name="message" rows="5" placeholder="Message" required></textarea>
</div>
<div class="my-3">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">Your message has been sent. Thank you!</div>
</div>
<!-- <div class="text-center"><button type="submit">Send Message</button></div> -->
</form>
</div>
</div>
</div>
</section><!-- End Contact Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="container">
<h3>Omid Sotooni</h3>
<p>The human is made of own thoughts, tomorrow is what you thinking about that today . . .</p>
<div class="social-links">
<a href="https://www.linkedin.com/in/omidsotooni/" target="_blank" class="linkedin"><i
class="bx bxl-linkedin"></i></a>
<a href="https://github.com/omidsotooni/" target="_blank" class="github"><i class="bx bxl-github"></i></a>
<a href="https://gitlab.com/sotooni" target="_blank" class="gitlab"><i class="bx bxl-gitlab"></i></a>
</div>
<div class="copyright">
© Copyright <strong><span>omidsotooni.ir</span></strong>. All Rights Free -
<script>document.write(new Date().getFullYear());</script>
</div>
<div class="credits">
Designed by <a href="https://omidsotooni.github.io/">Omid Sotooni</a>
</div>
</div>
</footer><!-- End Footer -->
<div id="preloader"></div>
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i
class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="Content/vendor/purecounter/purecounter.js"></script>
<script src="Content/vendor/aos/aos.js"></script>
<script src="Content/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="Content/vendor/glightbox/js/glightbox.min.js"></script>
<script src="Content/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="Content/vendor/swiper/swiper-bundle.min.js"></script>
<script src="Content/vendor/typed.js/typed.min.js"></script>
<script src="Content/vendor/waypoints/noframework.waypoints.js"></script>
<script src="Content/vendor/php-email-form/validate.js"></script>
<!-- Template Main JS File -->
<script src="Content/js/main.js"></script>
</body>
</html>