website
git clone https://git.pyrossh.dev/website
木 Personal website of pyrossh. Built with astrojs, shiki, vite.
src/index.njk
---
layout: layout.njk
title: pyrossh
description: "Tech Lead from Bangalore who likes to create frameworks and programming languages."
permalink: /
---
<div class="pageContainer">
<h1 class="title">Hello!</h1>
<p class="description">
<a href="https://www.linkedin.com/in/pyrossh" target="_blank" rel="noopener noreferrer" class="linkUnderline"><strong>I'm</strong></a>
a tech lead based out of Bangalore, India and have worked for startups and enterprises
that focus on products in the healthcare and finance domains. I like to build
frameworks and automate common tasks to make it easier to develop applications.
</p>
<p class="description">
I enjoy working on open-source projects, and during the last decade, I've created a
number of projects that are widely used.
</p>
<div class="gridContainer">
<section class="interests">
<h2>Interests</h2>
<ul style="list-style:none;padding:0">
{% for i in ["HTML", "CSS", "Javascript", "S3", "SQL", "Bun", "Eleventy", "Elena", "Tauri", "Remix", "Zig", "K8s", "Iceberg"] %}<li>{{ i }}</li>{% endfor %}
</ul>
</section>
<section class="contact">
<h2>Contact</h2>
<ul style="list-style:none;padding:0">
<li><strong>email:</strong><span>[email protected]</span></li>
<li><strong>crates:</strong><a href="https://crates.io/users/pyrossh">https://crates.io/users/pyrossh</a></li>
<li><strong>npm:</strong><a href="https://www.npmjs.com/~pyrossh">https://www.npmjs.com/~pyrossh</a></li>
<li><strong>linkedin:</strong><a href="https://www.linkedin.com/in/pyrossh">https://www.linkedin.com/in/pyrossh</a></li>
<li><strong>google group:</strong><a href="https://groups.google.com/g/rust-embed-devs">rust-embed-devs</a></li>
</ul>
</section>
</div>
<section class="tools">
<h2>Tools</h2>
<ul style="list-style:none;padding:0">
{% for tool in site.tools %}<li>
<a href="{{ tool.link }}" target="_blank" rel="noopener noreferrer">
<div>{{ tool.name }}</div>
{% if tool.image %}<img src="{{ tool.image }}" alt="{{ tool.name }}" />{% endif %}
</a>
</li>{% endfor %}
</ul>
</section>
<section>
<h2>Git</h2>
<div class="repos">
{% for repo in site.repos %}
{% set local = localRepos | selectattr("id", "equalto", repo.title) | first %}
<div class="repo">
<h4>{% if local %}<a href="/repos/{{ repo.title }}/" style="view-transition-name:repo-title-{{ repo.title }}">{{ repo.title }}</a>{% else %}{{ repo.title }}{% endif %}</h4>
<p>{{ repo.description }}</p>
<div class="tags">{% for tag in repo.tags %}<span class="tag">#{{ tag }}</span>{% endfor %}</div>
</div>
{% endfor %}
</div>
</section>
</div>