Software developer building open-source tools with algorithmic elegance.
I'm Bruno RNS, a software developer and student from Cascavel, PR โ Brazil.
My work reflects both technical rigor and creative curiosity โ from building backend systems and tooling to composing guitar riffs and tinkering with SNES development.
- ๐ฎ Lifelong fan of 90s games like Sonic & Mario โ now building SNES tools!
- ๐ธ Mixes backend logic with musical composition!
- ๐ Obsessed with clean, modular code, OOP, SOLID and automation!
public class BrunoRNS { final String name = "Bruno RNS"; String strongest = "Java & Python"; String intermediate = "C and Bash/Shell"; String basics = "HTML, CSS and JS"; String inLoveWith = "SNES game development"; String hometown = "Cascavel, PR - Brazil"; public void introduce() { System.out.println("Hey, I'm " + name + " from " + hometown); System.out.println("Languages I'm very good at: " + strongest); System.out.println("Comfortable with: " + intermediate); System.out.println("Basics in: " + basics); System.out.println("In Love with: " + inLoveWith); } public static void main(String[] args) { new BrunoRNS().introduce(); } }