Senior Tony
Author

Senior Tony

Former senior tech manager at Meituan, ex‑tech director at New Oriental, with experience at JD.com and Qunar; specializes in Java interview coaching and regularly shares hardcore technical content. Runs a video channel of the same name.

65
Articles
0
Likes
81
Views
0
Comments
Recent Articles

Latest from Senior Tony

65 recent articles
Senior Tony
Senior Tony
Apr 25, 2026 · Industry Insights

Why GPT-Image-2 Outshines Midjourney and Nano Banana and Lowers Design Barriers

The article showcases GPT-Image-2's impressive ability to generate accurate visual and textual content from prompts, explains how its structural understanding resolves previous AI image flaws, and analyzes the disruptive impact on the design industry, including job displacement, cost efficiency, and market oversupply.

AI image generationGPT-Image-2Industry impact
0 likes · 5 min read
Why GPT-Image-2 Outshines Midjourney and Nano Banana and Lowers Design Barriers
Senior Tony
Senior Tony
Apr 13, 2026 · Artificial Intelligence

5 Advanced Codex Tips to Supercharge Your Development Workflow

This guide presents five practical, intermediate‑level techniques for using OpenAI's Codex—writing explicit prohibitions, breaking tasks into fine‑grained steps, generating multiple solutions with a "Best‑of‑N" approach, analyzing before coding, and prioritizing requirements—to help developers steer AI assistance toward reliable, low‑risk code changes.

AI programmingCodexbest practices
0 likes · 6 min read
5 Advanced Codex Tips to Supercharge Your Development Workflow
Senior Tony
Senior Tony
Apr 11, 2026 · Databases

Why Vectors Need a Dedicated Database and How Milvus Solves It

This article explains what vectors are, why traditional relational databases struggle with high‑dimensional similarity queries, and how the open‑source Milvus vector database efficiently stores, indexes, and retrieves massive vectors for AI applications such as semantic search, image matching, and recommendation.

AI applicationsANNMilvus
0 likes · 5 min read
Why Vectors Need a Dedicated Database and How Milvus Solves It
Senior Tony
Senior Tony
Apr 5, 2026 · Artificial Intelligence

How to Impress Interviewers with Smart Token‑Optimization Strategies for LLMs

The article explains why simply switching to cheaper large language models fails in interviews and outlines five practical techniques—prompt simplification, context management, output control, model tiering, and caching—to reduce token consumption while preserving answer quality.

CachingInterview TipsLLM
0 likes · 5 min read
How to Impress Interviewers with Smart Token‑Optimization Strategies for LLMs
Senior Tony
Senior Tony
Apr 5, 2026 · Interview Experience

How to Ace AI Coding Interview Questions with a Structured Three‑Problem Framework

The article outlines a practical, three‑category approach to answering the most common AI‑coding interview question, warning against vague praise and detailing how to handle engineering gaps, performance and concurrency pitfalls, and safe modifications of legacy code using structured prompts and thorough code review.

AI codingPerformanceTechnical Interview
0 likes · 5 min read
How to Ace AI Coding Interview Questions with a Structured Three‑Problem Framework
Senior Tony
Senior Tony
Mar 31, 2026 · Artificial Intelligence

Build and Debug LangGraph Workflows with Alibaba Qwen in Minutes

This article walks through creating a LangGraph workflow in Python, first using OpenAI’s GPT‑5‑nano model, then swapping to Alibaba’s Qwen 3.5‑plus model, showing how to suppress warnings, filter out thinking responses, visualize the graph, and troubleshoot common errors, all without any prior AI coding experience.

AI workflowAlibaba QwenLLM
0 likes · 8 min read
Build and Debug LangGraph Workflows with Alibaba Qwen in Minutes
Senior Tony
Senior Tony
Mar 26, 2026 · Databases

Why MySQL Optimizer Picks the Wrong Index and How to Fix It

The MySQL optimizer can select an inappropriate index due to inaccurate statistics or sampling errors, but you can correct this by refreshing statistics with ANALYZE TABLE, increasing sample pages, or explicitly forcing the right index using the FORCE INDEX hint.

ANALYZE TABLEDatabase PerformanceFORCE INDEX
0 likes · 4 min read
Why MySQL Optimizer Picks the Wrong Index and How to Fix It
Senior Tony
Senior Tony
Mar 16, 2026 · Backend Development

Prioritize Max Threads Before Queue in Java ThreadPool – Interview‑Ready Trick

This guide explains the default Java ThreadPoolExecutor workflow, identifies why interview questions may require launching maximum threads before queuing tasks, and presents a concise two‑pool plus custom rejection‑policy solution that satisfies the requirement without writing a custom thread pool from scratch.

ExecutorJavaThreadPool
0 likes · 5 min read
Prioritize Max Threads Before Queue in Java ThreadPool – Interview‑Ready Trick
Senior Tony
Senior Tony
Feb 26, 2026 · Information Security

Why Most Projects Choose Token + Redis Over Stateless JWT

Although JWT is marketed as a decentralized, stateless solution, the majority of real‑world applications still rely on a Token + Redis approach because it simplifies logout handling, avoids Redis outages, and aligns better with practical security requirements.

AuthenticationJWTRedis
0 likes · 7 min read
Why Most Projects Choose Token + Redis Over Stateless JWT