Coding Resources
Tutorials, tools, and guides for developers
Ollama AI
Run powerful AI models locally on your machine. No internet required!
wsl --install -d Ubuntu
# Then:
curl -fsSL https://ollama.com/install.sh | sh
Learn More
# Then:
curl -fsSL https://ollama.com/install.sh | sh
Python
Download and install Python for web development, AI, and more.
# Visit python.org/downloads
Check "Add Python to PATH"
Download
Check "Add Python to PATH"
Scrapy
Powerful web scraping framework for Python. Extract data efficiently.
pip install scrapy
scrapy startproject mycrawler
Docs
scrapy startproject mycrawler
Step-by-Step Guides
Click to expand each guide
Own Private AI with Ollama
- Install WSL: wsl --install -d Ubuntu
- Install Ollama: curl -fsSL https://ollama.com/install.sh | sh
- Choose a model: Visit Ollama Library
- Run your AI: ollama run llama2
Download and Install Python
- Download: Visit python.org/downloads
- Install: Run the installer and check "Add Python to PATH"
Python - Run Scrapy Webcrawler
- Install Scrapy: pip install scrapy
- Create project: scrapy startproject mycrawler
- Navigate: cd mycrawler
- Run spider: scrapy crawl my_spider -o output.json
Python Virtual Environment
- Create: python -m venv myenv
- Activate (Windows): myenv\Scripts\activate
- Activate (macOS/Linux): source myenv/bin/activate
- Deactivate: deactivate
Popular Ollama Models
Explore different AI models available through Ollama for various tasks.
LLaMA-2
General-purpose conversational AI
ollama run llama2
CodeGemma
Code generation and programming
ollama run codegemma
LLaVa
Multimodal visual understanding
ollama run llava
Page Views: 143