Decorators in Python

What is Decorator In Python, a decorator is a design pattern that allows you to...

4 minute read

Principle Component Analysis Explained

What is Principle Component Analysis Principal component analysis, or PCA, is a dimensionality reduction method...

5 minute read

Data Governance Framework Summary

Regards to Deniel Vitaver, who is the best professor I’ve experienced in my AI program...

20 minute read

Data Structures and Algorithms

What are Data Structures? Data structure is a storage that is used to store and...

27 minute read

Notes of Data Structures and Algorithms in Python

Recursion Recursive functions typically follow this pattern: There are one or more base cases that are directly solvable without the need for further recursion. ...

54 minute read

Notes of ChatGPT Prompt Engineering for Developers

In the development of large language models or LLMs, there have been broadly two types of LLMs, which I’m going to refer to as base LLMs and instruction-tuned LLMs. ...

63 minute read

加拿大留学生退税全攻略

报税是首先是一种义务,其次也是一种福利。留学生在加拿大基本没有收入或者收入较少,也不需要向加拿大政府缴纳税金,可以说他们属于很少或完全不接触加拿大税务的人群。 ...

11 minute read

Design Patterns in Python

What’s a design pattern? Design patterns are typical solutions to commonly occurring problems in software...

9 minute read

The Factory Method Pattern in Python

Definition Factory Method is a creational design pattern used to create concrete implementations of a...

34 minute read

Advanced Python Tutorial Notes

Rules | Conventions Python is case-sensitive, which means, for example, Name and name have different...

12 minute read

鸡尾酒调制配方大全,6分钟学会在家调酒

这是阉割版,仅仅记录了一些我需要的内容,详情请参考原博文。 教你如何用500元打造自己的家庭酒吧,轻松实现在家鸡尾酒自由。 ...

12 minute read

在加拿大生活正常一个月会花多少钱?

这是一位移友一家人(虎家枫叶行),在加拿大新省一个月生活的消费情况,但可能不同省份之间的消费会有差异,比如多伦多 ...

9 minute read

MySQL Full-Text Search

Introduction If you have used search engines like Google or Bing, you used the full-text...

18 minute read

Working with JSON in MYSQL

Introduction MySQL version 5.7.8 introduces a JSON data type that allows you to access data...

27 minute read

Introduction of C++ Pragma Pack (7)

#pragma pack instructs the compiler to pack structure members with particular alignment. Most compilers, when...

2 minute read