Category: Artificial Intelligence

40 posts

The Hottest Topic in Tech Has Moved from Models to Agents
Original Artificial Intelligence · Views

The Hottest Topic in Tech Has Moved from Models to Agents

The real heat in tech is no longer just another model release. AI coding agents are entering real development workflows: taking tasks, editing repositories, running tests, opening pull requests, and forcing old questions about context, safety, and review back onto the table.

DGX Spark: NVIDIA Puts an AI Supercomputer on the Desk
Artificial Intelligence · Views

DGX Spark: NVIDIA Puts an AI Supercomputer on the Desk

NVIDIA DGX Spark is easy to misunderstand. It is not a toy for ordinary users to run every chatbot locally, nor a shrunken data-center training cluster. What it really sells is 128GB unified memory, Grace Blackwell, the NVIDIA software stack, and a desktop form factor.

Building llama.cpp with CUDA in WSL: A Real Local Deployment Note
Artificial Intelligence · Views

Building llama.cpp with CUDA in WSL: A Real Local Deployment Note

In a WSL environment with Ubuntu 26.04 LTS and an RTX 4060 Laptop GPU, this note uses micromamba to prepare CUDA 12.4, GCC 13, and cuBLAS without modifying system directories, builds the llama.cpp CUDA backend, and compares CPU and CUDA speed with Qwen3 4B.

Local Models Are Not Toys: Putting Qwen3 and Gemma 4 Into Three Real Workflows
Artificial Intelligence · Views

Local Models Are Not Toys: Putting Qwen3 and Gemma 4 Into Three Real Workflows

The real value of local open models is not a benchmark score, but whether they can enter tasks that happen every day. This article puts Qwen3 4B, Qwen3 8B, Gemma 4 E4B, and Gemma 4 12B into three workflows: development assistance, image understanding, and writing organization.

Installing Useful Open Models on a Local Development Machine: Choose the Runtime First
Artificial Intelligence · Views

Installing Useful Open Models on a Local Development Machine: Choose the Runtime First

A continuously updated local open-model installation note. Starting from a Windows + Ubuntu 26.04 LTS development machine with 64GB host memory, 32GB assigned to WSL, and an RTX 4060 Laptop GPU with 8GB VRAM, this article first decides whether Ollama should run on Windows or WSL, compares llama.cpp, LM Studio, vLLM, and other options, and then lists models worth keeping locally.

Full-stack in the AI Era Is More Than Frontend Plus Backend
Original Artificial Intelligence · Views

Full-stack in the AI Era Is More Than Frontend Plus Backend

Starting from Andrew Ng's comments on small teams and high-context engineers, this article explains why AI pushes senior developers toward a broader product full-stack: problem framing, prototype, code, copy, compliance, launch, operations, and iteration.

Can Gemma 4 12B on Ollama Listen to Audio Directly?
Artificial Intelligence · Views

Can Gemma 4 12B on Ollama Listen to Audio Directly?

A practical test of gemma4:12b audio input on a local test machine: the model metadata declares audio support, but Ollama's native /api/chat path could not reliably accept audio; the working path was the OpenAI-compatible input_audio block.

Can Gemma 4 12B on Ollama Read Video Directly?
Artificial Intelligence · Views

Can Gemma 4 12B on Ollama Read Video Directly?

A practical test from official docs to local verification: Gemma 4 12B can understand video as frame sequences, but Ollama did not accept MP4 directly in this test. The stable path is frame extraction plus multi-image input.

AI World Cup Prediction Should Start With Probabilities
Artificial Intelligence · Views

AI World Cup Prediction Should Start With Probabilities

World Cup prediction should not ask a model to guess a champion. A more useful approach combines historical results, team strength, goal distributions, tournament simulation, and live information into one probability framework.

Browser Agents Need Guardrails Before More Permissions
Artificial Intelligence · Views

Browser Agents Need Guardrails Before More Permissions

Once browser agents move from reading pages to clicking buttons, filling forms, and submitting actions, their product value rises together with the risk of mistakes and overreach. Guardrails must mature before automation is granted broad authority.

From Prompt to Context Engineering
Artificial Intelligence · Views

From Prompt to Context Engineering

Agent systems are no longer just about writing a prompt. What determines production quality is how we select, trim, order, validate, and replay context so the model gets just enough information at each step.

Small Models Are Moving Back onto Devices
Artificial Intelligence · Views

Small Models Are Moving Back onto Devices

Edge AI is not a smaller copy of cloud LLMs. It is about latency, power, privacy, caching, product boundaries, and engineering constraints that live much closer to the device.

RAG Evaluation Should Focus on How Systems Fail
Artificial Intelligence · Views

RAG Evaluation Should Focus on How Systems Fail

