Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

153 linhas
4.4KB

  1. {{ define "title" -}}
  2. {{ .Site.Title }}
  3. {{- end }}
  4. {{ define "header" }}
  5. {{ partial "masthead.html" . }}
  6. {{ end }}
  7. {{ define "main" }}
  8. <header>
  9. <h1>{{ .Title }} <small>(rhnvrm)</small></h1>
  10. </header>
  11. <div class="leader">
  12. <img src="/wp-content/uploads/avatar.jpg" class="myimage">
  13. <div>
  14. Hello World 👋 <br>
  15. Welcome to my homepage.
  16. </div>
  17. </div>
  18. <br>
  19. <h2>About</h2>
  20. <h3>Work</h3>
  21. I’m currently working as a Software Developer at
  22. <a class="no-underline text-grey-dark" href="https://zerodha.com/products">Zerodha Tech</a>
  23. where I am writing Golang, Python and a bit of Javascript to
  24. build fintech products used at scale everyday.
  25. <br><br>
  26. Before Zerodha, I interned with Dell Technologies as a
  27. Software Engineering Intern and graduated in the Summer of 2018 from
  28. Shiv Nadar University, Dadri, India.
  29. <br><br>
  30. At Dell, I was part of a team that was building a
  31. new end-to-end microservice based product using Golang (and Python) to solve an
  32. invoice-to-order matching problem which had an effect of increasing
  33. the cash flows for Dell and customer facing invoice accuracy
  34. via last mile automation.
  35. <br><br>
  36. I have
  37. also worked remotely during my participation in Google Summer
  38. of Code in 2016 and contributed to the Open Source Apache
  39. Allura Project that powers SourceForge.com.
  40. <br><br>
  41. Out of interest and curiosity, I have (little) experience with
  42. Machine Learning and AI through my pursuit of a Machine Learning
  43. Nanodegree which I earned through a MOOC curated by Udacity
  44. which I undertook in the summer of 2017.
  45. <br><br>
  46. <h3>Personal</h3>
  47. I am from New Delhi, India and am currently
  48. based in Bengaluru, India. I write code for a living,
  49. and often write code as a hobby, or to automate the
  50. little things. You might find me lurking on online
  51. message boards, online games and IRC as rhnvrm (an alias I took
  52. long ago).
  53. <br><br>
  54. <h2>Social</h2>
  55. <table>
  56. <tr><td>github</td> <td>
  57. <a target="_blank" rel="me" data-hint="Github" title="Github" href="https://github.com/rhnvrm">https://github.com/rhnvrm</a>
  58. </td></tr>
  59. <tr><td>keybase</td> <td>
  60. <a target="_blank" rel="me" data-hint="Keybase" title="Keybase" href="https://keybase.io/rhnvrm">https://keybase.io/rhnvrm</a>
  61. </td></tr>
  62. <tr><td>twitter</td> <td>
  63. <a target="_blank" rel="me" data-hint="Twitter" title="Twitter" href="https://twitter.com/rhnvrm">https://twitter.com/rhnvrm</a>
  64. </td></tr>
  65. <tr><td>linkedin</td> <td>
  66. <a target="_blank" data-hint="Linkedin" title="Linkedin" href="https://www.linkedin.com/in/rhnvrm/">https://www.linkedin.com/in/rhnvrm/</a>
  67. </td></tr>
  68. <tr><td>youtube</td> <td>
  69. <a target="_blank" data-hint="Youtube" title="Youtube" href="https://www.youtube.com/user/TheRohanVerma">https://www.youtube.com/user/TheRohanVerma</a>
  70. </td></tr>
  71. </table>
  72. <h2>Projects</h2>
  73. My latest sideproject is <a class="no-underline text-grey-dark" href="https://upi.link/">upi.link</a>, a small and nifty
  74. programmable UPI shortlink generator.
  75. <br><br>
  76. Here is a list of my most recent projects:
  77. <br><br>
  78. {{ range first 10 .Site.Taxonomies.categories.projects }}
  79. <li>
  80. <a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a>
  81. </li>
  82. {{ end }}
  83. <br>
  84. You can find all my projects at the <a href="project_list">project listing page</a>.
  85. <br><br>
  86. <h2>Blog</h2>
  87. You can read my <a class="no-underline text-grey-dark" href="/blog">blog</a> where
  88. I try to write about what I am doing and things I find interesting.
  89. I have organized my blog using categories
  90. and tags. You can navigate the blog by using them,
  91. or if you prefer to view by date, you can visit
  92. <a href="blog_list">the blog listing page</a>.
  93. <br><br>
  94. Here are the most recent blogs I wrote,
  95. <br><br>
  96. {{ range first 10 .Site.RegularPages }}
  97. <li>
  98. <a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a>
  99. </li>
  100. {{ end }}
  101. <br><br>
  102. <section>
  103. <b>categories</b>: <br>
  104. {{range ($.Site.GetPage "taxonomyTerm" "categories").Pages }}
  105. <a href="{{.Permalink}}">{{lower .Title}}</a>
  106. {{end}}
  107. <br><br>
  108. <b>tags</b>: <br>
  109. {{range ($.Site.GetPage "taxonomyTerm" "tags").Pages }}
  110. <a href="{{.Permalink}}">{{lower .Title}}</a>
  111. {{end}}
  112. </section>
  113. <br>
  114. My blog is also available via <a href="/blog/index.xml">[RSS]</a>
  115. <br><br>
  116. {{ end }}
  117. {{ define "footer" }}
  118. {{ partial "powered-by.html" . }}
  119. {{ end }}