Installing OpenClaw on Raspberry Pi 4 and Using with Ollama or Groq, Controlled by Telegram

Installing OpenClaw on Raspberry Pi 4 and Using with Ollama or Groq, Controlled by Telegram

Tiempo de lectura: 2 minutosWe are going to install OpenClaw on a Raspberry Pi 4 and use it as a bot controlled by Telegram today. First on the Pi, update the system and install the basic dependencies. sudo apt update && sudo apt upgrade -y sudo apt install -y git curl build-essential sudo timedatectl set-timezone Europe/Madrid Install Node.js 24. … Read more

Using local Ollama with Opencode

Using local Ollama with Opencode

Tiempo de lectura: < 1 minutoWe will learn today how we can use opencode with our Ollama directly on local. The API is exposed by default in: http://localhost:11434 Check it out: curl http://localhost:11434/api/tags You don’t have it? You need to install Ollama For Windows: irm https://ollama.com/install.ps1 | iex For Windows: curl -fsSL https://ollama.com/install.ps1 | iex We download a model, in … Read more

Installing and Using Open Code AI on Linux or Ubuntu and Connecting to GitHub Copilot

Installing and Using Open Code AI on Linux or Ubuntu and Connecting to GitHub Copilot

Tiempo de lectura: < 1 minuto<strong/OpenCode is basically an artificial intelligence environment for developers, that helps you to writing, analyzing and executing code automatically. According to the version, it can be just a code assistant, or an autonomous agent able to take decisions and create complete projects by itself. First, you have to install it like this: npm install -g … Read more

Motivational Sentence Agent with Claude Code and Chron

Motivational Sentence Agent with Claude Code and Chron

Tiempo de lectura: 2 minutosVamos a generate a first agent with Claude Code and it will run automatically every hour with a cron and upload the generated content to GitHub. Crea the folder of your agent: mkdir -p ~/motivational-agent/md mkdir -p ~/motivational-agent/data cd ~/motivational-agent The final structure will be: motivational-agent/ │ ├─ md/ │ └─ claude.md # context and … Read more

Installing Claude Code on Windows

Tiempo de lectura: < 1 minutoWe will learn today how to install Claude Code on Windows. Claude Code is a tool developed by Anthropic that acts as an intelligent agent for programmers. It’s not an AI model itself, but rather a CLI/Interface that communicates with advanced language models, such as those from the Claude family, to help you generate, review … Read more

What programming language to start with?

What programming language to start with?

Tiempo de lectura: 2 minutosIf I had to start programming from scratch without prior knowledge but with all the knowledge I gained after working on technology for years, I would change many things compared to how I started. I wouldn’t do it because the traditional path is bad, but because the industry has changed a lot. Today there are … Read more

Building an Agent with LangGraph without LLM Connection Tutorial

Building an Agent with LangGraph without LLM Connection Tutorial

Tiempo de lectura: 3 minutosWe will build a LangGraph agent with Python and no LLM as an example for a basic tutorial. Our agent will do the following: You receive a user’s question Determine if you need to search for information (simulated) Respond with or without searching Save state between nodes First, we will install the library: pip install … Read more

Current Trends in Mobile Application Development and How to Apply Them Step by Step

Current Trends in Mobile Application Development and How to Apply Them Step by Step

Tiempo de lectura: 2 minutosThe mobile development is living one of its most interesting phases. The arrival of lightweight models such as Llama 3.2, more mature frameworks, and the boom of AI-driven apps are redefining how we build software. In this tutorial, we will review the most relevant trends and teach you how to apply them in your own … Read more

Language Models: General or Instructional – A Key Comparison

Language Models: General or Instructional – A Key Comparison

Tiempo de lectura: < 1 minutoWe need to understand that not all models are created equal. The main difference between general models and instructional models. General models Ejemplo:Pregunta: “Explain how a neural network works”Response from a general model: can give an extensive explanation, include unnecessary concepts or jump topics. Instruct Models Ejemplo:Pregunta: “Explain how a neural network works step by … Read more

How to activate GPU access from a Docker container, for example, to access an LLM model.

How to activate GPU access from a Docker container, for example, to access an LLM model.

Tiempo de lectura: 2 minutosEnable GPU access is essential if we need to start a LLM model and use GPU with VRAM. Previous requirements Please ensure you have an NVIDIA GPU installed on your machine with the drivers installed and updated. Check using: nvidia-smi You should see your GPU and driver version. Additionally, Docker must be installed. NVIDIA Container … Read more