Resources  
  • How to Convert a Python Script to an Executable (.exe)Oct 06, 2025. Learn how to convert your Python scripts into standalone Windows executables (.exe) using PyInstaller! This comprehensive guide covers everything from installation and basic conversion to adding custom icons, bundling external resources like images and JSON files, and accessing those resources reliably at runtime using sys._MEIPASS.
  • Establishing Communication Between Executable Files Using TCP/IPMar 19, 2024. WPF apps use various IPC methods like Named Pipes, WCF, TCP/IP Sockets. TCP/IP sockets offer cross-platform communication with advantages like reliability but face complexity and firewall issues. Steps include server/client development, execution instructions. Use CommonHelper for collaboration.
  • Effective Communication Between Executable Files Using Shared MemoryMar 18, 2024. In a WPF (Windows Presentation Foundation) application, inter-process connectivity typically involves communication between different components or modules within the same application or between separate WPF applications running on the same system or across different systems.
  • How to Share and Install C# Application on Another Computer as executable fileMay 29, 2023. This article provides a comprehensive guide on installing, modifying, and uninstalling a C# application project as an executable (.exe) file in Visual Studio 2022. By following the step-by-step instructions outlined here, you will learn how to generate a standalone executable file and share it with other machines.
  • How to Generate a Standalone Executable File from C# Project in Visual Studio 2022May 29, 2023. In this article, we will explore the process of generating a standalone executable file from a C# project in Visual Studio 2022. A standalone executable file allows you to distribute your application to end users without the need for them to have the .NET Framework or any other dependencies installed on their machines.
  • Creating Trimmed Self-Contained Single Executable Using .NET Core 3.0Oct 17, 2019. In this article, you will learn how to create a trimmed self-contained single executable using .NET Core 3.0.
  • How To Create A .NET Core 3.0 Trimmed Self-Contained Single Executable App Using VS CodeJul 28, 2019. In this tutorial, we are going to learn how to create a self-contained app using Asp.Net Core 3.0 using Visual Studio code.
  • Application Startup and Executable PathApr 26, 2010. The code snippet in this article demonstrates how to use Application class static properties to get Windows Forms application startup path, executable path and user data path using C#.
  • How to remotely load an executable file in ASP.NETJul 26, 2006. A simple ASP.NET sample to load an executable file (or an application) remotely from internet.
  • Spec Kit: What It Is and How It Helps Teams Build Better Software With AIMay 12, 2026. Learn what Spec Kit is, how it works, and how AI-powered Specification-Driven Development helps developers build software faster with clearer requirements, better planning, and improved code quality.
  • Compiling Multiple Files to Build an ApplicationSep 29, 2024. This article explains how to compile multiple C files into a single executable using the C compiler. It covers two approaches: compiling multiple files with the cc command or using the #include directive to link functions.
  • Applied Reverse Engineering With OllyDbgOct 27, 2014. This paper explores executable cracking using OllyDbg, focusing on reverse engineering without source code. It emphasizes Assembly Programming and tools like OllyDbg and CFF Explorer. Methods include patching binaries to bypass copy protection. A trial software example demonstrates debugging and modifying code to remove expiration.
  • Backup Your Source Code Daily Using C# ProgrammingJul 09, 2014. Discover an automated solution for daily source code backup with ease. This content introduces an executable file designed to streamline the backup process, ensuring your data is safeguarded without manual intervention.
  • Code Execution ProcessMar 20, 2013. The code execution process involves compilation or interpretation, generating machine code or bytecode, loading into memory, and executing instructions. It includes steps like lexical analysis, parsing, optimization, and runtime environment setup, crucial for efficient program execution.
  • iPhone Memory Leaks Tracking and Use of InstrumentsFeb 14, 2013. This article explores iPhone memory leaks, detailing how to track them using Instruments and NSZombie. It explains what memory leaks are, their causes, and the consequences of losing track of allocated memory.
  • C# or VB.NET: World War IIINov 09, 2012. I know many .NET developers have this question in their mind. Which language do I use to develop .NET applications?
  • Namespaces and Assemblies in C#Nov 27, 2009. In this article I will explain about Namespaces and Assemblies in C#.
  • Introduction to The Resources .resx and Resources Files: Part I May 05, 2008. In some cases an application needs some external resources to perform specified tasks. And I mean by external resources, those none executables data logically deployed with a given application.