Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Qu...
记录日常知识积累
5 posts
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Qu...
This is a sample post about JavaScript basics. VariablesJavaScript has three ways to declare variables: 123var oldWay = 'var is function-scoped';let blockScoped = 'let is block-scope...
A comprehensive guide to Python’s built-in data structures. ListsLists are mutable sequences in Python: 123456789101112# Creating listsfruits = ['apple', 'banana', 'cherry&...
Learn how to containerize your applications with Docker. What is Docker?Docker is a platform for developing, shipping, and running applications in containers. Containers package your application wi...
A comprehensive guide to React Hooks and how to use them effectively. useState HookManage component state: 1234567891011121314151617import { useState } from 'react';function Cou...