I build networking and backend tools for environments where reliability, clear operations, and fast recovery matter.
package main
type Engineer struct {
Name string
Alias string
Roles []string
Location string
Focus []string
Contact string
}
func main() {
me := Engineer{
Name: "Ali Hassanzadeh",
Alias: "Zeus",
Roles: []string{"Network Architect", "Backend Engineer", "Open Source Builder"},
Location: "Iran",
Focus: []string{
"WireGuard dashboards and VPN operations",
"MikroTik CHR automation and infrastructure scripting",
"Reliable backend systems in Go",
},
Contact: "info@ipmart.shop",
}
_ = me
}|
Network Systems WireGuard, MikroTik CHR, VPN tunneling, routing, and operational automation. |
Backend Engineering Go-first services, API design, distributed systems, and clean service boundaries. |
Automation Shell and Python workflows that remove repetitive work and reduce failure points. |
|
Profile iPmartNetwork |
Main Stack Go, Python, Linux, WireGuard |
Work Style Infrastructure, automation, backend systems |
|
WireGuard dashboard focused on easier VPN operations, visibility, and day-to-day management. |
Automation for MikroTik CHR setup, helping infrastructure get online faster and more consistently. |
|
A fork of Songbird focused on active development, extra capabilities, and a stronger user experience. |
Intelligent network control for x-ui, V2Ray outbound monitoring, server health, alerts, and licensing. |
Optional: contribution snake workflow
Create .github/workflows/snake.yml in the profile repository if you want the snake animation generated automatically:
name: Generate Snake
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
snake:
runs-on: ubuntu-latest
steps:
- uses: Platane/snk/svg-only@v3
with:
github_user_name: iPmartNetwork
outputs: |
dist/github-contribution-grid-snake.svg
dist/github-contribution-grid-snake-dark.svg?palette=github-dark
- uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

