Fading Coder

One Final Commit for the Last Sprint

C++ Namespace Mechanics: Isolating Identifiers and Managing Scope

Namespaces in C++ provide a declarative region that localizes identifier visibility, preventing collision between homonymous entities across different logical domains or external libraries. Collision Avoidance Consider a scenario where a legacy C header defines a macro or global function that confli...

Storing Form Data in Flowable 6.8 Processes

Why Forms Are Used Forms serve as a mechanism to capture and store business-related data within workflow processes. They allow for dynamic data collection at runtime, which can be accessed and modified throughout the process lifecycle. Additionally, forms support conditional expressions and provide...

Dynamic Schema Management and Runtime Updates in Apache ShardingSphere

A data node represents the atomic unit of sharded storage, defined by a specific source connection paired with a physical table name. For example: ds_inventory.products_0. Static Configuraton Methods 1. Manual Enumeration The simplest approach involves listing every target node explicitly within the...

Developing a Graduation Project Management System Using Spring Boot, Vue, and Uniapp

Technology Stack The backend is built with Spring Boot, taking advantage of its embedded server support (Tomcat, Jetty, Undertow) and auto-configuration to streamline development. This eliminates the need for manual server setup and minimizes boilerplate. On the frontend, Vue.js drives a reactive, c...

Exploring Blocking Queues: Concepts, Applications, and a Simple Implementation

Blocking Queue Basics A blocking queue is a thread-safe extension of the standard FIFO queue, integrating automatic blocking mechanisms for both enqueue and dequeue operations: If the queue is empty, take() operations block the calling thread until an element becomes available. If the queue reaches...

Building a Dynamic Grid Morphing Navigation with HTML5, CSS3, and Fetch API

Grid morphing navigation delivers visually engaging transitions between interactive menu states by combining semantic markup, modern CSS transforms, and asynhcronous content loading. Key implementation pillars include grid-based posisioning for menu cells, CSS transitions/transforms for scaling/shif...

Solving Hackpack 2023 Reverse Engineering Challenges with Automated Tools

Competition Overview The Hackpack 2023 CTF featured several reverse engineering challenges available at https://ctf2023.hackpack.club/challenges. This writeup covers two main challenge categories: the Speed-Rev series and a WebAssembly challenge. Speed-Rev Challenge Analysis The Speed-Rev challenge...

Deploying MinIO for Object Storage with Spring Boot Integration

Windows Environment Setup MinIO is a lightweight, high-performance object storage system written in Go. It provides an S3-compatible API and is suitable for local deployments or on-premise infrastructure. Local Installation Download the windows-amd64 executable from the official repository. Place mi...

Making Cross-Domain Requests with Axios Using JSONP in Vue

JSONP (JSON with Padding) enables cross-origin data retrieval by injecting a <script> tag whose source points to a remote endpoint returning executable JavaScript. Unlike standard XHR, it bypasses same-origin restrictions by exploiting how browsers load external scripts. Cross-domain request f...

Implementing Command-Line Interfaces in Flask with Flask-Script

Flask-Script extends Flask applications by integrating a command-line interface. It enables developers to execute external tasks directly from the terminal, such as launching development servers, running database migrations, scehduling background jobs, or invoking custom utility functions outside th...