-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
446 lines (416 loc) · 27 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Caveat&family=Dosis&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/fontawesome.css">
<link rel="stylesheet" href="assets/css/solid.css">
<link rel="stylesheet" href="css/styles.css">
<title>My Site Portfolio</title>
<link rel="icon" type="image/png" href="assets/portfolio-favicon-32.png">
</head>
<body>
<div class="container-fluid body-context">
<div class="row g-0">
<div class="col-12">
<header>
<div>
<nav>
<ul class="navigation-menu">
<li onmouseover="homeMenuEnter();" onmouseout="homeMenuOut();">
<a href="#">
<img id="menuImageID" src="assets/home-32.png" alt="home" title="home" width="18" height="18" class="menu-image">
<span class="menu-text">Home</span>
</a>
</li>
<li onmouseover="skillMenuEnter();" onmouseout="skillMenuOut();">
<a href="#skill-section">
<img id="menuSkillID" src="assets/puzzle-32.png" alt="skills" title="skills" width="18" height="18" class="menu-image">
<span class="menu-text">Skills</span>
</a>
</li>
<li onmouseover="projectsMenuEnter();" onmouseout="projectsMenuOut();">
<a href="#projects-section">
<img id="menuProjectsID" src="assets/laptop-metrics-50.png" alt="projects" title="projects" width="22" height="22" class="menu-image project-menu-image">
<span class="menu-text">Projects</span>
</a>
</li>
<li onmouseover="workMenuEnter();" onmouseout="workMenuOut();">
<a href="#work-section">
<img id="menuWorkID" src="assets/business-32.png" alt="work" title="work" width="18" height="18" class="menu-image">
<span class="menu-text">Work</span>
</a>
</li>
<li onmouseover="educationMenuEnter();" onmouseout="educationMenuOut();">
<a href="#education-section">
<img id="menuEducationID" src="assets/book-32.png" alt="education" title="education" width="18" height="18" class="menu-image">
<span class="menu-text">Education</span>
</a>
</li>
<li onmouseover="contactMenuEnter();" onmouseout="contactMenuOut();">
<a href="#contact-section">
<img id="menuContactID" src="assets/phone-50.png" alt="contact" title="contact" width="18" height="18" class="menu-image">
<span class="menu-text">Contact</span>
</a>
</li>
</ul>
</nav>
<button onclick="backToTheTop()" id="topButton" title="Back to top of page">
<i class="fa-regular fa-circle-up"></i>
Top
</button>
<div class="profile-image-wrap">
<img src="assets/code-development.svg" alt="code-dev" title="developing" class="profile-dev-photo">
<img src="assets/code-publish.svg" alt="code-publish" title="publishing" class="profile-ui-photo" width="100%">
</div>
<h1>M.Sh.Najar</h1>
<h2>Frontend Web Developer</h2>
<div class="header-content">
<div class="header-content-wrap">
<p>
<div>
<!-- As a <label class="header-content-label-disapear">software developer</label>, -->
I do <label class="header-content-label-coding">clean coding</label>,
specially on the <label class="header-content-label-emphasize">Frontend</label> side
</div>
<div>
working with the <label class="header-content-label-emphasize">Angular</label> framework
+ <label class="header-content-label-emphasize">Typescript/HTML/CSS</label>
</div>
<div>making <label class="header-content-label-artistic">nice & responsive</label> web apps</div>
</p>
</div>
</div>
</div>
</header>
<main>
<section id="skill-section" class="row g-0 skill-main-section">
<div class="col-lg-4 col-md-3 col-sm-12 skill-items-header">
<h1>
<img src="assets/puzzle-128.png" alt="code-dev" title="developing" class="section-header-photo" width="64" height="64">
Skills
</h1>
</div>
<div class="col-lg-8 col-md-9 col-sm-12 skill-items-content">
<ul id="tag-cloud" class="skill-cloud"></ul>
</div>
</section>
<section id="projects-section" class="projects-main-section">
<h1>
<img src="assets/laptop-metrics-100.png" alt="projects" title="projects" class="section-header-photo" width="64" height="64">
Projects
</h1>
<section class="row g-0 projects-items-wrap">
<div class="col-lg-6 col-md-7 col-sm-12 image-frame-wrap">
<div class="image-frame">
<a href="#dashboardModal" data-bs-toggle="modal" data-bs-target="#dashboardModal">
<img src="assets/Dashboard.png" alt="Dashboard" title="Dashboard" width="95%">
</a>
</div>
<img id="menuImageID" src="assets/tablet-zoom-64.png" alt="expand" title="Expand" width="25" height="25"
class="modal-expand-image" onclick="toggleDashboardImageModal();">
</div>
<div class="col-lg-6 col-md-5 col-sm-12">
<div class="projects-items-header">
<h3>Network Management System (NMS)</h3>
</div>
<div class="projects-items-content">
<div class="row g-0">
<span class="col-12">
Enterprise application for monitoring & controlling all sections of a VSAT network.
A rich-feature web app with different monitoring, dashboard, report & management pages.
</span>
<span class="col-12">
<i class="fa-solid fa-bars"></i>
Angular, Typescript, PrimeNG, ,Highcharts
</span>
</div>
</div>
</div>
</section>
<section class="row g-0 projects-items-wrap">
<div class="col-lg-6 col-md-7 col-sm-12 image-frame-wrap">
<div class="image-frame">
<a href="#spectrumModal" data-bs-toggle="modal" data-bs-target="#spectrumModal">
<img src="assets/SpectrumRecorder.png" alt="SpectrumRecorder" title="SpectrumRecorder" width="95%">
</a>
</div>
<img id="menuImageID" src="assets/tablet-zoom-64.png" alt="expand" title="Expand" width="25" height="25"
class="modal-expand-image" onclick="toggleSpectrumImageModal();">
</div>
<div class="col-lg-6 col-md-5 col-sm-12">
<div class="projects-items-header">
<h3>Spectrum Analyzer Online Monitoring</h3>
<h3>Spectrum Analyzer Offline Player </h3>
</div>
<div class="projects-items-content">
<div class="row g-0">
<span class="col-12">
<div>Online monitoring the live spectrum + offline investigating past stored spectrum (Two in one products)</div>
Monitoring different RF signals in real time plus many added value information. Also
signal investigation and analyze by playing back older stored spectrum data via a player and many measurement tools.
</span>
<span class="col-12">
<i class="fa-solid fa-bars"></i>
Angular, Typescript, PrimeNG, ,Highcharts
</span>
</div>
</div>
</div>
</section>
</section>
<section id="work-section" class="work-main-section">
<h1>
<img src="assets/business-100.png" alt="work" title="work" class="section-header-photo" width="64" height="64">
Work Experience
</h1>
<section class="row g-0 work-items-wrap">
<div class="work-items-header col-xl-3 col-lg-3 col-md-12 col-sm-12">
<h3>Frontend Developer</h3>
<h3>ISC (VSAT Group)
<div>2018 - CURRENT</div>
</h3>
</div>
<div class="work-items-content col-xl-9 col-lg-9 col-md-12 col-sm-12">
<h3>Network Management System (NMS)</h3>
<div class="row g-0">
<span class="col-12">
New VSAT NMS which monitors & controlls nation‑wide VSAT banking communication links.
</span>
<span class="col-12">
<i class="fa-solid fa-check"></i>
Enhanced overview in VSAT network, with different dashboards and monitoring pages
</span>
<span class="col-12">
<i class="fa-solid fa-check"></i>
Optimized design with less clicks, less complexity and faster response to incidents
</span>
<span class="col-12">
<i class="fa-solid fa-bars"></i>
Framework: Angular, UI Component: PrimeNG, Language: Typescript, Package Manger: npm
</span>
</div>
<h3>Spectrum Analyzer Online Monitoring & Offline Player </h3>
<div class="row g-0">
<span class="col-12">
Monitoring and inspecting VSAT RF spectrum and carriers
</span>
<span class="col-12">
<i class="fa-solid fa-check"></i>
Designed & developed a live chart for online monitoring and a player for offline investigating
</span>
<span class="col-12">
<i class="fa-solid fa-check"></i>
A rich chart with many added value information & utilities
</span>
<span class="col-12">
<i class="fa-solid fa-check"></i>
Scanning and detection of events and incidents is a lot easier and much more accurate
</span>
<span class="col-12">
<i class="fa-solid fa-bars"></i>
Framework: Angular, UI Component: PrimeNG, Chart: Highcharts
</span>
</div>
</div>
</section>
<section class="row g-0 work-items-wrap">
<div class="work-items-header col-xl-3 col-lg-3 col-md-12 col-sm-12">
<h3>Frontend & Software Consultant</h3>
<h3>ARANUMA
<div>2020 -CURRENT</div>
</h3>
</div>
<div class="work-items-content col-xl-9 col-lg-9 col-md-12 col-sm-12">
<h3>Industrial IoT Software Solutions</h3>
<div class="row g-0">
<span class="col-12">
SaaS and On-Premises web-based software solutions in IoT & Industrial-IoT sector
</span>
<span class="col-12">
<i class="fa-solid fa-check"></i>
IoT SW solutions that collects sensor data for monitoring and analyzing different parts of an industry
</span>
<span class="col-12">
<i class="fa-solid fa-check"></i>
Three factories are now equiped with our IOT solutions & software
</span>
<span class="col-12">
<i class="fa-solid fa-bars"></i>
Framework: React(Frontend), .NET Core(Backend), Database: Microsoft SQL Server
</span>
</div>
</div>
</section>
<section class="row g-0 work-items-wrap">
<div class="work-items-header col-xl-3 col-lg-3 col-md-12 col-sm-12">
<h3>Web Developer</h3>
<h3>ISC (VSAT Group)
<div>2014 - 2018</div>
</h3>
</div>
<div class="work-items-content col-xl-9 col-lg-9 col-md-12 col-sm-12">
<h3>Network Management System - Legacy Version</h3>
<div class="row g-0">
<span class="col-12">
Monitoring & controlling VSAT banking links for older VSAT protocols & technologies
</span>
<span class="col-12">
<i class="fa-solid fa-check"></i>
A full stack severs-side AJAX based web application based on Java & Faces technology
</span>
<span class="col-12">
<i class="fa-solid fa-check"></i>
This web-based system replaced the legacy standalone On-Premises software and Servers
</span>
<span class="col-12">
<i class="fa-solid fa-check"></i>
Our team now does 90% of the work without the need to go to the main VSAT-Hub-Site
</span>
<span class="col-12">
<i class="fa-solid fa-check"></i>
It has served more than 4000 VSAT Remotes & is operational for more than a decade
</span>
<span class="col-12">
<i class="fa-solid fa-bars"></i>
Framework: JSF, UI Component: Rich Faces, Chart: Highcharts, Language: Java SE
</span>
</div>
</div>
</section>
<section class="row g-0 work-items-wrap">
<div class="work-items-header col-xl-3 col-lg-3 col-md-12 col-sm-12">
<h3>Software Developer</h3>
<h3>ISC (R&D Group)
<div>2013 - 2014</div>
</h3>
</div>
<div class="work-items-content col-xl-9 col-lg-9 col-md-12 col-sm-12">
<h3>Command-Line Interface for Network Devices</h3>
<div class="row g-0">
<span class="col-12">
A command-line interface for a network device used in bank branches
</span>
<span class="col-12">
<i class="fa-solid fa-check"></i>
Cisco-like CLI with all needed commands for easy network configuration and operation
</span>
<span class="col-12">
<i class="fa-solid fa-check"></i>
We installed more than 100 of these devices in different bank branches
</span>
<span class="col-12">
<i class="fa-solid fa-bars"></i>
OS: Linux, Language: C, XML, Library: CLISH, KLISH
</span>
</div>
</div>
</section>
</section>
<section id="education-section" class="education-main-section">
<h1>
<img src="assets/education.png" alt="code-dev" title="developing" class="section-header-photo" width="128" height="128">
Education
</h1>
<section class="row g-0 education-items-wrap">
<div class="education-items-header col-xl-3 col-lg-3 col-md-12 col-sm-12">
<h3>Bachelor of Science in Computer Engineering</h3>
<h3>Amirkabir University of technology
<div>Tehran</div>
<div>2001 - 2007</div>
</h3>
</div>
<div class="education-items-content col-xl-9 col-lg-9 col-md-12 col-sm-12">
<div class="row g-0">
<span class="col-12">
Thesis: A Low Power Wireless Sensor Network based on IEEE 802.15.4
</span>
<span class="col-12">
<i class="fa-solid fa-user"></i>
Supervisor: Dr. Mehdi Dehghan
</span>
</div>
</div>
</section>
<section class="row g-0 education-items-wrap">
<div class="education-items-header col-xl-3 col-lg-3 col-md-12 col-sm-12">
<h3>Visiting Student</h3>
<h3>Deakin University,
Geelong Campus
<div>Victoria, Australia</div>
<div>2005 - 2006</div>
</h3>
</div>
<div class="education-items-content col-xl-9 col-lg-9 col-md-12 col-sm-12">
<div class="row g-0">
<span class="col-12">
Project: Design and implementation of a control system for train and port automation model
</span>
<span class="col-12">
<i class="fa-solid fa-user"></i>
Supervisor: Prof. Saeid Nahavandi
</span>
</div>
</div>
</section>
</section>
</main>
<footer id="contact-section">
<span class="footer-profile-photo-wrapper">
<h3>
Me
<img src="assets/forward-arrow-64.png" alt="Profile-Photo" title="Me" width="32" height="32">
</h3>
<img src="assets/Profile-Photo.png" alt="Profile-Photo" title="Me" width="128" height="128" class="footer-profile-photo">
</span>
<div class="footer-context">
<h3>
<label> Could find me on </label>
</h3>
<ul class="contact-list">
<li>
<img src="assets/linkedin-icon-48.png" alt="LinkedIn Icon" title="LinkedIn Icon" width="32" height="32">
<label id="linkedInLabel">LinkedIn: </label>
<a href="https://www.linkedin.com/in/mshnajar/">linkedin.com/in/mshnajar</a>
</li>
<li>
<img src="assets/github-icon-50.png" alt="GitHub Icon" title="GitHub Icon" width="32" height="32">
<label id="githubLabel">GitHub: </label>
<a href="https://github.com/mshnajar">github.com/mshnajar</a>
</li>
<li></li>
</ul>
</div>
</footer>
</div>
</div>
</div>
<div class="modal fade" id="dashboardModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true" onclick="toggleDashboardImageModal();">
<div class="modal-dialog modal-xl">
<div class="modal-content image-frame-wrap">
<div class="modal-body image-frame">
<img src="assets/Dashboard.png" alt="Dashboard" title="Dashboard" class="img-fluid" width="100%" onclick="toggleDashboardImageModal();">
</div>
</div>
</div>
</div>
<div class="modal fade" id="spectrumModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true" onclick="toggleSpectrumImageModal();">
<div class="modal-dialog modal-xl">
<div class="modal-content image-frame-wrap">
<div class="modal-body image-frame">
<img src="assets/SpectrumRecorder.png" alt="SpectrumRecorder" title="SpectrumRecorder" class="img-fluid" width="100%" onclick="toggleSpectrumImageModal();">
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script src="tag-cloud.js"></script>
<script src="navigation-handler.js"></script>
<script src="modal-handler.js"></script>
</body>
</html>