Edit this user's status
Neither a great programmer, nor an inspired artist, I procrastinate while day-dreaming I'm good at both. I will farm your suffering and feed on your soul.
Pinned Loading
-
Remove Remote Git Tag
Remove Remote Git Tag 1git tag -d "tag_name"
2git push --delete origin "tag_name"
-
Quick & dirty dark theme
Quick & dirty dark theme 1((invertImages, invertCode, applyBlackBackground) => {
2document.body.style.filter = "invert()"
3document.body.style.background = applyBlackBackground ? "black" : "white"
4Array.from(document.querySelectorAll("pre")).map(pre => pre.style.filter = invertCode ? "invert()" : null)
5Array.from(document.querySelectorAll("img")).map(img => img.style.filter = invertImages ? "invert()" : null)
-
What I Understand about PowerShell A...
What I Understand about PowerShell Approved Verbs 1# PowerShell Tips
23## `Write-Host` vs `Write-Output`
45`Write-Host` writes directly to the console; `Write-Output` writes to the pipeline, which often ends up to the console but not necessarily.
-
CallerMemberName works on fields!
CallerMemberName works on fields! 1using System.Runtime.CompilerServices;
23static class Program {
4class Symbol {
5public readonly string DebugName;
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.