@VishnuTweets_ I can't join due to class 12 commitments, but here's my Next.js portfolio: https://t.co/TkKdUEPoTE. I'm skilled in the required technologies. Thanks for providing opportunities for freshers!
Can anyone tell me how people actually get audience feedback on their products? Building is fun.
Getting people to even see the product feels 10x harder. How do you make your product visible to a larger audience and get real users to try it
@49agents Volt has an “Autopilot” mode for when you step away it queues tasks verifies outputs, debugs itself and keeps running with saved sudo creds ryt now it’s focused on being a fast native desktop experience (Tauri + Rust) but multiplayer/mobile handoff is what I’m exploring next 👀
Working on projects usually meant:
• one terminal for frontend
• one for backend
• another for Docker
• and somehow 10 more random tabs open 😭
And all of it together kept eating way too much RAM.
While building it, I started adding AI capabilities too.
Now Volt is slowly evolving into an agentic AI terminal that can help with workflows, commands, coding tasks, and more directly inside the terminal.
https://t.co/6HtGduHCrs
That’s why I started building Volt ⚡
At first the goal was simple:
build a lightweight terminal that actually feels fast.
So I used Rust + Tauri to keep it minimal and efficient instead of shipping another RAM monster.
Volt v0.5.0 is officially live with installers for Mac, Linux, and Windows.
We are actively looking for open-source contributors to help us build out Voice Mode and the Context Engine! Drop a ⭐️ on the repo if you like what we're building! https://t.co/u98dEk4gRW
If you're learning DSA or Backtracking, problems like this build strong recursion intuition.
Next problems to try:
• Subsets
• Permutations
• Combination Sum
Follow for more DSA breakdowns.
Generate Parentheses is one of the best problems to understand Backtracking.
Given n pairs of parentheses, generate all valid combinations.
Example for n = 3:
((()))
(()())
(())()
()(())
()()()
Here’s the simple logic 🧵