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”?
- 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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); |