This document highlights my contributions to developer content, covering technical blogs, product announcements, and video tutorials from my time at Microsoft and DevExpress.
Here are some of the blogs I contributed to at Microsoft.
This document highlights my contributions to developer content, covering technical blogs, product announcements, and video tutorials from my time at Microsoft and DevExpress.
Here are some of the blogs I contributed to at Microsoft.
Open regedit.exe
,
go to Computer\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize
and set both AppsUseLightTheme
& SystemUsesLightTheme
DWORDs to 0.
Alternatively, download and save the windows-dark-mode.reg
file below as a .reg
file and run it.
Source: https://old.reddit.com/r/Windows11/comments/o1l55u/how_do_i_enable_dark_mode_on_windows_11/h21f69b/
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
#InstallKeybdHook | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
; OPTIONAL: For those who use Home/End more than PgUp/PgDown, this flips their use with the Fn key. | |
; If you want the buttons to function as they are, add a semicolon (;) to the beginning of each line below. | |
Home::PgUp | |
End::PgDn | |
PgUp::Home |
// This is the equivalent of the old waitsFor/runs syntax | |
// which was removed from Jasmine 2 | |
waitsForAndRuns = function(escapeFunction, runFunction, escapeTime) { | |
// check the escapeFunction every millisecond so as soon as it is met we can escape the function | |
var interval = setInterval(function() { | |
if (escapeFunction()) { | |
clearMe(); | |
runFunction(); | |
} | |
}, 1); |