Test notes on using Void (a Cursor alternative)

Void is an open-source AI code editor that can replace Cursor. During testing, it showed some gaps in understanding and missing features when generating HTML pages, but with config tweaks and a different model (such as Qwen2.5-Coder-32B) it can produce quite good results.

AI

Goal-based vector field pathfinding

A goal-based vector field pathfinding method that helps agents navigate efficiently by generating a heat map and a vector field. It walks through the algorithm's three steps: generating a heat map that describes distance along the path, creating a vector field pointing toward the goal, and using the vector field to steer agents' movement. How to solve the local optimum problem, and how subdividing the grid optimizes path computation to make pathfinding more stable and efficient.

App Development