Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaan106 committed May 25, 2024
1 parent 5b2f709 commit 6560b43
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 55 deletions.
10 changes: 5 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@
<header class="fixed top-0 w-full z-50 bg-white shadow-md">
<nav class="container mx-auto px-4 py-4 flex justify-between">
<div>
<a href="index.html" class="text-2xl font-semibold">Shaan Yadav</a>
<a href="index.html" class="text-2xl font-semibold link">Shaan Yadav</a>
</div>
<div>
<a href="#about" class="text-lg">About</a>
<a href="projects.html" class="text-lg ml-6">Projects</a>
<a href="musings.html" class="text-lg ml-6">Quaint Projects</a>
<a href="resume.html" class="text-lg ml-6">Resume</a>
<a href="#about" class="text-lg link">About</a>
<a href="projects.html" class="text-lg ml-6 link">Projects</a>
<a href="musings.html" class="text-lg ml-6 link">Quaint Projects</a>
<a href="resume.html" class="text-lg ml-6 link">Resume</a>
</div>
</nav>
</header>
Expand Down
8 changes: 4 additions & 4 deletions musings.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
<header class="fixed top-0 w-full z-50 bg-white shadow-md">
<nav class="container mx-auto px-4 py-4 flex justify-between">
<div>
<a href="index.html" class="text-3xl font-semibold">Shaan Yadav</a>
<a href="index.html" class="text-3xl font-semibold link">Shaan Yadav</a>
</div>
<div>
<a href="index.html#about" class="text-lg">Home</a>
<a href="index.html#about" class="text-lg link">Home</a>
</div>
</nav>
</header>
Expand All @@ -49,11 +49,11 @@ <h1 class="text-4xl font-bold border-b-2 border-black">Some Vaguely Interesting
<div class="p-6 flex flex-col flex-grow">
<h2 class="text-xl font-bold mb-2">CUDA is very fast</h2>
<p class="text-gray-700 mb-2">
CUDA in C is indeed very fast. I see why people use it.
CUDA in C is indeed very fast.
</p>
<p class="text-gray-700 mb-2">
I learnt how to write CUDA code for C, deal with memory allocation and transfer, how to write kernels.
The speedup compared to a CPU implementation of a 3 body problem I wrote was ~70x, which was quite surprising.
The speedup compared to a CPU implementation of a 3 body problem I wrote was ~70x, which was very impressive.
</p>
<p class="text-gray-700 mb-2">
Initial motivation was to significantly speed up the
Expand Down
60 changes: 16 additions & 44 deletions projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
<header class="top-0 w-full z-50 bg-white shadow-md">
<nav class="container mx-auto px-4 py-4 flex justify-between">
<div>
<a href="index.html" class="text-2xl font-semibold">Shaan Yadav</a>
<a href="index.html" class="text-2xl font-semibold link">Shaan Yadav</a>
</div>
<div>
<a href="index.html" class="text-lg">Home</a>
<a href="index.html" class="text-lg link">Home</a>
</div>
</nav>
</header>
Expand Down Expand Up @@ -373,50 +373,18 @@ <h2 class="text-3xl font-bold pt-4">☼ Solar_Panel_Dust_Sensor</h2>
</div>


<!-- Logisim CPU -->
<!-- ------------------------ OLD CONTENT ----------------------------------- -->

<div class="flex items-center mt-10">
<div class="flex-grow border-t-2 border-black mr-4"></div> <!-- Horizontal line on the left -->
<h2 class="text-3xl font-bold pt-4">04_Logisim CPU</h2>
</div>

<div class="flex">
<div class="w-2/3">
<img src="./assets/Logisim/CPU.png" alt="Work 1" class="w-full h-auto bg-gray-300">
<div class="flex w-1/2">
<img src="./assets/Logisim/Controller.png" alt="Work 1" class="w-full h-auto bg-gray-300">
<img src="./assets/Logisim/MemoryLatch.png" alt="Work 1" class="w-full h-auto bg-gray-300">
</div>
</div>
<div class="w-1/3 ml-8">
<p class="mt-6 text-xl pt-8"> <!-- Added top padding to the text content -->
Built a fully functioning CPU in Logisim.
<br><br>
Designed and implemented a fully functioning 16-bit word addressed RISC architecture CPU in Logisim.
The CPU is based on the MIPS assembly language.
<br><br>
Can carry out basic ALU operations such as add, sub, and, not etc. as well as
Program Counter based operations such as jumps (and links), jump returns and branching.
Also dealt with load/storing words into main memory, and dealing with keyboard inputs and displaying outputs.
<br><br>
Built all components of the CPU from the ground up (using nothing but wires, D flip flops, and/not/or gates and control buffers)
- ie the ALU, controller, shifters, register files, entire CPU pipeline.

