A passionate developer who loves building desktop applications with Tauri, exploring system programming with Rust, crafting utility tools and automation systems with Python, designing elegant interfaces, and watching anime during compile time.
pub struct Developer<'a> {
pub name: &'a str,
pub location: &'a str,
pub role: &'a str,
pub languages: Vec<&'a str>,
pub frameworks: Vec<&'a str>,
pub databases: Vec<&'a str>,
pub interests: Vec<&'a str>,
}
impl<'a> Developer<'a> {
pub fn new() -> Self {
Self {
name: "Wildflover",
location: "Turkey",
role: "Full Stack Developer",
languages: vec![
"Rust", "TypeScript",
"Python", "JavaScript"
],
frameworks: vec![
"React", "Tauri",
"Node.js", "Vite"
],
databases: vec![
"MySQL", "MongoDB", "Redis"
],
interests: vec![
"Anime", "League of Legends",
"Story-Driven Games"
],
}
}
} |
class Developer:
def __init__(self) -> None:
self.name: str = "Wildflover"
self.location: str = "Turkey"
self.role: str = "Full Stack Developer"
self.languages: list[str] = [
"Rust", "TypeScript",
"Python", "JavaScript"
]
self.frameworks: list[str] = [
"React", "Tauri",
"Node.js", "Vite"
]
self.databases: list[str] = [
"MySQL", "MongoDB", "Redis"
]
self.interests: list[str] = [
"Anime", "League of Legends",
"Story-Driven Games"
]
self.motto: str = "Code by day, anime by night"
def __repr__(self) -> str:
return f"<Developer: {self.name}>" |



