#!/usr/bin/python
# -*- coding: utf-8 -*-
class SoftwareEngineer:
def __init__(self):
self.name = "Zhenye Na"
self.role = "Software Engineer"
self.language_spoken = ["zh_CN", "en_US"]
def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
me = SoftwareEngineer()
me.say_hi()
- Personal website and blog: https://zhenye-na.github.io/
- Notes of AWS Solution Architecture - Associate: https://zhenye-na.github.io/aws-certs-cheatsheet/
- [WIP] LeetCode Solutions & Notes: https://zhenye-na.github.io/leetcode/