Varun V
@varunv321
Varun V
@varunv321
Software developer, Hashstack
Bengaluru, India
GitHub
GitHub
0
contributions in the last year
Aug
S
M
T
W
T
F
S
Jul
80
stars earned
111
repositories
35
followers
gyst
Gyst (GIT your shit together) is an AI powered git assistant
Rust
8Stars
0Forks
boa
Boa is an embeddable and experimental Javascript engine written in Rust. Currently, it has support for some of the language.
Rust
0Stars
0Forks
dioxus
Fullstack app framework for web, desktop, mobile, and more.
Rust
0Stars
0Forks
promptctl-cli
CLI tool to enhance your prompts with refinement questions
Rust
1Stars
0Forks
Medium Posts
Medium Posts
Solving Multi-Account Git Headaches with ‘gitp’: A Development Story
medium.com
We’ve all been there. One Git identity for work, another for personal projects, perhaps a third for that freelance gig, and maybe even a fourth for contributing to that obscure open-source project under a different moniker. Juggling these identities, ensuring the right `user.name`, `user.email`, and GPG/SSH signing keys are active for the right repository, can quickly turn into a frustrating game of configuration whack-a-mole. For me, this wasn’t just an occasional annoyance; it was a daily friction poin...
Understanding Mutexes in Rust: A Beginner’s Guide
medium.com
What is a Mutex Ever tried to cook in a tiny kitchen with three roommates at the same time? Total chaos, right? Well, that’s exactly the problem mutexes solve in programming — but for data instead of kitchen space! I remember when I first encountered mutexes — I was completely lost. But don’t worry, by the end of this post, you’ll be the one explaining mutexes at your next coding meetup. Let’s dive in! What’s a Mutex and Why Should You Care? Imagine a shared apartment with one bathroom and no established...