How to Better Use Cursor
Sharing my Cursor learning notes and effective usage methods.
This is my personal tech blog, primarily dedicated to programming study notes and software/digital-related content. I will also cover broader software and digital topics in the future.
Sharing my Cursor learning notes and effective usage methods.
I tried using the email laundry method from the book "Uptime" to organize my Gmail, and the moment I finished organizing it, I truly felt mentally and physically refreshed.
Read Full Article about Using the "Email Laundry Method" to Organize My Inbox
An overview of React based on the book "React Thinking Evolution", aiming to provide a big picture of the entire React ecosystem.
RWD is a design approach that allows websites to adjust across various devices and screen sizes, presenting content in an optimized way.
CSS Grid is a powerful two-dimensional layout system that helps you control the arrangement and size of web elements more flexibly.
CSS Flexbox is a powerful layout model that helps us simplify and make webpage element layouts more flexible.
Read Full Article about CSS Flexbox Implementation Cheatsheet
ChatGPT Prompt Engineering for Developers is a famous course launched by DeepLearning.AI after the emergence of generative AI, serving as a comprehensive AI prompt guide suitable for everyone.
Read Full Article about Key Notes from "ChatGPT Prompt Engineering for Developers" Course
splice modifies the original array, allowing insertion, deletion, or both simultaneously; slice extracts a portion of an array or string, returning a new array or string without modifying the original; split divides a string into an array based on a specified separator, leaving the original string unchanged.
Read Full Article about Understanding splice, slice, and split in JavaScript