This document provides a practical guide for using support vector machines (SVMs) for classification tasks. It recommends beginners follow a simple procedure: 1) preprocess data by converting categorical features to numeric and scaling attributes, 2) use a radial basis function kernel, 3) perform cross-validation to select optimal values for hyperparameters C and γ, and 4) train the full model on the training set using the best hyperparameters. The guide explains why this procedure often provides reasonable results for novices and illustrates it using examples of real-world classification problems.