Skip to content

Commit

Permalink
update resume
Browse files Browse the repository at this point in the history
  • Loading branch information
noahrizika committed Jun 11, 2024
1 parent dd8528a commit 424c4ee
Show file tree
Hide file tree
Showing 6 changed files with 342 additions and 252 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file modified assets/resume.pdf
Binary file not shown.
143 changes: 90 additions & 53 deletions biochemistry_calculator.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,78 +37,115 @@
</div>
</div>
</nav>
<section>
<h2>Biochemistry Calculator</h2>
<div id="projects_overview">
<p>As a Biochemistry major, I've learned many simple yet tedious and time-consuming calculations. Creating
programs to automate these calculations allows me to focus on the larger scope of a problem while also
reducing errors.</p><br>
<section>
<br />
<h2>Biochemistry Calculator</h2>
<div id="projects_overview">
<p>
As a biochemistry major, I've learned many simple yet tedious and
time-consuming calculations. Creating programs to automate these
calculations allows me to focus on the larger scope of a problem while
also reducing errors.
</p>
<br />

<h4>DNA Stacking Energy Calculator</h4>
<div>
<p>DNA is stabilized by the hydrogen bonds between paired nucelotides on corresponding strands. However, the
interactions between stacked nucelotides on each strand play an even larger role in stabilizing DNA. This
program calculates the stacking energies of a double-stranded DNA (dsDNA). Lower energies indicate greater
stability.</p>
<p>
DNA is stabilized by the hydrogen bonds between paired nucelotides
on corresponding strands. However, the interactions between stacked
nucelotides on each strand play an even larger role in stabilizing
DNA. This program calculates the stacking energies of a
double-stranded B-DNA. Lower energies indicate greater stability.
</p>
</div>
<br>
<br />
<p id="stacking_energy_instructions">Enter one DNA Strand 5' to 3':</p>
<input type="text" id="dna_strand_energy" style="text-transform: uppercase" name="dna_strand_energy"><br><br>
<input
type="text"
id="dna_strand_energy"
style="text-transform: uppercase"
name="dna_strand_energy"
/><br /><br />
<div>
<button
class="btn btn-color-2 project-btn"
onclick="calc_stacking_energies()"
>
Calculate dsDNA Stacking Energy
</button>
<button
class="btn btn-color-2 project-btn"
onclick="calc_stacking_energies()"
>
Calculate Stacking Energy
</button>
</div>
<br>
<p id="stacking_energy_output">Stacking Energy: 0 kJ/mol</p>
<br>
<br />
<!-- <p id="stacking_energy_output">B-DNA Stacking Energy: 0 kJ/mol</p> -->
<p id="stacking_energy_output">B-DNA Stacking Energy: 0 kJ/mol</p>
<br />
<br />
<hr />
<br />
<br />

<p>-------------------------------------------------------------------------------------------------------------------------------</p>
<h4>Complementary DNA Strand</h4>
<div>
<p>DNA consists of Adenosine, Tyrosine, Guanine and Cytosine nucelotides. Nucelotides on one strand (5' to 3') bind with nucelotides
on another strand (3' to 5'), thereby creating double stranded DNA. This program returns the complementary DNA strand.</p>
<p>
DNA consists of Adenosine, Tyrosine, Guanine and Cytosine
nucelotides. Nucelotides on one strand (5' to 3') bind with
nucelotides on another strand (3' to 5'), thereby creating double
stranded DNA. This program returns the complementary DNA strand.
</p>
</div>
<br>
<br />
<p id="dna_bp_instructions">Enter DNA Strand 5' to 3':</p>
<input type="text" id="dna_strand_bp" style="text-transform: uppercase" name="dna_strand_bp"><br><br>
<input
type="text"
id="dna_strand_bp"
style="text-transform: uppercase"
name="dna_strand_bp"
/><br /><br />
<div>
<button
class="btn btn-color-2 project-btn"
onclick="get_complementary_dna()"
>Get Complementary DNA strand
</button>
<button
class="btn btn-color-2 project-btn"
onclick="get_complementary_dna()"
>
Get Complementary DNA strand
</button>
</div>
<br>
<p id="dna_complementary_output">Complementary DNA Sequence: </p>
<br>
<br />
<p id="dna_complementary_output">Complementary DNA Sequence:</p>
<br />
<br />
<hr />
<br />
<br />

<p>-------------------------------------------------------------------------------------------------------------------------------</p>
<h4>RNA Coding Strand</h4>
<div>
<p>RNA consists of the same nucelotides as DNA, except Uracil is used instead of Adenine. One section of a DNA coding strand, read
from the 5' end to the 3' end, encodes for a specific RNA sequence. This RNA sequence contains the instructions to form proteins
that the body needs. This program returns the RNA version of a coding DNA strand.</p>
<p>
RNA consists of the same nucelotides as DNA, except Uracil is used
instead of Adenine. One section of a DNA coding strand, read from
the 5' end to the 3' end, encodes for a specific RNA sequence. This
RNA sequence contains the instructions to form proteins that the
body needs. This program returns the RNA version of a coding DNA
strand.
</p>
</div>
<br>
<br />
<p id="rna_instructions">Enter Coding DNA Strand 5' to 3':</p>
<input type="text" id="rna_strand" style="text-transform: uppercase" name="rna_strand"><br><br>
<input
type="text"
id="rna_strand"
style="text-transform: uppercase"
name="rna_strand"
/><br /><br />
<div>
<button
class="btn btn-color-2 project-btn"
onclick="get_coded_rna()"
>Get Coding RNA Strand
</button>
<button class="btn btn-color-2 project-btn" onclick="get_coded_rna()">
Get Coding RNA Strand
</button>
</div>
<br>
<p id="rna_output">Coded RNA Sequence: </p>
<br />
<p id="rna_output">Coded RNA Sequence:</p>
<p></p>
<br><br>
</div>
</section>
</body>

</html>
<br /><br />
</div>
</section>
</body>
</html>
2 changes: 1 addition & 1 deletion biochemistry_calculator.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function calc_stacking_energies() {
stacked_dna += dna_strand[i + 1];
strand_energy += stacking_energies_map.get(stacked_dna);
}
document.getElementById("stacking_energy_output").innerHTML = "dsDNA Stacking Energy: " + strand_energy + " kJ/mol";
document.getElementById("stacking_energy_output").innerHTML = "B-DNA Stacking Energy: " + strand_energy + " kJ/mol";
}
}

Expand Down
64 changes: 43 additions & 21 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<div class="section__text">
<p class="section__text__p1">Hey, I'm</p>
<h1 class="title">Noah Rizika</h1>
<p class="section__text__p2">Senior Undergraduate</p>
<p class="section__text__p2">Middlebury Graduate</p>
<div class="btn-container">
<button
class="btn btn-color-2"
Expand Down Expand Up @@ -93,7 +93,9 @@ <h1 class="title">About Me</h1>
/>
<h3>Experience</h3>
<!-- <p>2+ yrs<br />Frontend Developer, C++</p> -->
<p>Machine Learning, React<br>Python, C++, JavaScript/HTML/CSS</p>
<p>
Machine Learning, React<br />Python, C++, JavaScript/HTML/CSS
</p>
</div>
<div class="details-container">
<img
Expand All @@ -107,7 +109,20 @@ <h3>Education</h3>
</div>
<div class="text-container">
<p>
My name is Noah Rizika, and I'm a graduating senior at Middlebury College pursuing a career in software development. While studying biochemistry, I taught myself Python and C++, and took classes in data structures and algorithms, computer architecture, big data analysis, and an extensive AWS machine learning course. I've created a computer vision model for biology research in AWS SageMaker, custom Python functions for data analysis, a multi-page React web app for Middlebury College's rock climbing community, calculators for biochemistry, and more. Please visit <a onclick="openLinkInNewTab('https://github.com/noahrizika')">my GitHub</a> and see <a href="#projects">my projects</a> below for links and more information.
My name is Noah Rizika, and I'm a graduating senior at Middlebury
College pursuing a career in software development. While studying
biochemistry, I taught myself Python and C++, and took classes in
data structures and algorithms, computer architecture, big data
analysis, and an extensive AWS machine learning course. I've
created a computer vision model for biology research in AWS
SageMaker, custom Python functions for data analysis, a multi-page
React web app for Middlebury College's rock climbing community,
calculators for biochemistry, and more. Please visit
<a onclick="openLinkInNewTab('https://github.com/noahrizika')"
>my GitHub</a
>
and see <a href="#projects">my projects</a> below for links and
more information.
</p>
</div>
</div>
Expand Down Expand Up @@ -206,7 +221,7 @@ <h2 class="experience-sub-title">Soft Skills</h2>
/>
<div>
<h3>Problem Analysis</h3>
<br>
<br />
</div>
</article>
<article>
Expand All @@ -217,7 +232,7 @@ <h3>Problem Analysis</h3>
/>
<div>
<h3>Effective Communication</h3>
<br>
<br />
</div>
</article>
<article>
Expand All @@ -228,7 +243,7 @@ <h3>Effective Communication</h3>
/>
<div>
<h3>Leadership</h3>
<br>
<br />
</div>
</article>
<article>
Expand All @@ -239,7 +254,7 @@ <h3>Leadership</h3>
/>
<div>
<h3>Self Learner</h3>
<br>
<br />
</div>
</article>

Expand All @@ -251,7 +266,7 @@ <h3>Self Learner</h3>
/>
<div>
<h3>Resourceful</h3>
<br>
<br />
</div>
</article>
<article>
Expand All @@ -262,7 +277,7 @@ <h3>Resourceful</h3>
/>
<div>
<h3>Collaboration</h3>
<br>
<br />
</div>
</article>
</div>
Expand All @@ -289,7 +304,9 @@ <h1 class="title">Projects</h1>
class="project-img"
/>
</div>
<h2 class="experience-sub-title project-title"><i>Drosophila</i> Embryonic Cell Stage Image Classifier</h2>
<h2 class="experience-sub-title project-title">
<i>Drosophila</i> Embryonic Cell Stage Image Classifier
</h2>
<div class="btn-container">
<button
class="btn btn-color-2 project-btn"
Expand All @@ -298,11 +315,11 @@ <h2 class="experience-sub-title project-title"><i>Drosophila</i> Embryonic Cell
Project Report
</button>
<button
class="btn btn-color-2 project-btn"
onclick="openLinkInNewTab('https://github.com/noahrizika/cell-stage-classifier')"
>
Github
</button>
class="btn btn-color-2 project-btn"
onclick="openLinkInNewTab('https://github.com/noahrizika/cell-stage-classifier')"
>
Github
</button>
</div>
</div>
<div class="details-container color-container">
Expand All @@ -313,7 +330,9 @@ <h2 class="experience-sub-title project-title"><i>Drosophila</i> Embryonic Cell
class="project-img"
/>
</div>
<h2 class="experience-sub-title project-title">US and UK Media Portrayal of AI</h2>
<h2 class="experience-sub-title project-title">
US and UK Media Portrayal of AI
</h2>
<div class="btn-container">
<button
class="btn btn-color-2 project-btn"
Expand All @@ -322,9 +341,9 @@ <h2 class="experience-sub-title project-title">US and UK Media Portrayal of AI</
Literature Review
</button>
</div>
<br>
<br />
<div class="btn-container">
<button
<button
class="btn btn-color-2 project-btn"
onclick="window.open('./assets/Artificial-Intelligence-Presentation.pdf')"
>
Expand All @@ -346,7 +365,9 @@ <h2 class="experience-sub-title project-title">US and UK Media Portrayal of AI</
class="project-img"
/>
</div>
<h2 class="experience-sub-title project-title">Biochemistry Calculator</h2>
<h2 class="experience-sub-title project-title">
Biochemistry Calculator
</h2>
<div class="btn-container">
<button
class="btn btn-color-2 project-btn"
Expand Down Expand Up @@ -404,8 +425,9 @@ <h1 class="title">Contact Me</h1>
</ul>
</div>
</nav>
<p>Copyright &#169; 2023 Noah Rizika. All Rights Reserved.</p>
<br />
<p>Copyright &#169; 2024 Noah Rizika. All Rights Reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>
</html>
Loading

0 comments on commit 424c4ee

Please sign in to comment.