struct Developer {
name: &'static str,
role: &'static str,
stack: Vec<&'static str>,
interests: Vec<&'static str>,
}
fn main() {
let evilork = Developer {
name: "evilork",
role: "Backend Developer",
stack: vec!["Rust", "Python", "PostgreSQL", "Redis", "Docker"],
interests: vec!["Trading Systems", "HFT", "Blockchain", "Telegram Bots"],
};
}| Project | Description | Stack |
|---|---|---|
| ⭐ RickStar Bot | Telegram casino & Stars marketplace | Python aiogram PostgreSQL |
| 🚀 HFT Trading System | High-frequency arbitrage bot | Rust WebSocket Tokio |
| 📊 Polymarket Arbitrage | Binary markets scanner | Rust REST API |