Cursor Usage Tips and Reflections

Cursor Usage Tips and Reflections

Many people say that 2025 will be the year of intelligent agents, and in 2024, many efficiency-seeking programmers have already started using Cursor/Windsurf. It seems to take us a step further than GitHub Copilot from a few years ago. I often ponder what programming will look like in the future and how Cursor and LLMs … Read more

Foolproof Guide to Image Upload in Two Hours

Foolproof Guide to Image Upload in Two Hours

“Your Majesty, I have recently been developing an image upload feature, but I feel it’s not elegant enough. Could you please give me some guidance?” The concubine hurriedly came to ask. “Oh? Let me see the code you wrote.” function uploadImage() { const input = document.getElementById('fileInput'); const file = input.files[0]; const formData = new FormData(); … Read more

Building an AI Coding Agent with LangGraph Using LangChain

Building an AI Coding Agent with LangGraph Using LangChain

● Understand what LangGraph is. ● Explore the basics of LangGraph for building stateful agents. ● Explore TogetherAI to access open-access models like DeepSeekCoder. ● Build an AI coding agent using LangGraph to write unit tests. This article is published as part of the Data Science Blog Marathon. What is LangGraph? LangGraph is an extension … Read more

Cursor Tips: Secrets to Doubling Code Quality

Cursor Tips: Secrets to Doubling Code Quality

Cursor Tips: Secrets to Doubling Code Quality As an experienced Cursor technical instructor, I often encounter the challenges developers face in their daily coding: lengthy and hard-to-maintain code, inconsistent naming, and unclear comments severely affect development efficiency. Especially in a large project, when you take over someone else’s code, you often need to spend a … Read more