</p>
</div>
</div>

<!-- Raiz Vertical Farms -->

<!--
<div class="flex items-center mt-10">
<h2 class="text-3xl font-bold pt-4">05_Raiz Vertical Farms</h2>
<div class="flex-grow border-t-2 border-black ml-4"></div> <!-- Horizontal line -->
<div class="flex-grow border-t-2 border-black ml-4"></div>
</div>


<div class="flex">
<div class="w-2/3">
<p class="mt-6 text-xl"> <!-- Added top padding to the text content -->
<p class="mt-6 text-xl">
I interned as a software engineer at <a class="link" href="https://www.raiz.farm"> <u>Raiz Vertical Farms</u></a>
in the summer of 2023, which is a startup
that is bringing vertical farms to urban cities, making produce much more environmentally friendly and healthier.
Expand All @@ -437,20 +405,19 @@ <h2 class="text-3xl font-bold pt-4">05_Raiz Vertical Farms</h2>
<img src="assets/Raiz/ConceptFarm.png" alt="Work 1" class="bg-gray-300">
<div class="flex w-1/2">
<!-- <img src="./assets/Raiz/ConceptFarm.png" alt="Work 1" class="h-auto bg-gray-300"> -->
<img src="./assets/Raiz/Hardware1.png" alt="Work 1" class="w-full h-auto bg-gray-300">
<img src="./assets/Raiz/Hardware2.png" alt="Work 1" class="ml-5 w-full h-auto bg-gray-300">
</div>
</div>
</div>

</div>
-->

<!-- Singh Lab -->
<!--
<div>
<div class="flex items-center mt-10">
<div class="flex-grow border-t-2 border-black mr-4"></div> <!-- Horizontal line on the left -->
<div class="flex-grow border-t-2 border-black mr-4"></div>
<h2 class="text-3xl font-bold pt-4">02_Machine Learning for Proteins and Drug Discovery</h2>
</div>
Expand All @@ -461,7 +428,7 @@ <h2 class="text-3xl font-bold pt-4">02_Machine Learning for Proteins and Drug Di
</div>
<div class="w-2/3 ml-8">
<p class="mt-6 text-xl"> <!-- Added top padding to the text content -->
<p class="mt-6 text-xl">
I'm currently working under <a class="link" href="https://singhlab.net"> <u>Dr Rohit Singh</u></a>
about machine learning models for better drug development.
<br><br>
Expand All @@ -478,12 +445,13 @@ <h2 class="text-3xl font-bold pt-4">02_Machine Learning for Proteins and Drug Di
</div>
</div>

-->

</section>


<!-- Resume Section -->
<!--
<section id="experience" class="container mx-auto px-4 py-20">
<h2 class="text-4xl font-bold">Other Experience</h2>
<div class="flex space-x-6 mt-6">
Expand Down Expand Up @@ -519,8 +487,11 @@ <h3 class="text-2xl font-semibold border-t-2 border-black pt-4">Air Filter Proje
</div>
</div>
</section>
-->


<!-- Contact Section -->
<!--
<section id="resume" class="container mx-auto px-4 py-20">
<h2 class="text-2xl font-bold">shaan.yadav@duke.edu</h2>
<p class="mt-6 text-2xl">My resume is <a href="resume.html"> <b> <u> here</u></b></a>.</p>
Expand All @@ -542,6 +513,7 @@ <h2 class="text-2xl font-bold">shaan.yadav@duke.edu</h2>
- books/readings section?
</p>
</section>
-->


<script src="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.2.1/flowbite.min.js"></script>
Expand Down
4 changes: 2 additions & 2 deletions resume.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
<header class="fixed top-0 w-full z-50 bg-white shadow-md">
<nav class="container mx-auto px-4 py-4 flex justify-between">
<div>
<a href="index.html" class="text-3xl font-semibold">Shaan Yadav</a>
<a href="index.html" class="text-3xl font-semibold link">Shaan Yadav</a>
</div>
<div>
<a href="index.html#about" class="text-lg">Home</a>
<a href="index.html#about" class="text-lg link">Home</a>
</div>
</nav>
</header>
Expand Down

0 comments on commit 6560b43

Please sign in to comment.