-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
608 lines (468 loc) · 16.9 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
<!DOCTYPE html>
<html>
<head>
<title>Garvit Jain</title>
</head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/w3.css">
<body style="font-family:'Source Sans Pro', sans-serif; margin-top:5%;">
<script type="text/javascript" src="/three.min.js"></script>
<script type="text/javascript" src="/detector.js"></script>
<script id="vs" type="x-shader/x-vertex">
varying vec2 vUv;
void main() {
vUv = uv;
gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );
}
</script>
<script id="fs" type="x-shader/x-fragment">
uniform sampler2D map;
uniform vec3 fogColor;
uniform float fogNear;
uniform float fogFar;
varying vec2 vUv;
void main() {
float depth = gl_FragCoord.z / gl_FragCoord.w;
float fogFactor = smoothstep( fogNear, fogFar, depth );
gl_FragColor = texture2D( map, vUv );
gl_FragColor.w *= pow( gl_FragCoord.z, 20.0 );
gl_FragColor = mix( gl_FragColor, vec4( fogColor, gl_FragColor.w ), fogFactor );
}
</script>
<script type="text/javascript">
if (!Detector.webgl)
Detector.addGetWebGLMessage();
var container;
var camera, scene, renderer;
var mesh, geometry, material;
var mouseX = 0, mouseY = 0;
var start_time = Date.now();
var windowHalfX = window.innerWidth / 2;
var windowHalfY = window.innerHeight / 2;
init();
function init() {
container = document.createElement('div');
container.className = "cloud";
document.body.appendChild(container);
// Bg gradient
var canvas = document.createElement('canvas');
canvas.width = 32;
canvas.height = window.innerHeight;
var context = canvas.getContext('2d');
var gradient = context.createLinearGradient(0, 0, 0, canvas.height);
gradient.addColorStop(0, "#1e4877");
gradient.addColorStop(0.5, "#4584b4");
context.fillStyle = gradient;
context.fillRect(0, 0, canvas.width, canvas.height);
//
camera = new THREE.PerspectiveCamera(30, window.innerWidth / window.innerHeight, 1, 3000);
camera.position.z = 6000;
scene = new THREE.Scene();
geometry = new THREE.Geometry();
var texture = THREE.ImageUtils.loadTexture('/img/cloud.png', null, animate);
texture.magFilter = THREE.LinearMipMapLinearFilter;
texture.minFilter = THREE.LinearMipMapLinearFilter;
var fog = new THREE.Fog(0x4584b4, -100, 3000);
material = new THREE.ShaderMaterial({
uniforms: {
"map": {
type: "t",
value: texture
},
"fogColor": {
type: "c",
value: fog.color
},
"fogNear": {
type: "f",
value: fog.near
},
"fogFar": {
type: "f",
value: fog.far
},
},
vertexShader: document.getElementById('vs').textContent,
fragmentShader: document.getElementById('fs').textContent,
depthWrite: false,
depthTest: false,
transparent: true
});
var plane = new THREE.Mesh(new THREE.PlaneGeometry(64, 64));
for (var i = 0; i < 8000; i++) {
plane.position.x = Math.random() * 1000 - 500;
plane.position.y = -Math.random() * Math.random() * 200 - 15;
plane.position.z = i;
plane.rotation.z = Math.random() * Math.PI;
plane.scale.x = plane.scale.y = Math.random() * Math.random() * 1.5 + 0.5;
THREE.GeometryUtils.merge(geometry, plane);
}
mesh = new THREE.Mesh(geometry, material);
scene.add(mesh);
mesh = new THREE.Mesh(geometry, material);
mesh.position.z = -8000;
scene.add(mesh);
renderer = new THREE.WebGLRenderer({
antialias: false
});
renderer.setSize(window.innerWidth, window.innerHeight);
container.appendChild(renderer.domElement);
// document.addEventListener('mousemove', onDocumentMouseMove, false);
window.addEventListener('resize', onWindowResize, false);
}
function onDocumentMouseMove(event) {
mouseX = (event.clientX - windowHalfX) * 0.25;
mouseY = (event.clientY - windowHalfY) * 0.15;
}
function onWindowResize(event) {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize(window.innerWidth, window.innerHeight);
}
function animate() {
requestAnimationFrame(animate);
position = ((Date.now() - start_time) * 0.03) % 8000;
camera.position.x += (mouseX - camera.position.x) * 0.01;
camera.position.y += (-mouseY - camera.position.y) * 0.01;
camera.position.z = -position + 8000;
renderer.render(scene, camera);
}
</script>
<div id="top">
<section class="mainarea w3-content">
<div class="w3-card-16 w3-center w3-round-large">
<div class="w3-xxlarge">
<br/>
<br/>
<span class=" w3-xxlarge w3-wide w3-hover-text-amber w3-padding-32 w3-roboto">Garvit Jain </span>
<br/>
<br/>
<div class="w3-large w3-wide w3-animate-opacity w3-hover-text-amber w3-exo"> SOFTWARE ARCHITECT & DEVELOPMENT ENGINEER </div>
<br/> </div>
</div>
</section>
</div>
<section class=" w3-center mainarea">
<div class="w3-content w3-container w3-text-white w3-padding-64">
<a class=" w3-text-light-grey w3-padding-large w3-opacity hover-opacity w3-wide w3-exo"> PORTFOLIO</a>
<p class="w3-center ">
<em class="w3-opacity">Here are some my best projects.</em>
</p>
<br>
<br>
<div class="w3-content">
<div class="w3-row w3-brown-custom w3-padding-large w3-left-align" style="border-radius : 60px 0 60px 0; margin-top: 40px; margin-bottom: 60px">
<div class="w3-half w3-padding-large w3-exo">
<br/>
<span class="w3-xxlarge w3-exo"> 1. License Management
<br> ‾‾‾‾ web app</span>
<div class="w3-container">
<ul>
<li>Generative Programing</li>
<li>GraphQL</li>
<li>Angular</li>
<li>Nest.JS + TypeScript</li>
<li>Node.JS</li>
<li>Postgres + TypeORM</li>
<li>Headless Chrome</li>
</ul>
</div>
</div>
<div class="w3-half w3-center">
<span class="w3-hide-small">
<br><br><br> </span>
<img src="img/desktop.svg">
<br><br>
<div class=" w3-exo w3-xlarge ">License management software</div>
</div>
</div>
<div class="w3-row w3-brown-custom w3-padding-large w3-left-align" style="border-radius : 60px 0 60px 0; margin-top: 40px; margin-bottom: 60px">
<div class="w3-half w3-padding-large w3-exo">
<br/>
<span class="w3-xxlarge w3-exo"> 2. Posify
<br> ‾‾‾‾ web app</span>
<div class="w3-container">
<ul>
<li>Angular</li>
<li>Python + Flask</li>
<li>Celery + RabbitMQ</li>
<li>Postgres + SQLAlchemy</li>
<li>Redis</li>
<li>AWS Load balancer</li>
<li>Elasticsearch APM</li>
</ul>
<a href="//posify.in" target="_blank" class="w3-exo ">Posify.in ↗</a>
</div>
</div>
<div class="w3-half w3-center">
<span class="w3-hide-small">
<br><br><br> </span>
<img src="img/desktop.svg">
<br><br>
<div class=" w3-exo w3-xlarge ">Point of sale billing software.</div>
</div>
</div>
<div class="w3-row w3-brown-custom w3-padding-large w3-left-align" style="border-radius : 60px 0 60px 0; margin-top: 40px; margin-bottom: 60px">
<div class="w3-half w3-padding-large w3-exo">
<br/>
<span class="w3-xxlarge w3-exo"> 3. Waiter
<br> ‾‾‾‾ mobile app</span>
<div class="w3-container">
<ul>
<li>Ionic</li>
<li>Android + iOS</li>
<li>Rest API</li>
<li>Bluetooth printing</li>
<li>OTA Updates</li>
<li>Elasticsearch APM</li>
</ul>
<a href="https://play.google.com/store/apps/details?id=in.posify.captain" target="_blank" class="w3-exo ">Play Store ↗</a>
</div>
</div>
<div class="w3-half w3-center">
<span class="w3-hide-small">
<br><br><br> </span>
<img src="img/mobile.svg">
<br><br>
<div class=" w3-exo w3-xlarge ">Restaurant Waiter's Ordering app</div>
</div>
</div>
<div class="w3-row w3-brown-custom w3-padding-large w3-left-align" style="border-radius : 60px 0 60px 0; margin-top: 40px; margin-bottom: 60px">
<div class="w3-half w3-padding-large w3-exo">
<br/>
<span class="w3-xxlarge w3-exo"> 4. Bolt Data Lake
<br> ‾‾‾‾ microservice</span>
<div class="w3-container">
<ul>
<li>Go Language</li>
<li>RabbitMQ</li>
<li>Elasticsearch</li>
<li>Redis Stack (Time-series)</li>
<li>Tile38</li>
<li>In Memory Huge Cache-ing</li>
<li>TimescaleDB</li>
<li>IOT Volt to Fuel Litres</li>
<li>1 million RPM</li>
</ul>
</div>
</div>
<div class="w3-half w3-center">
<span class="w3-hide-small">
<br><br><br> </span>
<img src="img/web.svg" style="width: 70%; margin-left: auto">
<br><br>
<div class=" w3-exo w3-xlarge ">Realtime Cross continent GPS data processing microservice</div>
</div>
</div>
<div class="w3-row w3-brown-custom w3-padding-large w3-left-align" style="border-radius : 60px 0 60px 0; margin-top: 40px; margin-bottom: 60px">
<div class="w3-half w3-padding-large w3-exo">
<br/>
<span class="w3-xxlarge w3-exo"> 5. Synco Admin
<br> ‾‾‾‾ Web app</span>
<div class="w3-container">
<ul>
<li>Angular</li>
<li>Python + Flask</li>
<li>Postgres + SQLAlchemy</li>
<li>Celery + RabbitMQ</li>
<li>GraphQL</li>
<li>8 Microservices</li>
<li>Elasticsearch APM</li>
</ul>
<a href="https://synco.roadcast.co.in" target="_blank" class="w3-exo ">Synco.roadcast.co.in ↗</a>
</div>
</div>
<div class="w3-half w3-center">
<span class="w3-hide-small">
<br><br><br> </span>
<img src="img/desktop.svg">
<br><br>
<div class=" w3-exo w3-xlarge ">Last Mile Delivery Solution</div>
</div>
</div>
<div class="w3-row w3-brown-custom w3-padding-large w3-left-align" style="border-radius : 60px 0 60px 0; margin-top: 40px; margin-bottom: 60px">
<div class="w3-half w3-padding-large w3-exo">
<br/>
<span class="w3-xxlarge w3-exo"> 6. iFom Fuse
<br> ‾‾‾‾ mobile app</span>
<div class="w3-container">
<ul>
<li>Ionic</li>
<li>Android + iOS</li>
<li>Rest API</li>
<li>GPS Tracking</li>
<li>For Tata Communications</li>
</ul>
</div>
</div>
<div class="w3-half w3-center">
<span class="w3-hide-small">
<br><br><br> </span>
<img src="img/mobile.svg">
<br><br>
<div class=" w3-exo w3-xlarge ">Hybrid mobile app</div>
</div>
</div>
<div class="w3-row w3-brown-custom w3-padding-large w3-left-align" style="border-radius : 60px 0 60px 0; margin-top: 40px; margin-bottom: 60px">
<div class="w3-half w3-padding-large w3-exo">
<br/>
<span class="w3-xxlarge w3-exo"> 7. Bolt Admin
<br> ‾‾‾‾ Web app</span>
<div class="w3-container">
<ul>
<li>Angular</li>
<li>Python + Flask</li>
<li>Postgres + SQLAlchemy</li>
<li>Celery + RabbitMQ</li>
<li>Redis</li>
<li>TimescaleDB</li>
<li>Microservice</li>
<li>Elasticsearch APM</li>
</ul>
<a href="https://bolt.roadcast.net" target="_blank" class="w3-exo ">Bolt.roadcast.net ↗</a>
</div>
</div>
<div class="w3-half w3-center">
<span class="w3-hide-small">
<br><br><br> </span>
<img src="img/desktop.svg">
<br><br>
<div class=" w3-exo w3-xlarge ">IOT GPS Tracking Software</div>
</div>
</div>
<div class="w3-row w3-brown-custom w3-padding-large w3-left-align" style="border-radius : 60px 0 60px 0; margin-top: 40px; margin-bottom: 60px">
<div class="w3-half w3-padding-large w3-exo">
<br/>
<span class="w3-xxlarge w3-exo"> 8. Reverse Geocode
<br> ‾‾‾‾ microservice</span>
<div class="w3-container">
<ul>
<li>Go Language</li>
<li>6 million address cached in memory</li>
<li>20 micro-seconds response time</li>
<li>Lat-Lng to human address</li>
<li>Pelias + Elasticsearch</li>
</ul>
</div>
</div>
<div class="w3-half w3-center">
<span class="w3-hide-small">
<br><br><br> </span>
<img src="img/web.svg" style="width: 70%; margin-left: auto">
<br><br>
<div class=" w3-exo w3-xlarge ">Lat-Lng to address api</div>
</div>
</div>
<div class="w3-row w3-brown-custom w3-padding-large w3-left-align" style="border-radius : 60px 0 60px 0; margin-top: 40px; margin-bottom: 60px">
<div class="w3-half w3-padding-large w3-exo">
<br/>
<span class="w3-xxlarge w3-exo"> 9. GPS Data Ingest
<br> ‾‾‾‾ microservice</span>
<div class="w3-container">
<ul>
<li>TCP Socket</li>
<li>Go Language</li>
<li>20 micro-seconds response time</li>
<li>Huge Volume of Data Process</li>
</ul>
</div>
</div>
<div class="w3-half w3-center">
<span class="w3-hide-small">
<br><br><br> </span>
<img src="img/web.svg" style="width: 70%; margin-left: auto">
<br><br>
<div class=" w3-exo w3-xlarge ">TCP Socket Communication</div>
</div>
</div>
<a onclick="loadMore(this, document.getElementById('more'))" class="w3-hover-text-amber w3-exo w3-btn w3-xlarge w3-transparent w3-padding-large hover-opacity w3-wide shake-slow shake-constant shake-constant--hover">
LOAD MORE</a>
<div id="more" style="display: none">
<div class="w3-row w3-brown-custom w3-padding-large w3-left-align" style="border-radius : 60px 0 60px 0; margin-top: 40px; margin-bottom: 60px">
<div class="w3-half w3-padding-large w3-exo">
<br/>
<span class="w3-xxlarge w3-exo"> 10. Setango Travel's
<br> ‾‾‾‾ CRM & CMS</span>
<div class="w3-container">
<ul>
<li>Go Language</li>
<li>Bootstrap</li>
<li>Rest API</li>
<li>MySQL</li>
<li>Phantom JS</li>
</ul>
</div>
</div>
<div class="w3-half w3-center">
<span class="w3-hide-small">
<br><br><br> </span>
<img src="img/web.svg" style="width: 70%; margin-left: auto">
<br><br>
<div class=" w3-exo w3-xlarge ">Setango Travel's Official <br> Travel booking web app </div>
</div>
</div>
</div>
<br/>
<br/>
</div>
</div>
</section>
<section class="mainarea w3-container w3-text-grey w3-padding-32 w3-large" style="background-color:#1b1918;">
<div class="w3-content ">
<div class="w3-container w3-padding-64 w3-exo">
<div class=" w3-exo w3-xlarge w3-transparent w3-padding-large w3-wide w3-center "> LINKS</div>
<table style="margin-left: auto; margin-right: auto">
<tr>
<td >Linkedin</td>
<td ><a href="//linkedin.com/in/heisGarvit" target="_blank" class="w3-hover-text-amber">- linkedin.com/in/heisGarvit ↗</a></td>
</tr>
<tr>
<td >StackOverflow </td>
<td ><a href="https://stackoverflow.com/users/5806017/garvit-jain" target="_blank" class="w3-hover-text-amber"> - stackoverflow.com/users/5806017 ↗</a></td>
</tr>
<tr>
<td >GitHub</td>
<td ><a href="https://github.com/heisGarvit" target="_blank" class="w3-hover-text-amber"> - github.com/heisGarvit ↗</a></td>
</tr>
</table>
</div>
<div class="w3-center w3-small">
Portfolio Last Updated August 2023
</div>
</div>
</section>
<div id="wrapper">
<p class="firefly" id="h_1">
<img src="/img/02.png" height="48" width="49" alt="">
</p>
<p class="firefly" id="h_2">
<img src="/img/02.png" alt="">
</p>
<p class="firefly" id="h_3">
<img src="/img/03.png" height="59" width="54" alt="">
</p>
<p class="firefly" id="h_4">
<img src="/img/02.png" height="48" width="49" alt="">
</p>
<p class="firefly_stay" id="h_6">
<img src="/img/03.png" height="59" width="54" alt="">
</p>
<p class="firefly_stay" id="h_7">
<img src="/img/02.png" height="48" width="49" alt="">
</p>
<p class="firefly_stay" id="h_5">
<img src="/img/02.png" height="48" width="49" alt="">
</p>
<p class="firefly_stay" id="h_8">
<img src="/img/03.png" height="59" width="54" alt="">
</p>
</div>
<script type="text/javascript" language="JavaScript">var fly = document.getElementsByClassName('firefly'); var rotx = 0; var roty = 0; var firefly_moving = function () { rotx = rotx + 0.5; roty = roty + 0.1; if (rotx > 360) rotx -= 360; if (roty > 360) roty -= 360; var i = fly.length; while (i--) { fly[i].style.marginLeft = (Math.cos(rotx * Math.PI / 180) * 300 + 34.5) + 'px'; fly[i].style.marginTop = (Math.sin(roty * Math.PI / 180) * 200 + 34) + 'px'; } setTimeout(function () { firefly_moving(); }, 20) }
firefly_moving();
function loadMore(toHideElement, toShowElement) {
toHideElement.style.display = "none";
toShowElement.style.display = "block";
}
</script>
</body>
</html>