Skip to content

Instantly share code, notes, and snippets.

@SleepWellPupper
SleepWellPupper / quotes.md
Last active June 25, 2025 19:39
Interesting Quotes

Quotes

But to offer these freedoms, you have to trust the person operating your system, honour their agency, and respect them as a serious intellectual partner instead of a gibbering idiot to be manipulated for your own ends.

[...]

⁃ Does the “user” feel respected by the software?

⁃ How does this software affect the mental health of the “user”?

@SleepWellPupper
SleepWellPupper / ideabox.md
Last active July 17, 2025 07:32
Where Ideas Go To Collect Dust

IdeaBox

Where Ideas Go To Collect Dust.

PRs will be considered for dust collection.

Currently in the box:

  • Make IKVM run in Blazor WASM
  • Blazor component live preview (akin to storybook)
  • Generator for property setter validation akin to validation properties
  • IKVM Maven package browser VS extension
@SleepWellPupper
SleepWellPupper / booklist.md
Last active July 17, 2025 00:39
Cool Books I Like
  • CLR via C# 9780735667457
  • Refactoring 9780134757599
  • The Practice Of Programming 9780201615869
  • Everyware 9780321384010
  • Simple And Usable 9780134777603
  • C# In Depth 9781617294532
  • Dependency Injection 9781617294730
  • Design Patterns GOF 9780201633610
  • The C Programming Language 9780131103627
  • Learning Domain-Driven Design 9781098100131
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
class EnumerationType0 : IEnumerable, IEnumerable<int>, IEnumerable<string>
{
IEnumerator<int> IEnumerable<int>.GetEnumerator() => throw new NotImplementedException();
IEnumerator IEnumerable.GetEnumerator() => throw new NotImplementedException();
IEnumerator<string> IEnumerable<string>.GetEnumerator() => throw new NotImplementedException();