Skip to content

Latest commit

 

History

History
102 lines (92 loc) · 6.05 KB

File metadata and controls

102 lines (92 loc) · 6.05 KB
layout default
Construction Site

This site is evolving alongside my projects. New sections, refinements, and updates will roll out as I build and experiment.

“Around here, however, we don’t look backwards for very long. We keep moving forward, opening up new doors and doing new things, because we’re curious…and curiosity keeps leading us down new paths.” – Walt Disney

What You'll Find Here

PythonPython Projects

Data analysis, automation scripts, web applications, and machine learning experiments.

CppC++ Development

Performance-critical applications, algorithms, and system programming projects.

CppBash & Automation

Shell scripts, DevOps tools, and system administration utilities.

CppReact & Frontend

Interactive web applications, UI components, and modern JavaScript development.

Latest Blog Posts

{% assign recent_posts = site.posts | slice: 0, 3 %} {% if recent_posts.size > 0 %}
{% for post in recent_posts %}
{{ post.date | date: "%b %-d, %Y" }} {% if post.excerpt %}

{{ post.excerpt | strip_html | truncatewords: 30 }}

{% endif %}
{% endfor %}
{% else %}

No posts yet. Check back soon for tutorials and project updates!

{% endif %}

Featured Projects

Check out some of my recent work and ongoing projects. From Python automation to React applications, I love building useful tools and sharing the process.

<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-8">
  <div class="bg-white p-6 rounded-lg shadow hover:shadow-lg transition text-center border-l-4 border-gray-600">
    <h3 class="text-lg font-semibold mb-2 text-gray-800 flex items-center gap-4"><img src="/assets/python.svg" alt="Python" class="inline w-8 h-8 align-middle"/>Python Automation</h3>
    <p class="text-gray-600">Scripts and tools for automating development workflows</p>
  </div>
  <div class="bg-white p-6 rounded-lg shadow hover:shadow-lg transition text-center border-l-4 border-gray-600">
    <h3 class="text-lg font-semibold mb-2 text-gray-800 flex items-center gap-4"><img src="/assets/react.svg" alt="react" class="inline w-8 h-8 align-middle"/>React Applications</h3>
    <p class="text-gray-600">Interactive web applications with modern JavaScript</p>
  </div>
  <div class="bg-white p-6 rounded-lg shadow hover:shadow-lg transition text-center border-l-4 border-gray-600">
    <h3 class="text-lg font-semibold mb-2 text-gray-800 flex items-center gap-4"><img src="/assets/c.svg" alt="Cpp" class="inline w-8 h-8 align-middle"/>C++ Performance</h3>
    <p class="text-gray-600">High-performance algorithms and data structures</p>
  </div>
</div>

<div class="text-center">
  <a href="/projects/" class="inline-block bg-gray-900 text-white px-8 py-2 rounded-lg font-small hover:bg-gray-200 hover:text-black transition-colors text-lg">Explore All Projects →</a>
</div>