Skip to content

Instantly share code, notes, and snippets.

@zgracem
zgracem / fix-skyrim-dark-face-npc-bug.md
Last active May 19, 2024 23:46
Fixing the "dark face" NPC bug in Skyrim SE
created updated
2021-03-04
2024-05-19

Fixing the "dark face" bug in Skyrim SE

Important

This document is obsolete! Use Face Discoloration Fix SE instead.

@MarkTiedemann
MarkTiedemann / download-latest-release.ps1
Last active July 1, 2025 17:06
Download latest GitHub release via Powershell
# Download latest dotnet/codeformatter release from github
$repo = "dotnet/codeformatter"
$file = "CodeFormatter.zip"
$releases = "https://api.github.com/repos/$repo/releases"
Write-Host Determining latest release
$tag = (Invoke-WebRequest $releases | ConvertFrom-Json)[0].tag_name