Tutorials Technology - Tech Tutorials

Recent Publications

3 min readBeginner

Fix Go Error: "cannot find package" / "cannot find module providing package" (2026)

Fix Go's "cannot find package" and "cannot find module providing package" errors. Covers the GOPATH-era vs module-era message, import path typos, go get, replace directives, vendoring, and internal package rules.

3 min readBeginner

Fix Go Panic: "index out of range" Runtime Error (2026)

Fix Go's "panic: runtime error: index out of range" crash. Learn how to read the panic message, the len vs cap distinction, and defensive patterns that keep slice and array access safe.

4 min readBeginner

Fix Go Error: "missing go.sum entry for module providing package" (2026)

Fix Go's "missing go.sum entry for module providing package" error. Learn why go.mod and go.sum diverge, how go mod tidy fixes it, the GOFLAGS=-mod=mod caveat, and vendor mode gotchas.

6 min readIntermediate

FFmpeg NVENC Hardware Acceleration 2026: GPU Encoding on FFmpeg 9.0

FFmpeg NVENC guide for FFmpeg 9.0 "Lei" (August 2026). Full GPU transcode pipeline with -hwaccel cuda, h264_nvenc, hevc_nvenc and av1_nvenc presets, quality tuning with spatial AQ, and the deprecated NVENC options that FFmpeg 9.0 removed.

6 min readIntermediate

Prompt Injection Is an Authorization Problem: OWASP LLM01 Defences (2026)

Prompt injection defence for LLM agents in 2026. Why input filtering cannot fix OWASP LLM01, the difference between direct and indirect injection, and seven OWASP mitigations applied as authorization controls with Python examples.

5 min readIntermediate

Run a 70B LLM on a 4GB GPU: Layer-by-Layer Inference with AirLLM (2026)

Run a 70B language model on a 4GB GPU with AirLLM. Layer-by-layer inference needs no quantization, distillation or pruning. Covers install, code, the VRAM table for 70B/405B/671B models, disk and speed trade-offs, and when llama.cpp offloading is the better choice.

7 min readIntermediate

Argo CD GitOps Tutorial 2026: Deploy Kubernetes Apps from Git with Self-Healing

Argo CD tutorial 2026: install Argo CD on Kubernetes, deploy an app from Git, set up auto-sync self-healing, manage multiple environments, and compare Argo CD vs Flux. Step-by-step with kubectl and YAML.

6 min readBeginner

Best WiFi Adapters for Kali Linux 2026: Monitor Mode, Packet Injection, WPA3 (Kernel 6.14+)

Best USB WiFi adapters for Kali Linux 2026 that support monitor mode and packet injection on kernel 6.14+. Alfa AWUS036ACM, AWUS036ACHM, AWUS1900 reviewed with driver install commands.

11 min readBeginner

Bug Bounty Hunting for Beginners 2026: From Recon to Your First Valid Report

Bug bounty hunting tutorial for beginners 2026: choose a program, do recon with subfinder and httpx, find XSS and IDOR vulnerabilities, write a valid report. HackerOne and Bugcrowd step-by-step guide.

9 min readIntermediate

Context Engineering 2026: AGENTS.md, CLAUDE.md, and .cursorrules That Actually Work

Context engineering tutorial 2026: write AGENTS.md, CLAUDE.md, and .cursorrules files that improve AI coding agent success rate from 30% to 90%. Real examples for Claude Code, Cursor, and Gemini CLI.