|
- {{ define "title" -}}
- {{ .Site.Title }}
- {{- end }}
- {{ define "header" }}
- {{ partial "masthead.html" . }}
- {{ end }}
- {{ define "main" }}
- <header>
- <h1>{{ .Title }} <small>(rhnvrm)</small></h1>
- </header>
-
- <div class="leader">
- <img src="/wp-content/uploads/me.jpg" class="myimage">
- <div>
- Hello World 👋 <br>
- Welcome to my homepage.
- </div>
- </div>
-
- <br>
- <h2>About</h2>
-
- <h3>Work</h3>
- I’m currently working as a Software Developer at
- <a class="no-underline text-grey-dark" href="https://zerodha.com/products">Zerodha Tech</a>
- where I am writing Golang, Python and a bit of Javascript to
- build fintech products used at scale everyday.
-
- <br><br>
-
- Before Zerodha, I interned with Dell Technologies as a
- Software Engineering Intern and graduated in the Summer of 2018 from
- Shiv Nadar University, Dadri, India.
- <br><br>
-
- At Dell, I was part of a team that was building a
- new end-to-end microservice based product using Golang (and Python) to solve an
- invoice-to-order matching problem which had an effect of increasing
- the cash flows for Dell and customer facing invoice accuracy
- via last mile automation.
-
- <br><br>
- I have
- also worked remotely during my participation in Google Summer
- of Code in 2016 and contributed to the Open Source Apache
- Allura Project that powers SourceForge.com.
-
- <br><br>
- Out of interest and curiosity, I have (little) experience with
- Machine Learning and AI through my pursuit of a Machine Learning
- Nanodegree which I earned through a MOOC curated by Udacity
- which I undertook in the summer of 2017.
- <br><br>
-
- <h3>Personal</h3>
- I am from New Delhi, India and am currently
- based in Bengaluru, India. I write code for a living,
- and often write code as a hobby, or to automate the
- little things. You might find me lurking on online
- message boards, online games and IRC as rhnvrm (an alias I took
- long ago).
-
- <br><br>
-
- <h2>Social</h2>
- <table>
- <tr><td>github</td> <td><a href="https://github.com/rhnvrm">https://github.com/rhnvrm</a></td></tr>
- <tr><td>keybase</td> <td><a href="https://keybase.io/rhnvrm">https://keybase.io/rhnvrm</a></td></tr>
- <tr><td>twitter</td> <td><a href="https://twitter.com/rhnvrm">https://twitter.com/rhnvrm</a></td></tr>
- <tr><td>linkedin</td> <td><a href="https://www.linkedin.com/in/rhnvrm/">https://www.linkedin.com/in/rhnvrm/</a></td></tr>
- <tr><td>youtube</td> <td><a href="https://www.youtube.com/user/TheRohanVerma">https://www.youtube.com/user/TheRohanVerma</a></td></tr>
- </table>
-
- <h2>Projects</h2>
-
- My latest sideproject is <a class="no-underline text-grey-dark" href="https://upi.link/">upi.link</a>, a small and nifty
- programmable UPI shortlink generator.
-
- <br><br>
-
- Here is a list of my most recent projects:
-
- <br><br>
-
- {{ range first 10 .Site.Taxonomies.categories.projects }}
- <li>
- <a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a>
- </li>
- {{ end }}
-
- <br>
-
- You can find all my projects at the <a href="project_list">project listing page</a>.
-
- <br><br>
-
- <h2>Blog</h2>
-
- You can read my <a class="no-underline text-grey-dark" href="/blog">blog</a> where
- I try to write about what I am doing and things I find interesting.
- I have organized my blog using categories
- and tags. You can navigate the blog by using them,
- or if you prefer to view by date, you can visit
- <a href="blog_list">the blog listing page</a>.
- <br><br>
-
- Here are the most recent blogs I wrote,
-
- <br><br>
-
- {{ range first 10 .Site.RegularPages }}
- <li>
- <a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a>
- </li>
- {{ end }}
-
- <br><br>
-
- <section>
- <b>categories</b>: <br>
- {{range ($.Site.GetPage "taxonomyTerm" "categories").Pages }}
- <a href="{{.Permalink}}">{{lower .Title}}</a>
- {{end}}
- <br><br>
- <b>tags</b>: <br>
- {{range ($.Site.GetPage "taxonomyTerm" "tags").Pages }}
- <a href="{{.Permalink}}">{{lower .Title}}</a>
- {{end}}
- </section>
-
- <br>
-
- My blog is also available via <a href="/blog/index.xml">[RSS]</a>
-
- <br><br>
-
-
-
- {{ end }}
- {{ define "footer" }}
- {{ partial "powered-by.html" . }}
- {{ partial "cookie-disclaimer.html" . }}
- {{ end }}
|