These are my tech stacks:
I'm currently doing some awesome stuffs on
- Numerical Optimization + Algorithm Design
- Python/JavaScript Development, Django + Vue.js
I'm gonna move my posts on hashnode.com to my personal site (Django+Vue3) in the coming months!
Come 'n' see! 🔥
#!/usr/anaconda3/envs/py38/python
# -*- coding: utf-8 -*-
class SoftwareEngineer:
def __init__(self):
self.name = "Zach"
self.role = "Software Engineer"
self.major = "Computational Mathematics"
self.language_spoken = ["zh_CN", "en_US", "fr_FR"]
def say_hi(self):
print("Thanks for visiting my GitHub!")
def find_my_blog(self):
return "https://zach-sudo.hashnode.dev/"
me = SoftwareEngineer()
me.say_hi()
me.find_my_blog()