Testing Ollama Web Search 🔍 and a Thinking Model 💭

Testing Ollama Web Search with gpt-oss Ollama Web Search The recent addition of web search capabilities represents a significant expansion of Ollama’s platform, moving it beyond a tool purely for running static local Large Language Models (LLMs) to a more dynamic, agent-enabled system. This functionality addresses the primary limitation of local LLMs: their knowledge is…

Read More

Web Scraping in 2025: A Python Survival Story

You’re a digital detective. Your mission: extract the truth from the tangled web. But the web fights back—anti-bot walls, JavaScript mazes, CAPTCHA sentinels. This isn’t a side hustle; it’s a heist. And every good heist needs the right crew. Here’s my A-team of Python libraries for 2025—the ones that actually get you in, out, and…

Read More

Part-92: 🚀 Create a Node Pool and Deploy Kubernetes Workloads with NodeSelector in Google Kubernetes Engine (GKE)

When working with Google Kubernetes Engine (GKE), you often want to control which nodes your workloads run on.This is where Node Pools and Node Selectors come in. In this guide, we’ll: ✅ Create a new GKE Node Pool✅ Deploy a Kubernetes Deployment that uses a NodeSelector✅ Verify Pod placement and access the application 🔹 Step…

Read More

Day 24 – Alert Component Part 3 – Add an Alert Bar to change styles

On day 24, I create an Alert Bar component to show or hide the close button, apply a new style to the alerts, and change their direction. Create a Close SVG Icon Vue 3 application Create an icons/CloseIcon.vue xmlns=”http://www.w3.org/2000/svg” class=”h-6 w-6 shrink-0 stroke-current” fill=”none” viewBox=”0 0 24 24″> fill-rule=”evenodd” clip-rule=”evenodd” d=”M5.29289 5.29289C5.68342 4.90237 6.31658 4.90237…

Read More

Part-90: 🚀 Kubernetes Deployment with Declarative Way in Google Kubernetes Engine (GCP)

In our previous guides, we created Deployments using the imperative way.Now, let’s switch gears and explore the declarative approach using YAML manifests. This is the production-grade approach, as it ensures configurations are version-controlled, reusable, and consistent. 📌 Step 01: Copy Templates from ReplicaSet We’ll start by deleting any existing deployments/services, then create a fresh Deployment…

Read More