Capturing Qt Network Requests with Fiddler Proxy

When working with Qt's network library in production projects, developers may encounter certain limitations and edge cases. This article documents a common issue where Fiddler cannot capture network requests initiated by Qt applications, along with the solution. The Problem During the testing phase, QA engineers reported that Fiddler was unable ...

Posted on Mon, 07 Sep 2026 16:51:20 +0000 by ThoughtRiot

Debugging Spring AOP Execution Flow: A Complete Walkthrough

Debugging Environment Before diving into the execution flow, ensure you have access to the following project for reference: Sample project: https://github.com/1367356/laboratoryWeb Simple Spring AOP implementation: SpringAOPTheory Start the application and navigate to: http://localhost:9002/queryNews?htmlid=1531872732684 Step 1: Controller En ...

Posted on Thu, 27 Aug 2026 16:31:02 +0000 by Entanio

Modern JavaScript Reactive Systems, Async Patterns, and Browser APIs

Proxy and Reflect: Building Reactive Systems Modern JavaScript frameworks like Vue 3 leverage Proxy and Reflect to implement reactivity more efficiently than the older Object.defineProperty approach. While defineProperty can only observe existing properties and requires manual intervention for additions or deletions, Proxy intercepts fundamenta ...

Posted on Tue, 25 Aug 2026 16:47:28 +0000 by alsal

Understanding Proxy Auto-Configuration (PAC) Files

When working with network routing and proxy configurations, Proxy Auto-Configuration (PAC) files provide a powerful mechanism for dynamically directing traffic. A PAC file is essentially a JavaScript-based script that determines how web requests should be handled—whether they should go directly to their destination or be routed through a proxy ...

Posted on Wed, 19 Aug 2026 16:48:19 +0000 by Erkilite

Vue 3 Fundamentals

Enviroment Setup Vue 3 requires Node.js for development. Install the Vue CLI globally: npm install -g @vue/cli vue --version # Verify version (≥4.5.0) vue create project-name # Select "Manually select features" during setup Composition API Fundamentals Reactive State Management ref() for Primitive Values <template> <div&g ...

Posted on Sat, 01 Aug 2026 16:18:24 +0000 by tiki

Load Balancing with Nginx

Load Balancing Fundamentals Global Server Load Balancing (GSLB) GSLB operates across geographically distributed infrastructure with the following components: Global Coordinator: Oversees the entire traffic distribution system Regional Dispatcher: Manages traffic within a specific geographic area Application Controller: Routes requests to appro ...

Posted on Sun, 26 Jul 2026 16:08:27 +0000 by T Horton

Server Operation Techniques

Using a PC as a proxy to access external networks from a server 1. Start a proxy on the PC, such as nginx Download nginx: http://nginx.org/en/download.html Modify the configuration file in the conf directory: http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; ...

Posted on Thu, 23 Jul 2026 16:27:35 +0000 by DaveTomneyUK

Aspect-Oriented Programming in Spring

Aspect-Oriented Programing (AOP) Overview According to the Spring tutorial by King God's Spring 07: "AOP Made Simple" (qq.com) Understanding AOP Aspect-Oriented Programming (AOP) refers to a programming paradigm that enables unified maintenance of program functionalities through pre-compilation and runtime dynamic proxies. AOP exten ...

Posted on Sun, 05 Jul 2026 16:35:11 +0000 by dw89

Essential Nginx Configuration Parameters Explained

The worker_processes directive determines the number of worker processes Nginx should spawn. A typical Nginx instance runs one master process that manages multiple worker processes based on this setting. The default value is 'auto', which automatically creates a number of worker processes equal to the available CPU cores. When using SSL certifi ...

Posted on Tue, 23 Jun 2026 17:54:17 +0000 by Gish

Configuring Twemproxy as a Redis Cluster Proxy

Service Name IP Addres Description proxy-server-01 10.32.161.130 Twemproxy (nutcracker) instance redis-node-01 10.32.161.131 Redis cluster node redis-node-02 10.32.161.132 Redis cluster node redis-node-03 10.32.161.133 Redis cluster node redis-node-04 10.32.161.134 Redis cluster node redis-node-05 10.32.161.135 Redis cluster no ...

Posted on Thu, 18 Jun 2026 18:06:20 +0000 by jabbaonthedais