Installing Qwen3.6-35B-A3B-APEX-I-Compact on Ollama

Installing Qwen3.6-35B-A3B-APEX-I-Compact on Ollama

Tiempo de lectura: 2 minutosOllama does not support native tags from some Hugging Face repositories (such as I-Compact, Balanced, etc.) when they do not conform to their standard quantization schema (Q4_K_M, Q5_K_S…). The solution is to manually download the .gguf and register it with a Modelfile. Repo: https://huggingface.co/mudler/Qwen3.6-35B-A3B-APEX-GGUF For a 16GB RTX 5060 Ti, the suitable variant is I-Compact … Read more

Increasing the Time-out for 504 Errors in Local AI with Ollama and Nginx Proxy Manager (or any other Nginx-based solution)

Increasing the Time-out for 504 Errors in Local AI with Ollama and Nginx Proxy Manager (or any other Nginx-based solution)

Tiempo de lectura: < 1 minutoToday we are going to increase the response time allowed in an AI local model on Ollama that functions below the security perimeter using a Nginx Proxy Manager. To do this, we are going to Nginx Proxy Manager. We open Proxy Hosts > We open our host > Select Edit and we go to Advanced. … Read more

Adding a fixed IP address on an Ubuntu Server

Adding a fixed IP address on an Ubuntu Server

Tiempo de lectura: 2 minutosConfiguring a fixed IP in Ubuntu is relatively simple, but the method differs depending on whether you are using the desktop version or the server version. Since Ubuntu 18.04 onwards, the server version uses a tool called Netplan. Here is the step-by-step guide for both cases. This is the fastest way if you have a … Read more

Comparison of Local LLM Models on NVIDIA GeForce RTX 5060 Ti 16GB with Ollama

Comparison of Local LLM Models on NVIDIA GeForce RTX 5060 Ti 16GB with Ollama

Tiempo de lectura: 2 minutosI’ll show you a comparison of the best local LLM models for programming. The entire benchmark was performed on a server with the following features: OLLAMA_KEEP_ALIVE=-1 OLLAMA_KV_CACHE_TYPE=q4_0 OLLAMA_FLASH_ATTENTION=true OLLAMA_NEW_ENGINE=true Methodology To compare models uniformly, the same prompt was used in all cases: “Write a Python class called GestorTareas with methods: add task, delete task, mark … Read more

Using Ollama with GitHub Copilot in VS Code

Using Ollama with GitHub Copilot in VS Code

Tiempo de lectura: 2 minutosToday we will explain how to use Ollama from a custom provider for GitHub Copilot. The first thing we need to have is GitHub Copilot installed in our VS Code And also Ollama installed (recommended in a remote environment). Once all the necessary services are ready, we proceed with action. We open VS Code and … Read more

How to send purchase notifications in an iOS app to a webhook

How to send purchase notifications in an iOS app to a webhook

Tiempo de lectura: < 1 minutoApple allows sending an event when a purchase is made. Step 1 Create the endpoint on your server. import base64 import json @app.route(‘/webhook/apple’, methods=[‘POST’]) def webhook_apple(): try: signed_payload = request.json.get(‘signedPayload’) if not signed_payload: return ”, 200 # JWT tiene 3 partes: header.payload.signature # La del medio es el payload en Base64 payload_b64 = signed_payload.split(‘.’)[1] # … Read more

Sounds in React Native with Expo

Sounds in React Native with Expo

Tiempo de lectura: < 1 minutoThe simplest way with Expo is to use expo-av. I’ll explain it step by step: bash npm install expo-av 2. File structure Place your MP3 file in the assets/sounds folder: assets/sounds/musica.mp3 3. Basic usage jsx import { useEffect, useRef } from ‘react’; import { Audio } from ‘expo-av’; export default function MiComponente() { const soundRef … Read more