Skip to content

Instantly share code, notes, and snippets.

@Mehul
Mehul / gist:a86be3d7555e3314e93f407a35d27a39
Last active March 5, 2025 22:22
Microsoft & DevExpress Blog Contributions: AI, .NET, and Cloud

Microsoft & DevExpress Blog Contributions: AI, .NET, and Cloud

This document highlights my contributions to developer content, covering technical blogs, product announcements, and video tutorials from my time at Microsoft and DevExpress.


Microsoft Blog Contributions

Here are some of the blogs I contributed to at Microsoft.

.NET Announcements & Releases

@PyroGenesis
PyroGenesis / windows-dark-mode.md
Last active April 28, 2025 14:34
Enable Windows Dark Mode via registry (no activation needed)
@PurpleBooth
PurpleBooth / README-Template.md
Last active April 29, 2025 02:22
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

#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
@abreckner
abreckner / waitsForAndRuns.js
Created May 9, 2014 01:56
Jasmine 2 plug in to re-enable waitsFor and runs functionality
// 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);