Fading Coder

One Final Commit for the Last Sprint

Core Python Function Mechanics: Scope, Recursion, and Higher-Order Utilities

Function Fundamentals and Return Behavior In Python, a function bundles a logical code block under a name for reuse and modularity. Here is a basic template for defining a function: def compute(value): """Increment the provided value.""" result = value + 1 return result...

Maximizing the Minimum Gap by Removing Rocks with Binary Search

A river contains a starting rock at position 0 and an ending rock at position L. Between them there are N intermediate rocks, each at a distinct coordinate Di (0 < Di < L). A cow must jump from rock to rock, never skipping ahead by less than some distance. To challenge the cows, we can remove...

PolarCTF 2025 Summer Challenge Writeup: Misc, Web, and Crypto Puzzles

Miscellaneous Challenges Initial Access via Social Media The first step involves following the official public account and sending a specific keyword to receive a token. Virtual Machine Forensics Import the provided .ovf file into virtualization software. Once the system boots, launch the Edge brows...

Implementing Radar and Car Dashboard with QPainter in C++ Qt

Event Handling for Drawing The QPaintEvent class in Qt handles drawing operations when widgets need repainting. This occurs during initial display, resizing, exposure after being obscured, or through explicit calls to update() or repaint(). Custom drawing is implemented by overriding paintEvent(QPai...

KMP (Knuth–Morris–Pratt) String Matching Algorithm

KMP (Knuth–Morris–Pratt) String Matching Algorithm
KMP (Knuth–Morris–Pratt) is a string matching algorithm well suited for finding a single match. For multiple matches, an improved Rabin-Karp is better. Note: If you are preparing for an exam, do not read this article because it follows the original paper, which differs significantly from typical exa...

Setting Up Apache Tomcat 8.5 Source Code in IntelliJ IDEA with Maven

Downloading Tomcat Source Code Clone the Tomcat 8.5.x branch from the official Apache repository: git clone https://github.com/apache/tomcat.git Switch to the 8.5.x branch for compatibiilty with this setup. Creating the Maven POM File Add a pom.xml to the root of the cloned repository with the follo...

Docker Installation and Mirror Configuration

Switching to Root User su Removing Previous Docker Versions If Docker is already installed on the system, first remove the existing version: yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate \ docker-logrotate \ docker-engine Configuri...

Data Modeling in Elasticsearch: Objects, Relationships, and Pipelines

Objects and Nested Objects Relational Data in the Real World Many real-world scenarios involve complex relationships between entities: Blog posts linked to authors and comments Bank accounts with multiple transaction records Customers owning multiple bank accounts Directories containing files and su...

Swapping Values with Bitwise XOR Operations

The XOR operation, denoted as ^ in most programming languages, produces a true output only when the inputs differ. Its truth table is as follows: p q p ^ q 1 1 0 1 0 1 0 1 1 0 0 0 Examples of XOR on binary literals: bin(0b1010 ^ 0b1100) # Result: '0b110' bin(0b11110000 ^ 0b10101010) # Result: '0b101...

Identifying and Resolving Port Usage Conflicts in Java Applications on Windows

Identifying Port Usage in Java Applications When a Java application fails to start due to a port conflict, it is necessary to identify wich process is occupying that port. This can be done using built-in Windows command-line tools or third-party applications. Using Command-Line Tools The netstat com...