-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1461 lines (1201 loc) · 66.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sink In - Tech and Travel</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="/assets/built/screen.css?v=2408e2b2b9" />
<meta name="description" content="Sink In - Tech and Travel" />
<link rel="icon" href="/favicon.png" type="image/png" />
<link rel="canonical" href="https://gosink.in/" />
<meta name="referrer" content="no-referrer-when-downgrade" />
<link rel="next" href="https://gosink.in/page/2/" />
<meta property="og:site_name" content="Sink In - Tech and Travel" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Sink In - Tech and Travel" />
<meta property="og:description" content="Sink In - Tech and Travel" />
<meta property="og:url" content="https://gosink.in/" />
<meta property="og:image" content="https://gosink.in/content/images/2019/08/website-cover.jpeg" />
<meta property="article:publisher" content="https://www.facebook.com/shah.apal" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Sink In - Tech and Travel" />
<meta name="twitter:description" content="Sink In - Tech and Travel" />
<meta name="twitter:url" content="https://gosink.in/" />
<meta name="twitter:image" content="https://gosink.in/content/images/2019/08/website-cover.jpeg" />
<meta name="twitter:site" content="@shah_apal" />
<meta property="og:image:width" content="2000" />
<meta property="og:image:height" content="1334" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"publisher": {
"@type": "Organization",
"name": "Sink In - Tech and Travel",
"url": "https://gosink.in/",
"logo": {
"@type": "ImageObject",
"url": "https://gosink.in/content/images/2019/08/Final-logo.png"
}
},
"url": "https://gosink.in/",
"image": {
"@type": "ImageObject",
"url": "https://gosink.in/content/images/2019/08/website-cover.jpeg",
"width": 2000,
"height": 1334
},
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://gosink.in/"
},
"description": "Sink In - Tech and Travel"
}
</script>
<meta name="generator" content="Ghost 4.2" />
<link rel="alternate" type="application/rss+xml" title="Sink In - Tech and Travel" href="https://gosink.in/rss/" />
<script defer src="https://unpkg.com/@tryghost/portal@~1.1.0/umd/portal.min.js" data-ghost="https://gosink.in/"></script><style> .gh-post-upgrade-cta-content,
.gh-post-upgrade-cta {
display: flex;
flex-direction: column;
align-items: center;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
text-align: center;
width: 100%;
color: #ffffff;
font-size: 16px;
}
.gh-post-upgrade-cta-content {
border-radius: 8px;
padding: 40px 4vw;
}
.gh-post-upgrade-cta h2 {
color: #ffffff;
font-size: 28px;
letter-spacing: -0.2px;
margin: 0;
padding: 0;
}
.gh-post-upgrade-cta p {
margin: 20px 0 0;
padding: 0;
}
.gh-post-upgrade-cta small {
font-size: 16px;
letter-spacing: -0.2px;
}
.gh-post-upgrade-cta a {
color: #ffffff;
cursor: pointer;
font-weight: 500;
box-shadow: none;
text-decoration: underline;
}
.gh-post-upgrade-cta a:hover {
color: #ffffff;
opacity: 0.8;
box-shadow: none;
text-decoration: underline;
}
.gh-post-upgrade-cta a.gh-btn {
display: block;
background: #ffffff;
text-decoration: none;
margin: 28px 0 0;
padding: 8px 18px;
border-radius: 4px;
font-size: 16px;
font-weight: 600;
}
.gh-post-upgrade-cta a.gh-btn:hover {
opacity: 0.92;
}</style>
<link rel="stylesheet"
href="//cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/styles/night-owl.min.css">
<!-- Fix Gist -->
<style>
.gist {
width: 100%;
}
.post-full-content pre {
box-shadow: 0 20px 25px -20px rgba(0,0,0,0.7);
word-wrap: normal;
-moz-hyphens: none;
-ms-hyphens: none;
-webkit-hyphens: none;
hyphens: none;
font-size: 0.9em;
line-height: 1.3em;
border: rbg(1, 22, 39, 0.9);
background: rgba(1, 22, 39, 0.9);
}
.post-full-content pre code, .post-full-content pre tt {
white-space: pre;
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-63344841-6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-63344841-6');
</script>
<!-- Google Adsense -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-7909119592155313",
enable_page_level_ads: true
});
</script>
<style>:root {--ghost-accent-color: #1c1c1c;}</style>
</head>
<body class="home-template">
<div class="viewport">
<header id="gh-head" class="gh-head has-cover">
<nav class="gh-head-inner inner gh-container">
<div class="gh-head-brand">
<a class="gh-head-logo" href="https://gosink.in">
<img src="https://gosink.in/content/images/2019/08/Final-logo.png" alt="Sink In - Tech and Travel" />
</a>
<a class="gh-burger" role="button">
<div class="gh-burger-box">
<div class="gh-burger-inner"></div>
</div>
</a>
</div>
<div class="gh-head-menu">
<ul class="nav">
<li class="nav-home nav-current"><a href="https://gosink.in/">Home</a></li>
<li class="nav-tech"><a href="https://gosink.in/tag/tech/">Tech</a></li>
<li class="nav-design"><a href="https://gosink.in/tag/design/">Design</a></li>
<li class="nav-travel"><a href="https://gosink.in/tag/travel/">Travel</a></li>
<li class="nav-entrepreneurship"><a href="https://gosink.in/tag/entrepreneurship/">Entrepreneurship</a></li>
</ul>
</div>
<div class="gh-head-actions">
<div class="gh-social">
<a class="gh-social-facebook" href="https://www.facebook.com/shah.apal" title="Facebook" target="_blank" rel="noopener"><svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><path d="M16 0c8.837 0 16 7.163 16 16s-7.163 16-16 16S0 24.837 0 16 7.163 0 16 0zm5.204 4.911h-3.546c-2.103 0-4.443.885-4.443 3.934.01 1.062 0 2.08 0 3.225h-2.433v3.872h2.509v11.147h4.61v-11.22h3.042l.275-3.81h-3.397s.007-1.695 0-2.187c0-1.205 1.253-1.136 1.329-1.136h2.054V4.911z" /></svg></a>
<a class="gh-social-twitter" href="https://twitter.com/shah_apal" title="Twitter" target="_blank" rel="noopener"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M30.063 7.313c-.813 1.125-1.75 2.125-2.875 2.938v.75c0 1.563-.188 3.125-.688 4.625a15.088 15.088 0 0 1-2.063 4.438c-.875 1.438-2 2.688-3.25 3.813a15.015 15.015 0 0 1-4.625 2.563c-1.813.688-3.75 1-5.75 1-3.25 0-6.188-.875-8.875-2.625.438.063.875.125 1.375.125 2.688 0 5.063-.875 7.188-2.5-1.25 0-2.375-.375-3.375-1.125s-1.688-1.688-2.063-2.875c.438.063.813.125 1.125.125.5 0 1-.063 1.5-.25-1.313-.25-2.438-.938-3.313-1.938a5.673 5.673 0 0 1-1.313-3.688v-.063c.813.438 1.688.688 2.625.688a5.228 5.228 0 0 1-1.875-2c-.5-.875-.688-1.813-.688-2.75 0-1.063.25-2.063.75-2.938 1.438 1.75 3.188 3.188 5.25 4.25s4.313 1.688 6.688 1.813a5.579 5.579 0 0 1 1.5-5.438c1.125-1.125 2.5-1.688 4.125-1.688s3.063.625 4.188 1.813a11.48 11.48 0 0 0 3.688-1.375c-.438 1.375-1.313 2.438-2.563 3.188 1.125-.125 2.188-.438 3.313-.875z"/></svg>
</a>
</div>
</div>
</nav>
</header>
<main>
<div class="site-header-content">
<img class="site-header-cover"
srcset="/content/images/size/w300/2019/08/website-cover.jpeg 300w,
/content/images/size/w600/2019/08/website-cover.jpeg 600w,
/content/images/size/w1000/2019/08/website-cover.jpeg 1000w,
/content/images/size/w2000/2019/08/website-cover.jpeg 2000w"
sizes="100vw"
src="/content/images/size/w2000/2019/08/website-cover.jpeg"
alt=""
/>
<h1 class="site-title">
<img class="site-logo" src="/content/images/size/w600/2019/08/Final-logo.png" alt="Sink In - Tech and Travel" />
</h1>
<p>Sink In - Tech and Travel</p>
</div>
<main id="site-main" class="site-main outer">
<div class="inner posts">
<div class="post-feed">
<article class="post-card post tag-design-lessons tag-design tag-ui-ux-2 tag-ui-design tag-design-career tag-career-growth tag-ux-design tag-product-designers tag-lessons post-card-large">
<a class="post-card-image-link" href="/non-design-lessons-learned-while-designing-interfaces-2/">
<img class="post-card-image"
srcset="/content/images/size/w300/2021/01/Illustration.png 300w,
/content/images/size/w600/2021/01/Illustration.png 600w,
/content/images/size/w1000/2021/01/Illustration.png 1000w,
/content/images/size/w2000/2021/01/Illustration.png 2000w"
sizes="(max-width: 1000px) 400px, 800px"
src="/content/images/size/w600/2021/01/Illustration.png"
alt="Non-Design lessons learned while designing interfaces"
loading="lazy"
/>
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="/non-design-lessons-learned-while-designing-interfaces-2/">
<header class="post-card-header">
<div class="post-card-primary-tag">design lessons</div>
<h2 class="post-card-title">Non-Design lessons learned while designing interfaces</h2>
</header>
<section class="post-card-excerpt">
<p>During my time at NextUX Design Agency, apart from designing screens and experience, I have learned so many non-design lessons that I would like to share.</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<a href="/author/aman/" class="static-avatar">
<img class="author-profile-image" src="/content/images/size/w100/2019/08/DNC-XEROX---784-1.jpg" alt="Aman Gupta" />
</a>
</li>
</ul>
<div class="post-card-byline-content">
<span><a href="/author/aman/">Aman Gupta</a></span>
<span class="post-card-byline-date"><time datetime="2021-01-24">Jan 24, 2021</time> <span class="bull">•</span> 8 min read</span>
</div>
</footer>
</div>
</article>
<article class="post-card post tag-tech tag-design tag-css tag-ui ">
<a class="post-card-image-link" href="/css-what-is-currentcolor-keyword/">
<img class="post-card-image"
srcset="/content/images/size/w300/2020/11/css-current-color.jpg 300w,
/content/images/size/w600/2020/11/css-current-color.jpg 600w,
/content/images/size/w1000/2020/11/css-current-color.jpg 1000w,
/content/images/size/w2000/2020/11/css-current-color.jpg 2000w"
sizes="(max-width: 1000px) 400px, 800px"
src="/content/images/size/w600/2020/11/css-current-color.jpg"
alt="CSS — What is currentColor keyword?"
loading="lazy"
/>
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="/css-what-is-currentcolor-keyword/">
<header class="post-card-header">
<div class="post-card-primary-tag">Tech</div>
<h2 class="post-card-title">CSS — What is currentColor keyword?</h2>
</header>
<section class="post-card-excerpt">
<p>Did you know in CSS you can specify the color property once and use that value without specifying it again using the currentColor keyword?</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<a href="/author/apal/" class="static-avatar">
<img class="author-profile-image" src="//www.gravatar.com/avatar/fd29a9dce2da5d0631e635d01107669d?s=250&d=mm&r=x" alt="Apal Shah" />
</a>
</li>
</ul>
<div class="post-card-byline-content">
<span><a href="/author/apal/">Apal Shah</a></span>
<span class="post-card-byline-date"><time datetime="2020-11-27">Nov 27, 2020</time> <span class="bull">•</span> 2 min read</span>
</div>
</footer>
</div>
</article>
<article class="post-card post tag-tech tag-javascript tag-webrtc ">
<a class="post-card-image-link" href="/webrtc-switch-cameras-using-javascript-getusermedia/">
<img class="post-card-image"
srcset="/content/images/size/w300/2020/08/webrtc-video-call.jpeg 300w,
/content/images/size/w600/2020/08/webrtc-video-call.jpeg 600w,
/content/images/size/w1000/2020/08/webrtc-video-call.jpeg 1000w,
/content/images/size/w2000/2020/08/webrtc-video-call.jpeg 2000w"
sizes="(max-width: 1000px) 400px, 800px"
src="/content/images/size/w600/2020/08/webrtc-video-call.jpeg"
alt="WebRTC — Switch Cameras using Javascript getUserMedia"
loading="lazy"
/>
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="/webrtc-switch-cameras-using-javascript-getusermedia/">
<header class="post-card-header">
<div class="post-card-primary-tag">Tech</div>
<h2 class="post-card-title">WebRTC — Switch Cameras using Javascript getUserMedia</h2>
</header>
<section class="post-card-excerpt">
<p>To fetch or toggle between the front-facing camera and the back camera, we can simply use the "facingMode" which is widely supported in the majority of the browsers.</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<a href="/author/apal/" class="static-avatar">
<img class="author-profile-image" src="//www.gravatar.com/avatar/fd29a9dce2da5d0631e635d01107669d?s=250&d=mm&r=x" alt="Apal Shah" />
</a>
</li>
</ul>
<div class="post-card-byline-content">
<span><a href="/author/apal/">Apal Shah</a></span>
<span class="post-card-byline-date"><time datetime="2020-08-30">Aug 30, 2020</time> <span class="bull">•</span> 3 min read</span>
</div>
</footer>
</div>
</article>
<article class="post-card post tag-tech tag-javascript tag-node-js ">
<a class="post-card-image-link" href="/understanding-javascript-array-reduce-method-and-its-use-cases-is-it-underrated/">
<img class="post-card-image"
srcset="/content/images/size/w300/2020/07/Array.reduce.jpg 300w,
/content/images/size/w600/2020/07/Array.reduce.jpg 600w,
/content/images/size/w1000/2020/07/Array.reduce.jpg 1000w,
/content/images/size/w2000/2020/07/Array.reduce.jpg 2000w"
sizes="(max-width: 1000px) 400px, 800px"
src="/content/images/size/w600/2020/07/Array.reduce.jpg"
alt="Understanding Javascript Array's .reduce() method and its use-cases"
loading="lazy"
/>
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="/understanding-javascript-array-reduce-method-and-its-use-cases-is-it-underrated/">
<header class="post-card-header">
<div class="post-card-primary-tag">Tech</div>
<h2 class="post-card-title">Understanding Javascript Array's .reduce() method and its use-cases</h2>
</header>
<section class="post-card-excerpt">
<p>After reading various tweets and blogs, I decided to write a detailed article on what exactly reduce method is and what can be some of its use cases.</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<a href="/author/apal/" class="static-avatar">
<img class="author-profile-image" src="//www.gravatar.com/avatar/fd29a9dce2da5d0631e635d01107669d?s=250&d=mm&r=x" alt="Apal Shah" />
</a>
</li>
</ul>
<div class="post-card-byline-content">
<span><a href="/author/apal/">Apal Shah</a></span>
<span class="post-card-byline-date"><time datetime="2020-07-03">Jul 3, 2020</time> <span class="bull">•</span> 7 min read</span>
</div>
</footer>
</div>
</article>
<article class="post-card post tag-design-thinking tag-mistakes tag-ui-mistakes tag-ux-mistakes tag-design-mistakes tag-common-mistakes tag-product-designers tag-product-designs tag-design tag-design-value tag-ui tag-ux-designers ">
<a class="post-card-image-link" href="/common-ui-ux-design-mistakes-young-designers-should-avoid/">
<img class="post-card-image"
srcset="/content/images/size/w300/2020/06/sarah-kilian-52jRtc2S_VE-unsplash-1.jpg 300w,
/content/images/size/w600/2020/06/sarah-kilian-52jRtc2S_VE-unsplash-1.jpg 600w,
/content/images/size/w1000/2020/06/sarah-kilian-52jRtc2S_VE-unsplash-1.jpg 1000w,
/content/images/size/w2000/2020/06/sarah-kilian-52jRtc2S_VE-unsplash-1.jpg 2000w"
sizes="(max-width: 1000px) 400px, 800px"
src="/content/images/size/w600/2020/06/sarah-kilian-52jRtc2S_VE-unsplash-1.jpg"
alt="Common UI/UX design mistakes young designers should avoid"
loading="lazy"
/>
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="/common-ui-ux-design-mistakes-young-designers-should-avoid/">
<header class="post-card-header">
<div class="post-card-primary-tag">Design thinking</div>
<h2 class="post-card-title">Common UI/UX design mistakes young designers should avoid</h2>
</header>
<section class="post-card-excerpt">
<p>Mistakes in the design phase often lead to a cycle of rework in the product development process. So, It is always best to avoid and take care of mistakes that might occur unknowingly or knowingly.</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<a href="/author/aman/" class="static-avatar">
<img class="author-profile-image" src="/content/images/size/w100/2019/08/DNC-XEROX---784-1.jpg" alt="Aman Gupta" />
</a>
</li>
</ul>
<div class="post-card-byline-content">
<span><a href="/author/aman/">Aman Gupta</a></span>
<span class="post-card-byline-date"><time datetime="2020-06-24">Jun 24, 2020</time> <span class="bull">•</span> 4 min read</span>
</div>
</footer>
</div>
</article>
<article class="post-card post tag-tech tag-javascript tag-react-js tag-node-js ">
<a class="post-card-image-link" href="/react-js-how-to-render-useeffect-only-once/">
<img class="post-card-image"
srcset="/content/images/size/w300/2020/05/react-hooks.png 300w,
/content/images/size/w600/2020/05/react-hooks.png 600w,
/content/images/size/w1000/2020/05/react-hooks.png 1000w,
/content/images/size/w2000/2020/05/react-hooks.png 2000w"
sizes="(max-width: 1000px) 400px, 800px"
src="/content/images/size/w600/2020/05/react-hooks.png"
alt="React.js — How to execute useEffect hook only once?"
loading="lazy"
/>
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="/react-js-how-to-render-useeffect-only-once/">
<header class="post-card-header">
<div class="post-card-primary-tag">Tech</div>
<h2 class="post-card-title">React.js — How to execute useEffect hook only once?</h2>
</header>
<section class="post-card-excerpt">
<p>Have you ever faced this issue that your useEffect hook gets executed multiple times? Maybe sometimes it goes into the infinite loop?</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<a href="/author/apal/" class="static-avatar">
<img class="author-profile-image" src="//www.gravatar.com/avatar/fd29a9dce2da5d0631e635d01107669d?s=250&d=mm&r=x" alt="Apal Shah" />
</a>
</li>
</ul>
<div class="post-card-byline-content">
<span><a href="/author/apal/">Apal Shah</a></span>
<span class="post-card-byline-date"><time datetime="2020-05-24">May 24, 2020</time> <span class="bull">•</span> 4 min read</span>
</div>
</footer>
</div>
</article>
<article class="post-card post tag-ui-design tag-ui-principles tag-ui tag-ui-design-rules tag-uiux tag-ux-design tag-ui-ux tag-visual-design tag-design ">
<a class="post-card-image-link" href="/visual-design-rules-every-ui-designer-must-follow/">
<img class="post-card-image"
srcset="/content/images/size/w300/2020/05/design-rules.png 300w,
/content/images/size/w600/2020/05/design-rules.png 600w,
/content/images/size/w1000/2020/05/design-rules.png 1000w,
/content/images/size/w2000/2020/05/design-rules.png 2000w"
sizes="(max-width: 1000px) 400px, 800px"
src="/content/images/size/w600/2020/05/design-rules.png"
alt="Visual design rules every UI designer must follow."
loading="lazy"
/>
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="/visual-design-rules-every-ui-designer-must-follow/">
<header class="post-card-header">
<div class="post-card-primary-tag">UI Design</div>
<h2 class="post-card-title">Visual design rules every UI designer must follow.</h2>
</header>
<section class="post-card-excerpt">
<p>To make your UI visually appealing and balanced, you need to apply right UI principles.</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<a href="/author/aman/" class="static-avatar">
<img class="author-profile-image" src="/content/images/size/w100/2019/08/DNC-XEROX---784-1.jpg" alt="Aman Gupta" />
</a>
</li>
</ul>
<div class="post-card-byline-content">
<span><a href="/author/aman/">Aman Gupta</a></span>
<span class="post-card-byline-date"><time datetime="2020-05-23">May 23, 2020</time> <span class="bull">•</span> 9 min read</span>
</div>
</footer>
</div>
</article>
<article class="post-card post tag-ux-design tag-user-experience tag-design tag-design-study tag-design-thinking tag-product-designers tag-ux-designers tag-user-experience-design ">
<a class="post-card-image-link" href="/ux-design-and-different-factors-what-is-ux-design-and-the-role-of-different-factors-in-designing-the-overall-user-experience-of-the-products/">
<img class="post-card-image"
srcset="/content/images/size/w300/2020/04/UX-Bg.png 300w,
/content/images/size/w600/2020/04/UX-Bg.png 600w,
/content/images/size/w1000/2020/04/UX-Bg.png 1000w,
/content/images/size/w2000/2020/04/UX-Bg.png 2000w"
sizes="(max-width: 1000px) 400px, 800px"
src="/content/images/size/w600/2020/04/UX-Bg.png"
alt="UX Design, and factors defining it."
loading="lazy"
/>
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="/ux-design-and-different-factors-what-is-ux-design-and-the-role-of-different-factors-in-designing-the-overall-user-experience-of-the-products/">
<header class="post-card-header">
<div class="post-card-primary-tag">UX Design</div>
<h2 class="post-card-title">UX Design, and factors defining it.</h2>
</header>
<section class="post-card-excerpt">
<p>What is UX Design and the role of different factors in designing the overall User experience of the products.</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<a href="/author/aman/" class="static-avatar">
<img class="author-profile-image" src="/content/images/size/w100/2019/08/DNC-XEROX---784-1.jpg" alt="Aman Gupta" />
</a>
</li>
</ul>
<div class="post-card-byline-content">
<span><a href="/author/aman/">Aman Gupta</a></span>
<span class="post-card-byline-date"><time datetime="2020-04-06">Apr 6, 2020</time> <span class="bull">•</span> 6 min read</span>
</div>
</footer>
</div>
</article>
<article class="post-card post tag-chrome-extension tag-ux-laws tag-ux-design tag-ui tag-design tag-user-experience tag-design-thinking tag-design-value tag-ux-designers tag-triangle-shaped-designer tag-product-designers ">
<a class="post-card-image-link" href="/ux-laws-a-chrome-extension/">
<img class="post-card-image"
srcset="/content/images/size/w300/2020/03/Screenshot-2020-03-02-at-8.48.10-PM.png 300w,
/content/images/size/w600/2020/03/Screenshot-2020-03-02-at-8.48.10-PM.png 600w,
/content/images/size/w1000/2020/03/Screenshot-2020-03-02-at-8.48.10-PM.png 1000w,
/content/images/size/w2000/2020/03/Screenshot-2020-03-02-at-8.48.10-PM.png 2000w"
sizes="(max-width: 1000px) 400px, 800px"
src="/content/images/size/w600/2020/03/Screenshot-2020-03-02-at-8.48.10-PM.png"
alt="UX Laws, My first Chrome extension"
loading="lazy"
/>
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="/ux-laws-a-chrome-extension/">
<header class="post-card-header">
<div class="post-card-primary-tag">chrome extension</div>
<h2 class="post-card-title">UX Laws, My first Chrome extension</h2>
</header>
<section class="post-card-excerpt">
<p>Hello Friends, Today I am going to share with you my first chrome extension, UX Laws that I have built for myself and also for all the new UX designers. Basically, I have just converted the Laws of UX website into a chrome version. The design of this chrome extension</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<a href="/author/aman/" class="static-avatar">
<img class="author-profile-image" src="/content/images/size/w100/2019/08/DNC-XEROX---784-1.jpg" alt="Aman Gupta" />
</a>
</li>
</ul>
<div class="post-card-byline-content">
<span><a href="/author/aman/">Aman Gupta</a></span>
<span class="post-card-byline-date"><time datetime="2020-03-02">Mar 2, 2020</time> <span class="bull">•</span> 1 min read</span>
</div>
</footer>
</div>
</article>
<article class="post-card post tag-design tag-design-thinking tag-design-value tag-ui-design tag-ux-design tag-ui tag-algorithms tag-ux-design-case-study tag-design-study tag-case-study tag-invision tag-sketch-app tag-prototype ">
<a class="post-card-image-link" href="/along-an-app-concept-to-enjoy-things-together/">
<img class="post-card-image"
srcset="/content/images/size/w300/2020/02/Cover-Image-1.png 300w,
/content/images/size/w600/2020/02/Cover-Image-1.png 600w,
/content/images/size/w1000/2020/02/Cover-Image-1.png 1000w,
/content/images/size/w2000/2020/02/Cover-Image-1.png 2000w"
sizes="(max-width: 1000px) 400px, 800px"
src="/content/images/size/w600/2020/02/Cover-Image-1.png"
alt="Designed an app, Along, to let people watch and listen together."
loading="lazy"
/>
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="/along-an-app-concept-to-enjoy-things-together/">
<header class="post-card-header">
<div class="post-card-primary-tag">Design</div>
<h2 class="post-card-title">Designed an app, Along, to let people watch and listen together.</h2>
</header>
<section class="post-card-excerpt">
<p>ProblemPeople who move out of their native places or home town always miss the time spent with their friends, family and loved ones. A lot of them feel lonely and boring throughout the days. And sometimes they want to enjoy the best things with their family, and friends despite living</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<a href="/author/aman/" class="static-avatar">
<img class="author-profile-image" src="/content/images/size/w100/2019/08/DNC-XEROX---784-1.jpg" alt="Aman Gupta" />
</a>
</li>
</ul>
<div class="post-card-byline-content">
<span><a href="/author/aman/">Aman Gupta</a></span>
<span class="post-card-byline-date"><time datetime="2020-02-09">Feb 9, 2020</time> <span class="bull">•</span> 8 min read</span>
</div>
</footer>
</div>
</article>
<article class="post-card post tag-tech tag-javascript tag-css tag-design ">
<a class="post-card-image-link" href="/javascript-css-toggle-dark-light-theme-based-on-your-users-preferred-scheme/">
<img class="post-card-image"
srcset="/content/images/size/w300/2020/02/toggle-theme.jpg 300w,
/content/images/size/w600/2020/02/toggle-theme.jpg 600w,
/content/images/size/w1000/2020/02/toggle-theme.jpg 1000w,
/content/images/size/w2000/2020/02/toggle-theme.jpg 2000w"
sizes="(max-width: 1000px) 400px, 800px"
src="/content/images/size/w600/2020/02/toggle-theme.jpg"
alt="Javascript & CSS — Toggle dark/light theme based on your user's preferred scheme"
loading="lazy"
/>
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="/javascript-css-toggle-dark-light-theme-based-on-your-users-preferred-scheme/">
<header class="post-card-header">
<div class="post-card-primary-tag">Tech</div>
<h2 class="post-card-title">Javascript & CSS — Toggle dark/light theme based on your user's preferred scheme</h2>
</header>
<section class="post-card-excerpt">
<p>This blog focuses on how to switch between the dark and the light theme as per your user's preference.</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<a href="/author/apal/" class="static-avatar">
<img class="author-profile-image" src="//www.gravatar.com/avatar/fd29a9dce2da5d0631e635d01107669d?s=250&d=mm&r=x" alt="Apal Shah" />
</a>
</li>
</ul>
<div class="post-card-byline-content">
<span><a href="/author/apal/">Apal Shah</a></span>
<span class="post-card-byline-date"><time datetime="2020-02-01">Feb 1, 2020</time> <span class="bull">•</span> 3 min read</span>
</div>
</footer>
</div>
</article>
<article class="post-card post tag-tech tag-javascript tag-node-js ">
<a class="post-card-image-link" href="/common-javascript-promise-mistakes-beginners/">
<img class="post-card-image"
srcset="/content/images/size/w300/2019/12/promises-errors.png 300w,
/content/images/size/w600/2019/12/promises-errors.png 600w,
/content/images/size/w1000/2019/12/promises-errors.png 1000w,
/content/images/size/w2000/2019/12/promises-errors.png 2000w"
sizes="(max-width: 1000px) 400px, 800px"
src="/content/images/size/w600/2019/12/promises-errors.png"
alt="Common Javascript Promise mistakes every beginner should know and avoid"
loading="lazy"
/>
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="/common-javascript-promise-mistakes-beginners/">
<header class="post-card-header">
<div class="post-card-primary-tag">Tech</div>
<h2 class="post-card-title">Common Javascript Promise mistakes every beginner should know and avoid</h2>
</header>
<section class="post-card-excerpt">
<p>I wish I knew about all these mistakes while learning javascript and promises.</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<a href="/author/apal/" class="static-avatar">
<img class="author-profile-image" src="//www.gravatar.com/avatar/fd29a9dce2da5d0631e635d01107669d?s=250&d=mm&r=x" alt="Apal Shah" />
</a>
</li>
</ul>
<div class="post-card-byline-content">
<span><a href="/author/apal/">Apal Shah</a></span>
<span class="post-card-byline-date"><time datetime="2019-12-29">Dec 29, 2019</time> <span class="bull">•</span> 5 min read</span>
</div>
</footer>
</div>
</article>
<article class="post-card post tag-design tag-design-thinking tag-design-research-template tag-ux-research-template tag-research-template tag-product-research tag-ux-designers ">
<a class="post-card-image-link" href="/product-research-template-for-new-onboard-ux-designers-and-teams/">
<img class="post-card-image"
srcset="/content/images/size/w300/2019/12/joao-silas-I_LgQ8JZFGE-unsplash.jpg 300w,
/content/images/size/w600/2019/12/joao-silas-I_LgQ8JZFGE-unsplash.jpg 600w,
/content/images/size/w1000/2019/12/joao-silas-I_LgQ8JZFGE-unsplash.jpg 1000w,
/content/images/size/w2000/2019/12/joao-silas-I_LgQ8JZFGE-unsplash.jpg 2000w"
sizes="(max-width: 1000px) 400px, 800px"
src="/content/images/size/w600/2019/12/joao-silas-I_LgQ8JZFGE-unsplash.jpg"
alt="A Product research template for new onboard UX designers, and teams."
loading="lazy"
/>
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="/product-research-template-for-new-onboard-ux-designers-and-teams/">
<header class="post-card-header">
<div class="post-card-primary-tag">Design</div>
<h2 class="post-card-title">A Product research template for new onboard UX designers, and teams.</h2>
</header>
<section class="post-card-excerpt">
<p>Sometimes, when we designers join the new companies or startups, we were directly given the responsibility to design the best user experience for the products and one of the team members just explains us the problems of the product and take us through the whole product experience, they believe that</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<a href="/author/aman/" class="static-avatar">
<img class="author-profile-image" src="/content/images/size/w100/2019/08/DNC-XEROX---784-1.jpg" alt="Aman Gupta" />
</a>
</li>
</ul>
<div class="post-card-byline-content">
<span><a href="/author/aman/">Aman Gupta</a></span>
<span class="post-card-byline-date"><time datetime="2019-12-23">Dec 23, 2019</time> <span class="bull">•</span> 3 min read</span>
</div>
</footer>
</div>
</article>
<article class="post-card post tag-design tag-design-thinking tag-design-value tag-observation tag-ui-design tag-ux-design tag-ui tag-why-design ">
<a class="post-card-image-link" href="/why-people-dont-even-care-about-your-design/">
<img class="post-card-image"
srcset="/content/images/size/w300/2019/12/Screenshot_2019-10-28-09-22-08-795_com.twitter.android.png 300w,
/content/images/size/w600/2019/12/Screenshot_2019-10-28-09-22-08-795_com.twitter.android.png 600w,
/content/images/size/w1000/2019/12/Screenshot_2019-10-28-09-22-08-795_com.twitter.android.png 1000w,
/content/images/size/w2000/2019/12/Screenshot_2019-10-28-09-22-08-795_com.twitter.android.png 2000w"
sizes="(max-width: 1000px) 400px, 800px"
src="/content/images/size/w600/2019/12/Screenshot_2019-10-28-09-22-08-795_com.twitter.android.png"
alt="Why people don't even care about your design?"
loading="lazy"
/>
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="/why-people-dont-even-care-about-your-design/">
<header class="post-card-header">
<div class="post-card-primary-tag">Design</div>
<h2 class="post-card-title">Why people don't even care about your design?</h2>
</header>
<section class="post-card-excerpt">
<p>Being a designer this might sound harsh but it’s the truth. People don’t care about your designs. They don’t even believe in your designs. Instead, what they believe in is whether your product can make their life simpler or not.</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<a href="/author/aman/" class="static-avatar">
<img class="author-profile-image" src="/content/images/size/w100/2019/08/DNC-XEROX---784-1.jpg" alt="Aman Gupta" />
</a>
</li>
</ul>
<div class="post-card-byline-content">
<span><a href="/author/aman/">Aman Gupta</a></span>
<span class="post-card-byline-date"><time datetime="2019-12-08">Dec 8, 2019</time> <span class="bull">•</span> 5 min read</span>
</div>
</footer>
</div>
</article>
<article class="post-card post tag-design tag-design-thinking tag-design-value tag-ui tag-ui-design ">
<a class="post-card-image-link" href="/3-things-ui-designers-can-learn-from-the-developers-around-them/">
<img class="post-card-image"
srcset="/content/images/size/w300/2019/12/nik-macmillan-YXemfQiPR_E-unsplash.jpg 300w,
/content/images/size/w600/2019/12/nik-macmillan-YXemfQiPR_E-unsplash.jpg 600w,
/content/images/size/w1000/2019/12/nik-macmillan-YXemfQiPR_E-unsplash.jpg 1000w,
/content/images/size/w2000/2019/12/nik-macmillan-YXemfQiPR_E-unsplash.jpg 2000w"
sizes="(max-width: 1000px) 400px, 800px"
src="/content/images/size/w600/2019/12/nik-macmillan-YXemfQiPR_E-unsplash.jpg"
alt="3 things UI Designers can learn from the developers around them."
loading="lazy"
/>
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="/3-things-ui-designers-can-learn-from-the-developers-around-them/">
<header class="post-card-header">
<div class="post-card-primary-tag">Design</div>
<h2 class="post-card-title">3 things UI Designers can learn from the developers around them.</h2>
</header>
<section class="post-card-excerpt">
<p>Being an only UX/UI designer in a team of full of developers is hard because every day you have to struggle hard to keep everyone on the same page while handling and sharing deliverables like UI pages, icons, illustrations, design specs. I was doing my work perfectly being a</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<a href="/author/aman/" class="static-avatar">
<img class="author-profile-image" src="/content/images/size/w100/2019/08/DNC-XEROX---784-1.jpg" alt="Aman Gupta" />
</a>
</li>
</ul>
<div class="post-card-byline-content">
<span><a href="/author/aman/">Aman Gupta</a></span>
<span class="post-card-byline-date"><time datetime="2019-12-01">Dec 1, 2019</time> <span class="bull">•</span> 6 min read</span>
</div>
</footer>
</div>
</article>
<article class="post-card post tag-tech tag-javascript tag-algorithms ">
<a class="post-card-image-link" href="/does-google-maps-always-show-us-the-best-route-while-navigating/">
<img class="post-card-image"
srcset="/content/images/size/w300/2019/11/google-maps.jpeg 300w,
/content/images/size/w600/2019/11/google-maps.jpeg 600w,
/content/images/size/w1000/2019/11/google-maps.jpeg 1000w,
/content/images/size/w2000/2019/11/google-maps.jpeg 2000w"
sizes="(max-width: 1000px) 400px, 800px"
src="/content/images/size/w600/2019/11/google-maps.jpeg"
alt="Does Google Maps always show us the best route while navigating?"
loading="lazy"
/>
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="/does-google-maps-always-show-us-the-best-route-while-navigating/">
<header class="post-card-header">
<div class="post-card-primary-tag">Tech</div>
<h2 class="post-card-title">Does Google Maps always show us the best route while navigating?</h2>
</header>
<section class="post-card-excerpt">
<p>This thought randomly came to my mind when I was going to a place with my friends in a car, and 3 of us started to navigate. I noticed that all of us got slightly different routes and all of them had a little variation in time. Before that, I</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<a href="/author/apal/" class="static-avatar">
<img class="author-profile-image" src="//www.gravatar.com/avatar/fd29a9dce2da5d0631e635d01107669d?s=250&d=mm&r=x" alt="Apal Shah" />
</a>
</li>
</ul>
<div class="post-card-byline-content">
<span><a href="/author/apal/">Apal Shah</a></span>
<span class="post-card-byline-date"><time datetime="2019-11-23">Nov 23, 2019</time> <span class="bull">•</span> 4 min read</span>
</div>
</footer>
</div>
</article>
<article class="post-card post tag-tech tag-node-js tag-javascript tag-security ">
<a class="post-card-image-link" href="/node-js-how-to-open-password-protected-zip-file/">
<img class="post-card-image"
srcset="/content/images/size/w300/2019/11/password-protected-zip.jpeg 300w,
/content/images/size/w600/2019/11/password-protected-zip.jpeg 600w,
/content/images/size/w1000/2019/11/password-protected-zip.jpeg 1000w,
/content/images/size/w2000/2019/11/password-protected-zip.jpeg 2000w"
sizes="(max-width: 1000px) 400px, 800px"
src="/content/images/size/w600/2019/11/password-protected-zip.jpeg"
alt="Node.js - How to open a password-protected .zip file?"
loading="lazy"
/>
</a>