HomeAboutRelease Notes

Written by Yi Zhiyue
A Software Engineer · 山不在高,有仙则灵
LinkedIn · GitHub · Email

Call Functions with Dynamic Parameters in Python

March 27, 2022

When I was studying my colleague’s brilliant coding work, I noticed a very interesting implementation on calling functions with dynamic parameters in python. It’s very interesting…

How I Mentor Junior Software Engineers

January 02, 2022

In 2021, I happened to have chances to mentor some software engineer interns at my work. I mentored 5 interns in total and maximum 3 interns at the same time. This is a great…

How to Open A File in Python Like A Pro

July 04, 2021

It’s a fundamental question. Usually people learn it at the time they get started with python. And the solution is rather simple. 1st Attempt: use But is that a good solution…

Front End Project Upgrade Roadmap

March 17, 2021

In the past a few years, front end technologies were booming. New tools and version of frameworks emerged in a super fast pace. A project that was developed 3 or 4 years back, now…

6 Tips for Beginners to Write Good Unit Tests

October 10, 2020

TLDR; Unit tests are one of the fundamental components which safeguard the quality of our applications. It takes little efforts to write but produces much values in term of…