Skip to content

Instantly share code, notes, and snippets.

View wernerhp's full-sized avatar

Werner Pieterson wernerhp

View GitHub Profile
@marhensa
marhensa / windows-11-25H2-local-account-workaround.md
Last active December 29, 2025 22:54
Windows 11 25H2 Local Account Workaround (Proper)

Windows 11 25H2 Local Account Workaround (Proper)

After installing Windows to a partition and then after the automatic reboot:

When the installation screen shows "Is this the right country or region?" press: Shift + F10

In the Command Prompt, type the following commands:

(change vboxuser to your username)

@wernerhp
wernerhp / nsprintf.php
Created June 1, 2015 09:24
Formats a string using an associative array.
/**
* Formats a string using an associative array.
* Example:
* echo nsprintf(":name :surname is :age", array('name' => 'John', 'age' => '29', 'surname' => 'Doe'));
*
* @param string $format A formatted string with named template fields
* @param array $args An associative array of values to place in the formatted string.
* @return string A formatted string
*/
function nsprintf($format, $args)