测试图片显示
这是一个测试图片显示的文章。 测试完成。
记录日常知识积累
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&...
A comprehensive guide to CSS Flexbox layout. What is Flexbox?Flexbox is a one-dimensional layout method for arranging items in rows or columns. Basic Usage12345.container { display: flex; ju...
Essential security practices every web developer should follow. Input ValidationAlways validate and sanitize user input: 123456789101112131415// Bad - vulnerable to XSSfunction displayUserInput(inp...
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...
Master Git with these essential workflow tips and commands. Branch ManagementCreate and manage branches effectively: 1234567891011121314# Create and switch to new branchgit checkout -b feature/new-...