Advertisement
Guest User

Untitled

a guest
May 19th, 2019
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.53 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4. <title>Aspiring Theoretician</title>
  5. <base target="_blank">
  6. <!-- TODO Possibly change font to monaco, fallback to monospace -->
  7. <link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
  8. <style>
  9. body {
  10. font-family: 'Roboto', sans-serif;
  11. }
  12.  
  13. /* TODO Maybe style this better */
  14. #publications li, #industry li {
  15. /* TODO Maybe em, px? */
  16. margin: 2%;
  17. }
  18. </style>
  19.  
  20. <!-- TODO SEO tags -->
  21. </head>
  22.  
  23. <body>
  24. <h1>Sai Vikneshwar Mani Jayaraman</h1>
  25. <article id="contact">
  26. <!-- TODO Style contact card -->
  27. <h2>Contact</h2>
  28. <div>Email: saivikne AT buffalo DOT edu</div>
  29. <div>Github: <a href="https://github.com/sai16vicky">sai16vicky</a></div>
  30. <div>Quora: <a href="https://www.quora.com/profile/Sai-Vikneshwar">Sai-Vikneshwar</a></div>
  31. <div>Blog: <a href="https://sai16vicky.wordpress.com/">sai16vicky</a></div>
  32. <!--TODO refine this-->
  33. <div>CV: On request</div>
  34. </article>
  35.  
  36. <article id="bio">
  37. <!-- TODO Style Bio -->
  38. <h2>Bio</h2>
  39. <div> I am a fifth year PhD student in University at Buffalo advised by <a
  40. href="https://cse.buffalo.edu/faculty/atri">Atri Rudra</a>. My research interests revolve around
  41. Database
  42. Theory, Theoretical Machine Learning and Error-Correcting Codes for Distributed Storage.
  43. </div>
  44. </article>
  45.  
  46. <article id="publications">
  47. <!-- TODO Style Publications -->
  48. <h2>Publications</h2>
  49. <section id="publications-papers">
  50. <h3>Published</h3>
  51. <ul>
  52. <!-- TODO Work on one of these together -->
  53. <!-- TODO BAD i tag 😢-->
  54. <li>
  55. <a href="https://cse.buffalo.edu/tech-reports/2019-01.pdf">Topology Dependent Bounds For FAQs</a>
  56. <div>Michael Langberg, Shi Li, Sai Vikneshwar Mani Jayaraman and Atri Rudra</div>
  57. <div>In <i>Principles of Database Systems, PODS</i>, 2019.</div>
  58. </li>
  59. <li>Publication 2</li>
  60. <li>Publication 3</li>
  61. <li>Publication 4</li>
  62. </ul>
  63. </section>
  64. <section id="publications-in-submission">
  65. <h3>In Submission</h3>
  66. <ul>
  67. <li>Publication 1</li>
  68. <li>Publication 2</li>
  69. <li>Publication 3</li>
  70. <li>Publication 4</li>
  71. </ul>
  72. </section>
  73. <section id="publications-in-prep">
  74. <h3>In Preparation</h3>
  75. <ul>
  76. <li>Publication 1</li>
  77. <li>Publication 2</li>
  78. <li>Publication 3</li>
  79. <li>Publication 4</li>
  80. </ul>
  81. </section>
  82. </article>
  83.  
  84. <article id="industry">
  85. <section>
  86. <!-- TODO Style this -->
  87. <h2>Industry Experience</h2>
  88. <ul>
  89. <!-- TODO Work on one of these together -->
  90. <li>
  91. Research Intern, <i> Microsoft Research, India</i>, 2017
  92. <div> Studied Error-Correcting Codes for Distributed Storage that optimize on network repair
  93. bandwidth. Work resulted in a paper (see Publications above for more details). Mentored by <a
  94. href="https://www.microsoft.com/en-us/research/people/satya">Satya Lokam</a>. </div>
  95. </li>
  96. <li>Internship 2</li>
  97. </ul>
  98. </section>
  99. </article>
  100.  
  101. <article id="awards">
  102. <section>
  103. <!-- TODO Style this -->
  104. <h2>Awards/Achievements</h2>
  105. <ul>
  106. <!-- TODO Work on one of these together -->
  107. <li>
  108. Invited to attend the <i>Coding and Information Theory Workshop (CTW'18)</i> at Harvard.
  109. </li>
  110. <li>Award 2</li>
  111. </ul>
  112. </section>
  113. </article>
  114.  
  115. <article id="talks">
  116. <section>
  117. <!-- TODO Style this -->
  118. <h2>Invited Talks/Posters</h2>
  119. <ul>
  120. <!-- TODO Work on one of these together -->
  121. <li>Award 1</li>
  122. <li>Award 2</li>
  123. </ul>
  124. </section>
  125. </article>
  126. </body>
  127.  
  128. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement