Merge branch 'master' of github:feminaexlux/resume

This commit is contained in:
Lani Aung
2024-08-16 21:06:07 -06:00
2 changed files with 43 additions and 39 deletions
+2
View File
@@ -1,3 +1,5 @@
*.sublime-workspace *.sublime-workspace
.DS_Store .DS_Store
*.code-workspace *.code-workspace
public
rainloop
+31 -29
View File
@@ -109,13 +109,13 @@
<dd> <dd>
<section class="summary"> <section class="summary">
<ul> <ul>
<li>Maintain and develop new features for the Toastmasters website using .NET / C# with the Sitecore CMS framework and SQL Server database layer.</li> <li>Maintained and developed new features for the Toastmasters website using .NET / C# with the Sitecore CMS framework and SQL Server database layer.</li>
<li>Co-lead <abbr title="Service Oriented Architecture">SOA</abbr> initiatives, implementing <abbr title="Windows Communication Foundation">WCF</abbr> and Web API services.</li> <li>Co-lead <abbr title="Service Oriented Architecture">SOA</abbr> initiatives, implementing <abbr title="Windows Communication Foundation">WCF</abbr> and Web API services.</li>
<li>Introduce automated testing along with continuous integration.</li> <li>Introduced automated testing along with continuous integration.</li>
<li>Build robust applications with unit testing.</li> <li>Built robust applications with unit testing.</li>
<li>Introduce loosely coupled designs with dependency injection.</li> <li>Introduced loosely coupled designs with dependency injection.</li>
<li>Create and manage common custom Toastmasters utilities and domain objects as .NET NuGet packages.</li> <li>Created and managed common custom Toastmasters utilities and domain objects as .NET NuGet packages.</li>
<li>Transition legacy ERP to <a href="https://dynamics.microsoft.com/en-us/">Dynamics CRM and Dynamics Finance and Operations</a>, connecting over <a href="https://www.odata.org/">OData</a> RESTful APIs.</li> <li>Transitioned legacy ERP to <a href="https://dynamics.microsoft.com/en-us/">Dynamics CRM and Dynamics Finance and Operations</a>, connecting over <a href="https://www.odata.org/">OData</a> RESTful APIs.</li>
</ul> </ul>
</section> </section>
</dd> </dd>
@@ -181,13 +181,26 @@
<div class="content col-12 col-md-10"> <div class="content col-12 col-md-10">
<dl> <dl>
<dt><time datetime="2005-09-27">Fall 2005</time> to <time datetime="2009-08-10">Summer 2009</time></dt> <dt><time datetime="2015-08-24">Fall 2015</time> to <time datetime="2017-12-20">Fall 2018</time></dt>
<dt>Graduated from <a href="http://www.uci.edu/" title="Zot zot">University of California, Irvine</a></dt> <dt>Enrolled in <a href="http://www.ivc.edu/">Irvine Valley College</a></dt>
<dd> <dd>
<section class="summary"> <section class="summary">
<ul> <ul>
<li>Bachelor of Science degree achieved in Biological Sciences, with a minor in Information and Computer Science.</li> <li>Courses taken in Design Model Making and Rapid Prototyping.</li>
<li>GPA of 3.85 in Information and Computer Science minor.</li> </ul>
</section>
</dd>
</dl>
<hr>
<dl>
<dt><time datetime="2015-12-04">December 2015</time></dt>
<dt>Certified as <a href="https://www.sitecore.net">Sitecore Professional Developer</a></dt>
<dd>
<section class="summary">
<ul>
<li>4 day course learning how to develop and maintain Sitecore XP 8.0 professional websites and applications.</li>
</ul> </ul>
</section> </section>
</dd> </dd>
@@ -210,26 +223,13 @@
<hr> <hr>
<dl> <dl>
<dt><time datetime="2015-08-24">Fall 2015</time> to <time datetime="2017-12-20">Fall 2018</time></dt> <dt><time datetime="2005-09-27">Fall 2005</time> to <time datetime="2009-08-10">Summer 2009</time></dt>
<dt>Enrolled in <a href="http://www.ivc.edu/">Irvine Valley College</a></dt> <dt>Graduated from <a href="http://www.uci.edu/" title="Zot zot">University of California, Irvine</a></dt>
<dd> <dd>
<section class="summary"> <section class="summary">
<ul> <ul>
<li>Courses taken in Design Model Making and Rapid Prototyping.</li> <li>Bachelor of Science degree achieved in Biological Sciences, with a minor in Information and Computer Science.</li>
</ul> <li>GPA of 3.85 in Information and Computer Science minor.</li>
</section>
</dd>
</dl>
<hr>
<dl>
<dt><time datetime="2015-12-04">December 2015</time></dt>
<dt>Certified as <a href="https://www.sitecore.net">Sitecore Professional Developer</a></dt>
<dd>
<section class="summary">
<ul>
<li>4 day course learning how to develop and maintain Sitecore XP 8.0 professional websites and applications.</li>
</ul> </ul>
</section> </section>
</dd> </dd>
@@ -256,7 +256,7 @@
</section> </section>
<footer> <footer>
<p>Last updated 2021-01-24</p> <p>Last updated 2023-01-10</p>
<p>&copy; <span title="aka Ulanda S. Aung"><a href="https://fxl.codes">Lani Aung</a></span></p> <p>&copy; <span title="aka Ulanda S. Aung"><a href="https://fxl.codes">Lani Aung</a></span></p>
</footer> </footer>
</article> </article>
@@ -275,7 +275,9 @@
var started = $(this).attr("data-start"); var started = $(this).attr("data-start");
var difference = thisYear - started; var difference = thisYear - started;
if (difference > 0) { if (difference > 15)
$(this).text("15+ years");
else if (difference > 0) {
$(this).text(difference + ' year' + (difference != 1 ? 's' : '')); $(this).text(difference + ' year' + (difference != 1 ? 's' : ''));
} }
}); });