-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·1736 lines (1615 loc) · 49.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>
<!--[if lt IE 8]><html class="no-js ie ie7" lang="en"> <![endif]-->
<!--[if IE 8]><html class="no-js ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 8)|!(IE)]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<!--- Basic Page Needs
================================================== -->
<meta charset="utf-8" />
<title>Kautilya Save - Sensehack</title>
<!-- Open Graph Sharing Preview Configuration -->
<meta
name="description"
content="Developer | Traveller | Technophile | Photographer | Foodie | Designer"
/>
<meta property="og:title" content="Kautilya Save - Sensehack" />
<meta property="og:url" content="https://sensehack.github.io" />
<meta
property="og:description"
content="Developer | Traveller | Technophile | Photographer | Foodie | Designer"
/>
<!-- <meta property="og:image" content="https://sensehack.github.io/ks_i.png"> -->
<meta
property="og:image"
content="https://sensehack.github.io/ogKS.png"
alt="Kautilya Save Logo"
/>
<meta property="og:type" content="article" />
<meta property="og:locale" content="en_US" />
<!-- Sharing preview end. -->
<!-- SEO -->
<meta name="author" content="Kautilya Save , Sensehack" />
<meta name="SEO" content="Kautilya Save" />
<!-- Google Analytics
================================================== -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-120726119-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-120726119-1");
</script>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
"gtm.start": new Date().getTime(),
event: "gtm.js",
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != "dataLayer" ? "&l=" + l : "";
j.async = true;
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, "script", "dataLayer", "GTM-NBJTKDK");
</script>
<!-- End Google Tag Manager -->
<!-- Mobile Specific Meta
================================================== -->
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<!-- LinkedIn Script
================================================== -->
<!-- <script
type="text/javascript"
src="https://platform.linkedin.com/badges/js/profile.js"
async
defer
></script> -->
<!-- Javascript Libraries
================================================== -->
<!-- Google Charts -->
<!--Load the AJAX API-->
<script
type="text/javascript"
src="https://www.gstatic.com/charts/loader.js"
></script>
<!-- Google Charts end-->
<!-- Script
================================================== -->
<script src="js/modernizr.js"></script>
<!-- Trakt Movies Script
================================================== -->
<script src="js/traktMovies.js"></script>
<!-- Trakt TV Script
================================================== -->
<script src="js/traktShows.js"></script>
<!-- Last FM Script
================================================== -->
<script src="js/lastFm.js"></script>
<!-- RescueTime Script
================================================== -->
<!-- <script src="js/rescueTime.js"></script> -->
<!-- Remove Embedly Script
================================================== -->
<script src="js/embed.js"></script>
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/default.css" />
<link rel="stylesheet" href="css/layout.css" />
<link rel="stylesheet" href="css/media-queries.css" />
<link rel="stylesheet" href="css/magnific-popup.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.0.13/css/all.css"
integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp"
crossorigin="anonymous"
/>
<!-- Custom fonts from myfontastic for Trakt TV SVG. -->
<!-- <link
href="https://file.myfontastic.com/RdqTEHU3NGAZLVYoyxjbQ8/icons.css"
rel="stylesheet"
/> -->
<!-- <link rel="stylesheet" href="https://file.myfontastic.com/RdqTEHU3NGAZLVYoyxjbQ8/icons.css"> -->
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="ms1.ico" />
</head>
<!-- End head -->
<!-- <body onload="reloadPage()"> -->
<body>
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-NBJTKDK"
height="0"
width="0"
style="display: none; visibility: hidden"
></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- Header
================================================== -->
<header id="home" title="Kautilya Save Intro">
<nav id="nav-wrap">
<a class="mobile-btn" href="#nav-wrap" title="Show navigation"
>Show navigation</a
>
<a class="mobile-btn" href="#" title="Hide navigation"
>Hide navigation</a
>
<ul id="nav" class="nav">
<li class="current">
<a class="smoothscroll" href="#home">Home</a>
</li>
<li>
<a class="smoothscroll" href="#about">About</a>
</li>
<li>
<a class="smoothscroll" href="#resume">Resume</a>
</li>
<li>
<a class="smoothscroll" href="#works">Works</a>
</li>
<li>
<a class="smoothscroll" href="#social">Social</a>
</li>
<li>
<a class="smoothscroll" href="#contact">Contact</a>
</li>
</ul>
<!-- end #nav -->
</nav>
<!-- end #nav-wrap -->
<div class="row banner">
<div class="banner-text">
<h1 class="responsive-headline">I'm Kautilya Save.</h1>
<h3>
I'm an iOS based
<a class="smoothscroll" href="#developer">
<span>app developer</span>
</a>
, <span>web designer</span> and
<a class="smoothscroll" href="#social"> <span>technophile</span> </a
>. <br />Fusing technology with lifestyle to foster something
phenomenal as
<a class="smoothscroll" href="#social"> <span>SensehacK</span>. </a>
<br />
<span>Become my Nakama! </span>
</h3>
<!-- <hr /> -->
<ul class="social">
<li>
<a
href="https://github.com/SensehacK"
title="Github"
target="_blank"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
href="https://www.linkedin.com/in/kautilyasave/"
title="LinkedIn"
target="_blank"
>
<i class="fab fa-linkedin-in"></i>
</a>
</li>
<li>
<a
href="https://www.instagram.com/sensehack/"
title="Instagram"
target="_blank"
>
<i class="fab fa-instagram"></i>
</a>
</li>
<li>
<a
href="https://www.trueachievements.com/gamer/Sensehack/gamecollection"
title="Xbox"
target="_blank"
>
<i class="fab fa-xbox"></i>
</a>
</li>
<li>
<a
href="https://trakt.tv/user/SensehacK"
title="Trakt TV"
target="_blank"
>
<!-- <i class="icon-trakt-white trakt "></i> -->
<!-- <i class="fas fa-tv-retro"></i> -->
<i class="fas fa-tv"></i>
</a>
</li>
<li>
<a
href="https://medium.com/@kautilyasave"
title="Medium"
target="_blank"
>
<i class="fab fa-medium"></i>
</a>
</li>
<li>
<a
href="https://www.last.fm/user/Sensehack"
title="Last FM"
target="_blank"
>
<i class="fab fa-lastfm"></i>
</a>
</li>
<li>
<a
href="https://open.spotify.com/user/sensehack"
title="Spotify"
target="_blank"
>
<i class="fab fa-spotify"></i>
</a>
</li>
</ul>
</div>
</div>
<!-- <div style="float: right; margin-top: 20px">
<img src="assets/images/dev.png" width="200" />
</div> -->
<!-- Adding trakt.tv icon svg <img src="Assets/trakt.svg" > without i class -->
<!-- // Disabling Chevron -->
<!-- <p class="scrolldown">
<a class="smoothscroll" href="#about">
<i class="fas fa-chevron-circle-down"></i>
<!-- <i class="icon-down-circle"></i> -->
<!-- </a>
</p> -->
</header>
<!-- Header End -->
<!-- About Section
================================================== -->
<section id="about">
<div class="row">
<div class="four columns">
<img
class="profile-pic"
src="assets/images/luffyProfile.png"
alt=""
/>
<!--
<div
class="LI-profile-badge linkedin-pic-verti"
data-version="v1"
data-size="medium"
data-locale="en_US"
data-type="vertical"
data-theme="dark"
data-vanity="kautilyasave"
>
<a
class="LI-simple-link"
href="https://www.linkedin.com/in/kautilyasave?trk=profile-badge"
>Kautilya Save</a
>
</div>
<div
class="LI-profile-badge linkedin-pic-horiz"
data-version="v1"
data-size="large"
data-locale="en_US"
data-type="horizontal"
data-theme="dark"
data-vanity="kautilyasave"
>
<a
class="LI-simple-link"
href="https://www.linkedin.com/in/kautilyasave?trk=profile-badge"
>Kautilya Save</a
>
</div>
-->
</div>
<div></div>
<div class="eight columns main-col">
<h2>About Me</h2>
<p>
Always striving hard in optimizing daily tasks through Technology
combined with witty sense nicknamed as
<strong>"SensehacK"</strong>. <br />
Passion for Computing & enjoying Photography as a hobby.
<br />Swift learning is always been his forte. Curiosity driven
android who enjoys journeying to different places & advocates
eccentric road trip experiences. <br />
Currently working as a Software Engineer - Mobile at Trackvia based in Denver,
Colorado.
</p>
<div class="row">
<div class="columns contact-details">
<h2>Contact Details</h2>
<p class="address">
<span>Kautilya Save</span>
<br />
<span>Denver, Colorado USA <br /> </span>
<span
>Ph no:
<a href="tel:+16509337177">+1(650)933-7177</a>
</span>
<br />
<span>
<a
href="mailto:[email protected]?Subject=Kautilya%20Save"
target="_top"
>
</span>
</p>
</div>
<div class="columns download">
<p>
<!-- <a href="miscellaneous/Resume.md" class="button" download target="_blank"> -->
<a
href="assets/files/kautilyaResume.pdf"
class="button"
download
target="_blank"
>
<i class="fa fa-download"></i>Download Resume</a
>
</p>
</div>
</div>
<!-- end row -->
</div>
<!-- end .main-col -->
</div>
</section>
<!-- About Section End-->
<!-- Resume Section
================================================== -->
<section id="resume">
<!-- Work -->
<div class="row work">
<div class="three columns header-col">
<h1>
<span>Work</span>
</h1>
</div>
<div class="eleven columns main-col">
<div class="row item">
<div class="twelveL columns">
<h3>Trackvia Inc.,</h3>
<p class="info">
Software Engineer II - Mobile
<span>•</span>
<em class="date">May 2021 – Present</em>
<span>•</span>
<em class="date">Denver, CO</em>
</p>
<p>
<span>•</span>
Developed various features for iOS app like forms, multiple
account access, and refactoring the codebase to incorporate
reactive view state architecture, leading the mobile ux to
evolve with product led growth and intuitive user experiences.
<br />
<span>•</span>
Worked closely with the VP of Software Engineering to deliver
features prototyped by the product team and transition into SPM,
session refactor, and automated form design generation accounting
for 60% of the core functionality of the product.
<br />
<span>•</span>
Developed the switch accounts experience with module ownership of
the codebase to architect user interactions, and design efficient
reactive functions, reducing the codebase by 25% using reusable
extensions and distinct view state models.
</p>
</div>
</div>
<div class="row item">
<div class="twelveL columns">
<h3>WearWorks</h3>
<p class="info">
iOS Engineer
<span>•</span>
<em class="date">June 2020 – Nov 2020</em>
<span>•</span>
<em class="date">New York, NY</em>
</p>
<p>
<span>•</span>
Designed & developed various features for iOS app like social
logins, maps SDK integration, and settings screens targeted
towards accessible users,leading the mobile team as a subject
matter expert for the weekly sprint discussions.
<br />
<span>•</span>
Followed Protocol-Oriented programming with loosely coupled
components and utilized Swift syntactic sugar to architect a
robust development environment, incorporating planning for
resourceful teamwork and faster deliverables up to 30%.
</p>
</div>
</div>
<!-- item end -->
<div class="row item">
<div class="twelveL columns">
<h3>Glimpse Group Inc.</h3>
<p class="info">
Mobile App Developer
<span>•</span>
<em class="date">May 2020 – Aug 2020</em>
<span>•</span>
<em class="date">New York, NY</em>
</p>
<p>
<span>•</span>
Collaborated in a team of three developers to implement a
cross-platform Android / iOS Unity app using C#, assisting the
user in learning about their mental health & feelings to ease
substance abuse.
<br />
<span>•</span>
Developed the online coach experience with module ownership of
the codebase to architect user navigation, and design efficient
reusable functions, thus reducing the 20% of code conflicts for
future releases
<br />
<span>•</span>
Led team in industry standard design and development guidelines,
advocating best practices in cross-functional teamwork.
</p>
</div>
</div>
<div class="row item">
<div class="twelveL columns">
<h3>Infosys Limited</h3>
<p class="info">
Software Engineer II | iOS Engineer | Web Developer
<span>•</span>
<em class="date">Jan 2017 - Jul 2019</em>
<span>•</span>
<em class="date">Maharashtra, India</em>
</p>
<p>
<span>•</span>
Developed computer software, such as several iOS and web
applications for multiple clients to be used on iPhones & iPads,
participating in the entire life cycle of the software projects
and following state-of-the-art enterprise trends.
<br />
<span>•</span>
Constructed the user interface for SalesTouch using Swift, and
hosted it on GitHub Enterprise, following Agile development to
enable buyers to customize and finalize their car purchase
digitally and to allow the German automotive company to expedite
and streamline the process, saving $25,000 per dealership every
month via increased transparency and efficiency.
<br />
<span>•</span>
Led a team of three with a focus on creativity to research the
design and development of the UI for rebranding the application
for a global financial auditing company using Swift and Adobe
XD, resulting in enhancing the UX, increasing access to the
company financial information, and shrinking the need for help
desk by 70%.
<br />
<span>•</span>
Engineered 3 iOS applications with adaptable workflows for a
retail company using different APIs and OAuth authentication
server, which eliminated mundane tasks performed every day with
presented user analytics and insights, leading to 50% increase
in customer retention business and target for future improvement
of their product.
<br />
<span>•</span>
Enhanced the software development pattern for iOS applications
using Azure CI/CD pipeline by automation of test cases,
integration, code signing and package distribution for increased
throughput, reducing the need for information technology
resources, such as testing, maintenance, & deployment teams, by
90% whilst slashing release time by 250%.
</p>
</div>
</div>
<!-- item end -->
</div>
<!-- main-col end -->
</div>
<!-- End Work -->
<!-- Education
================================================== -->
<div class="row education">
<div class="three columns header-col">
<h1>
<span>Education</span>
</h1>
</div>
<div class="eleven columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>Pace University, Seidenberg School of Computer Science and Information Systems</h3>
<p class="info">
Master of Science (MS) in Computer Science
<span>•</span>
<em class="date">May 2021</em>
</p>
<p>
Expanding my understanding with computing everyday. Improving my
fundamental problem solving skills by going back to the drawing
board.
</p>
</div>
</div>
<div class="row item">
<div class="twelve columns">
<h3>
Dwarkadas J. Sanghvi College of Engineering (Mumbai University)
</h3>
<p class="info">
B.E. Degree in Computer Science
<span>•</span>
<em class="date">June 2016</em>
</p>
<p>
As a 3 year graduate programme witness firsthand intermediate
level of computer science theoretical knowledge & practical
implementation. Aside from the normal curriculum, I was too busy
exploring web development & being a photographer as a hobby
driven work. During this time I forked up some web development
projects with numerous clients like
<b>“OYCE”</b> , <b>“Backbencher’s Designs”</b> & also worked
as a <b>“Google Trusted Photographer”</b> for 360 Panoramic
photography.
</p>
</div>
</div>
<!-- item end -->
<!-- <div class="row item">
<div class="twelve columns">
<h3>Bhausaheb Vartak Polytechnic</h3>
<p class="info">
Diploma in Computer Engineering
<span>•</span>
<em class="date">May 2013</em>
</p>
<p>
Freshman college days were the best, the whole time just flew
right away. This was my first introduction to programming &
project works related to computers. I was enthralled to work in
unison with team on Diploma’s Computer Project. Worked on
“Computer controlled Robotic Car” as my diploma project &
aside from that participated in various events related to gaming
& tech bootcamps such as automation & security.
</p>
</div>
</div> -->
<!-- item end -->
</div>
<!-- main-col end -->
</div>
<!-- End Education -->
<!-- Skills
-->
<div class="row" id="developer">
<div class="skill columns collapsed">
<h1>Check out my Skills.</h1>
<div class="twelve columns header-col">
<h1>
<span>1001001 🤖</span>
</h1>
<p>
Over the past couple years I have been adamant about being an
efficient software developer and that zeal still grows stronger
each day as I enjoy accumulating new information pertaining to
technology.
</p>
<div class="twelve columns bars">
<button class="message-me">Swift</button>
<button class="message-me">Typescript</button>
<button class="message-me">UI/UX</button>
<button class="message-me">Javascript</button>
<button class="message-me">HTML</button>
<button class="message-me">CSS</button>
<button class="message-me">Python</button>
<button class="message-me">Objective C</button>
<button class="message-me">SQL</button>
<button class="message-me">NodeJS</button>
<button class="message-me">Ruby</button>
<button class="message-me">MongoDB</button>
</div>
<!-- end Technical skill-bars -->
</div>
<div class="twelve columns header-col">
<h1>
<span>Tools 🧰 Methodologies</span>
</h1>
<p>
Below are the technical skills which I have been enhancing to
being a self-reliant developer as a whole.
</p>
<div class="twelve columns bars">
<button class="message-me">Xcode</button>
<button class="message-me">Git</button>
<button class="message-me">CI/CD</button>
<button class="message-me">Agile</button>
<button class="message-me">MVC Pattern</button>
<button class="message-me">MVVM Pattern</button>
<button class="message-me">Reactive Programming</button>
<button class="message-me">POP Pattern</button>
<button class="message-me">Unit Testing</button>
<button class="message-me">KanBan</button>
<button class="message-me">Jira</button>
<button class="message-me">Visual Studio Code</button>
<button class="message-me">Docker</button>
<button class="message-me">Sketch</button>
<button class="message-me">Figma</button>
<button class="message-me">Unity</button>
<button class="message-me">Postman</button>
</div>
</div>
<div class="twelve columns header-col">
<h1>
<span>Hobbyist 🔋</span>
</h1>
<p>
My perspective at life is enjoying the lifelong journey by
prevailing various obstacles thrown at you. Appetite for utilizing
my time into engaging new experiences along my daily lifestyle
which makes me blissful.
</p>
<div class="twelve columns bars">
<button class="message-me">Technical Writer</button>
<button class="message-me">Photography</button>
<button class="message-me">Gaming</button>
<button class="message-me">Biking</button>
<button class="message-me">Automation</button>
<button class="message-me">Public Contribution</button>
<button class="message-me">Designing</button>
<button class="message-me">Documentation</button>
</div>
<!-- end hobby skill-bubbles -->
</div>
</div>
<!-- main-col end -->
</div>
<!-- End skills -->
</section>
<!-- Resume Section End-->
<!-- Medium Article Section
================================================== -->
<section id="works">
<div class="row skill">
<div class="twelveL columns collapsed">
<!-- <div class="twelveL columns collapsed"> -->
<h1>
<span>Articles Written.</span>
</h1>
<!-- Articles in 3 x 4 column size Part. -->
<div class="four columns header-col">
<a
class="embedly-card"
data-card-via="https://embed.ly/code?url=https%3A%2F%2Fmedium.com%2F%40kautilyasave%2Ftop-ten-apple-watch-apps-4ac3af1eab1f"
href="https://medium.com/@kautilyasave/top-ten-apple-watch-apps-4ac3af1eab1f"
target="_blank"
>Top Ten Apple Watch Apps. - Kautilya Save - Medium</a
>
<script
async
src="//cdn.embedly.com/widgets/platform.js"
charset="UTF-8"
></script>
<!-- <script
async
src="js/embedly.js"
charset="UTF-8"
type="text/javascript"
></script> -->
</div>
<div class="four columns header-col">
<a
class="embedly-card"
data-card-via="https://embed.ly/code?url=https%3A%2F%2Fmedium.com%2F%40kautilyasave%2Fad-blocker-prerequisite-of-good-ux-802f2dc428d1"
href="https://medium.com/@kautilyasave/ad-blocker-prerequisite-of-good-ux-802f2dc428d1"
target="_blank"
>Ad Blocker — Prerequisite of good UX - Kautilya Save - Medium</a
>
<!-- <script
async
src="//cdn.embedly.com/widgets/platform.js"
charset="UTF-8"
></script> -->
</div>
<div class="four columns header-col">
<a
class="embedly-card"
data-card-via="https://embed.ly/code?url=https%3A%2F%2Fmedium.com%2F%40kautilyasave%2Ftop-ten-mac-exclusive-apps-e62fdd70aaa6"
href="https://medium.com/@kautilyasave/top-ten-mac-exclusive-apps-e62fdd70aaa6"
target="_blank"
>Top Ten Mac Exclusive Apps - Kautilya Save - Medium</a
>
<!-- <script
async
src="//cdn.embedly.com/widgets/platform.js"
charset="UTF-8"
></script> -->
</div>
<!-- <div class="four columns header-col">
<a
class="embedly-card"
data-card-via="https://embed.ly/code?url=https%3A%2F%2Fmedium.com%2F%40kautilyasave%2Fsave-your-eyes-in-digital-life-d1269f50c06e"
href="https://medium.com/@kautilyasave/save-your-eyes-in-digital-life-d1269f50c06e"
></a
>
<script
async
src="//cdn.embedly.com/widgets/platform.js"
charset="UTF-8"
></script>
</div> -->
<!-- trakttvShows-wrapper -->
</div>
<div class="twelveL columns collapsed">
<!-- Articles in 4 x 3 column size Part. -->
<div class="three columns header-col">
<div class="embedly-card">
<h4>
<a
href="https://medium.com/@kautilyasave/a-powerful-device-at-your-wrist-apple-ios-developers-perspective-a9237c51528a"
target="_blank"
>A powerful device at your wrist - Apple iOS Developer's
Perspective.</a
>
</h4>
<!-- <p>
A powerful device at your wrist available 24 x 7 at your
disposal. Use Cases - Handsfree | Notifications | Tracking |
Apps | Bigger Screen.
</p> -->
<!-- <script
async
src="//cdn.embedly.com/widgets/platform.js"
charset="UTF-8"
></script> -->
</div>
</div>
<div class="three columns header-col">
<div class="embedly-card">
<h4>
<a
href="https://medium.com/@kautilyasave/save-your-eyes-in-digital-life-d1269f50c06e"
target="_blank"
>Save your Eyes in Digital Life! - Kautilya Save - Medium</a
>
</h4>
<!-- <p>
An article comparing Mac OS Dark Mode Implementation Vs Windows
10 Dark Mode & how sleep tracking apps & dark mode could improve
your inconsistent sleep cycles & eyes.
</p> -->
<!-- <script
async
src="//cdn.embedly.com/widgets/platform.js"
charset="UTF-8"
></script> -->
</div>
</div>
<div class="three columns header-col">
<div class="embedly-card">
<h4>
<a
href="https://medium.com/@kautilyasave/xcode-ios-xcode-wireless-deploy-1fe458fa8bf2"
target="_blank"
>Xcode iOS Xcode Wireless Deploy - Kautilya Save - Medium</a
>
</h4>
<!-- <p>
Xcode 9 introduces Wireless Deployment - Debugging and this
5-minute guide will help you in setting that up. Switch to
wireless.
</p> -->
<!-- <script
async
src="//cdn.embedly.com/widgets/platform.js"
charset="UTF-8"
></script> -->
<!-- end skill-bars -->
</div>
</div>
<div class="three columns header-col">
<div class="embedly-card">
<h4>
<a
href="https://medium.com/@kautilyasave/xcode-ios-ipa-package-generation-54a90862f9c7"
target="_blank"
>Xcode iOS iPA Package Generation - Kautilya Save - Medium</a
>
</h4>
<!-- <p>
Open your Project_Name.xcodeproj file from finder or Xcode
recent items. Select main project_name & in general check for
any errors if any.
</p> -->
<!-- <script
async
src="//cdn.embedly.com/widgets/platform.js"
charset="UTF-8"
></script> -->
</div>
</div>
</div>
</div>
<!-- </section> -->
<!-- Medium Movies Section End-->
</section>
<!-- Works Section End-->
<!-- Last Fm Section
================================================== -->
<section id="social">
<div class="row">
<div class="twelve columns collapsed">
<h1>Check out my Listening History.</h1>
<!-- Currently Listening Song Spotify + LastFm -->
<h2 id="currentSong1">Currently listening to</h2>
<h1 id="songGifPlay">
<img id="songGif" src="assets/gifs/ezgif.com-gif-maker.gif" />
</h1>
<!-- social-wrapper -->
<div id="social-wrapper" class="bgrid-quarters s-bgrid-thirds cf">
<div class="columns lastFmMusic-item">
<div class="item-wrap">
<img id="albumSongImage1" alt="" src="assets/i8-lastfm.svg" />
<div class="overlay">
<div class="lastFmMusic-item-meta">
<h5 id="albumSong1">Title</h5>
<p id="albumArtist1">Description</p>
</div>
</div>
</div>
</div>
<!-- item end -->
<div class="columns lastFmMusic-item">
<div class="item-wrap">
<img id="albumSongImage2" alt="" src="assets/i8-lastfm.svg" />
<div class="overlay">
<div class="lastFmMusic-item-meta">
<h5 id="albumSong2">Title</h5>
<p id="albumArtist2">Description</p>
</div>
</div>
</div>
</div>
<!-- item end -->
<div class="columns lastFmMusic-item">
<div class="item-wrap">
<img id="albumSongImage3" alt="" src="assets/i8-lastfm.svg" />
<div class="overlay">
<div class="lastFmMusic-item-meta">
<h5 id="albumSong3">Title</h5>
<p id="albumArtist3">Description</p>
</div>
</div>
</div>
</div>
<!-- item end -->
<div class="columns lastFmMusic-item">
<div class="item-wrap">
<img id="albumSongImage4" alt="" src="assets/i8-lastfm.svg" />
<div class="overlay">
<div class="lastFmMusic-item-meta">
<h5 id="albumSong4">Title</h5>
<p id="albumArtist4">Description</p>
</div>
</div>
</div>
</div>
<!-- item end -->
<div class="columns lastFmMusic-item">
<div class="item-wrap">
<img id="albumSongImage5" alt="" src="assets/i8-lastfm.svg" />
<div class="overlay">
<div class="lastFmMusic-item-meta">