Understanding Docker Images, Containers, and Registries
Image Sources and Container Management
Docker images can be categorized into two main types:
Base System Images: Minimal operating system templates used as foundations
Application Images: Pre-configured service images ready for deployment
Creating base system images from templates:
# Import CentOS 6 minimal template
cat centos-6-x86-minimal.t ...
Posted on Tue, 09 Jun 2026 16:43:38 +0000 by minou
Implementing Auto-Start Functionality in Windows Applications
Two Approaches for Auto-Starting Windows Applications
1. Startup Folder Shortcut Method (No Admin Rights Required)
This approach creates a shortcut in the Windows startup folder:
using System;
using System.IO;
using IWshRuntimeLibrary;
public class AutoStartManager
{
private const string AppShortcutName = "MyApplication";
...
Posted on Mon, 25 May 2026 21:59:08 +0000 by NerdConcepts
Resolving Selenium IE Driver "Unable to Find Element" Error on IE11
When using Selenium with Intrenet Explorer 11, a common error encountered is:
OpenQA.Selenium.NoSuchWindowException: Unable to find element on closed window
This issue occurs becuase IE11 does not fully support Selenium 2.0's WebDriver protocol, particularly when trying to locate elements on a page.
Solution: Modify Windows Registry
For IE 11 s ...
Posted on Mon, 18 May 2026 20:23:54 +0000 by dtdetu