Deploying a SOCKS5 Proxy Server with Docker Compose

Overview This guide walks through deploying a SOCKS5 proxy server containerized with Docker. The setup uses the ss5 package and includes optional username/password authentication support. Project Structure Create a project directory with the following files: docker-compose.yml - Container orchestration configuration ss5.conf - Main SOCKS5 serv ...

Posted on Mon, 08 Jun 2026 18:51:59 +0000 by SEVIZ

Introduction to Object.defineProperty, Proxy, and Reflect in JavaScript

Object.defineProperty An object in JavaScript is an unordered collection of key-value pairs, where each property can hold any type of value. While properties can be modified using literal notation, Object.defineProperty alows for defining new properties or modifying existing ones with specific characteristics. Syntax: Object.defineProperty(obj, ...

Posted on Fri, 05 Jun 2026 17:47:23 +0000 by Sweets287

Data Reactivity Mechanisms: Vue 2 vs Vue 3

Data Proxy and Data Hijacking Understanding Vue's reactivity system requires examining two key concepts: data proxy and data hijacking. Data proxy involves creating processed copies of properties defined in the data option. When accessing vm._data, you interact with getter and setter methods for each property. When a property changes, the sette ...

Posted on Fri, 15 May 2026 01:53:19 +0000 by OhLordy

Implementing JDK Dynamic Proxies in Java

JDK dynamic proxies provide a mechanism to create proxy instances that implement specified interfaces at runtime. Here's a basic implementation: import java.lang.reflect.*; interface GreetingService { void greet(); } class GreetingServiceImpl implements GreetingService { public void greet() { System.out.println("Hello fr ...

Posted on Thu, 14 May 2026 08:33:27 +0000 by AtomicRax

Resolving Proxy Conflicts Between Vue 3 Reactivity and Three.js

Proxy Interference with Three.js Rendering When using Vue 3's reactive() to wrap Three.js objects like scene, camera, renderer, and controls, a runtime error occurs during rendering: three.module.js:24471 Uncaught TypeError: 'get' on proxy: property 'modelViewMatrix' is a read-only and non-configurable data property on the proxy target but th ...

Posted on Sat, 09 May 2026 14:18:32 +0000 by spainsoccerfreak