After a RAG system goes live, the question is not whether it can answer demos. It is when it answers wrong, why it answers wrong, and whether those failures have clear boundaries.

Codex App Server: Bringing Coding Agents Into Your Own Workbench
Artificial Intelligence · Views

Codex App Server: Bringing Coding Agents Into Your Own Workbench

A practical look at the protocol boundary of Codex App Server, the product and engineering scenarios it fits, and how it compares with Claude Code and Cursor in automation, cloud agents, and custom integrations.

The Longer You Use Codex, The More You Need To Save Tokens
Artificial Intelligence · Views

The Longer You Use Codex, The More You Need To Save Tokens

A token and cost breakdown from one real long Codex session: why context is expensive, which conversations cost the most, how prompt caching helps, and practical ways to split sessions, compress logs, use files, and preserve stable rules.

Image Generation Inside A Coding Tool Is Surprisingly Useful
Artificial Intelligence · Views

Image Generation Inside A Coding Tool Is Surprisingly Useful

Cursor Composer 2 can trigger image generation in real workflows, and Cursor's changelog points to Google Nano Banana Pro. This article records the workflow, cost intuition, and a same-aspect comparison with Codex-generated images.

Codex, Cursor, And The Codex Extension Inside Cursor
Artificial Intelligence · Views

Codex, Cursor, And The Codex Extension Inside Cursor

A practical guide to combining Codex and Cursor: product boundaries, Codex IDE, Codex CLI, the Codex extension inside Cursor, Skills, Cursor Rules, session context, and a workable coexistence workflow.

Cursor SDK And Custom Agents: What It Is Really For
Artificial Intelligence · Views

Cursor SDK And Custom Agents: What It Is Really For

Cursor's TypeScript SDK exposes the agent capability behind IDE, CLI, and Cloud Agents as a programmable interface. This article explains runtimes, hooks, MCP, examples, use cases, and a CI failure repair workflow.

Writing Web Novels With Cursor: A Practical Workflow
Artificial Intelligence · Views

Writing Web Novels With Cursor: A Practical Workflow

A workflow-oriented look at using Cursor for long-form web fiction: repository structure, single source of truth, rules, daily writing prompts, consistency checks, context-window tradeoffs, and model-cost choices.

Cursor And Claude Code Should Not Be Compared Like This
Artificial Intelligence · Views

Cursor And Claude Code Should Not Be Compared Like This

Instead of turning tool discussion into a succession story, this article separates what Cursor and Claude Code are each good at: IDE context, browser interaction, Auto mode, terminal workflows, and underestimated Cursor capabilities.

Inside The QVeris IDE Plugin: OAuth, MCP Wiring, And Rules Injection
Artificial Intelligence · Views

Inside The QVeris IDE Plugin: OAuth, MCP Wiring, And Rules Injection

A development retrospective on the official QVeris Cursor/VS Code extension: browser OAuth callback, SecretStorage, MCP configuration, workspace rule injection, host differences, and the last mile of making tools actually usable.

How To Share A Local LLM App With Gradio
Artificial Intelligence · Views

How To Share A Local LLM App With Gradio

A short Gradio note: set share=True in launch() to create a temporary public link for a local machine-learning demo, and use Hugging Face Spaces for permanent hosting.

Running DeepSeek R1 Locally on Windows with Ollama
Artificial Intelligence · Views

Running DeepSeek R1 Locally on Windows with Ollama

A practical Windows 11 setup note for running DeepSeek R1 locally through Ollama, then connecting it to Chatbox, MaxKB, Open WebUI, and VS Code-based AI tools.

A First Look At The Cursor Editor
Artificial Intelligence · Views

A First Look At The Cursor Editor

An early hands-on note on Cursor as a VS Code-based AI editor, using a small C++ Gomoku program to test code understanding, alpha-beta AI logic, object-oriented refactoring, and project-level assistance.

A Quick Overview of Google's Gemma Models
Artificial Intelligence · Views

A Quick Overview of Google's Gemma Models

A short introduction to Google's lightweight Gemma LLM family, including Kaggle resources, common model formats, 2B and 7B variants, and basic hardware expectations.

Running Gemma Locally Does Not Have To Start With Docker
Artificial Intelligence · Views

Running Gemma Locally Does Not Have To Start With Docker

A simple local Gemma setup note: download the PyTorch 2B checkpoint from Kaggle, clone gemma_pytorch, set PYTHONPATH, install dependencies, and run the official script directly.

How Neural Networks Really Work: Study Notes
Artificial Intelligence · Views

How Neural Networks Really Work: Study Notes

Study notes from Jeremy Howard's Kaggle notebook on how neural networks work, using a quadratic function, loss, gradients, learning rate, ReLU, and simple function composition to build intuition.