1. Minimod.PrettyText

    By:

    Extends System.String/IEnumerable<string> by following methods: a) ShortenTo(int length, string hint = "..."): Crops a text to fit into certain number of chars. Appends 'hint' if it has to be cropped; b) WrapAt(int margin): Nicely wraps a text at the given margin. Tries not to split in the middle of... More information

  2. Minimod.PrettyPrint

    By:

    Creates nice textual representations of any objects. Mostly meant for debug/informational output.

  3. Minimod.RabbitMqTopicsMessageStream

    By:

    A minimod for RabbitMQ message processing.

  4. Minimod.JoinStrings

    By:

    A minimod for fluently joining Enumerables using String.Join; Adds JoinStringsWith() to IEnumerable and IEnumerable<T>

  5. Minimod.FluentGenerics

    By:

    A minimod for fluently interacting with genric types.

  6. Minimod.PrettyTypeSignatures

    By:

    Extends System.Type, System.Reflection.MethodBase and System.Diagnostics.StackFrame by a method called 'GetPrettyName()'.

  7. Minimod.ThreadVariable

    By:

    Typesafe thread-static variables.

  8. Minimod.PrettyDateAndTime

    By:

    Extends DateTime, DateTimeOffset and Timespan by a method called 'GetPrettyString()'.

  9. Minimod.WebSocketMessageStream

    By:

    A minimod for messaging using HTML5 WebSockets. HTML5 WebSocket demo included.

  10. Minimod.FluentNullOrEmpty

    By:

    A minimod for fluently checking if strings or collections are either null and/or empty.

  11. Minimod.NestedDictionary

    By:

    Extends System.Collections.Generic.IDictionary´2 with EnsureValueFor and AddToCollection: a) EnsureValueFor(TKey key): Creates a instance of TValue for the given key and returns it; b) AddToCollection(TKey key, item(s)): Ensures the concrete collection type for key, and adds the given value(s) to it.

  12. Minimod.Linq2Dictionary

    By:

    Extends System.Collections.Generic.IDictionary´2 with Union.

  13. Minimod.Impersonator

    By:

    A minimod for impersonation with network share support.

  14. Minimod.RxEventSourcing

    By:

    A minimod for persisting event messages using Rx.

  15. Minimod.MessageProcessor

    By:

    CEP based on Rx.

  16. Minimod.Continuation

    By:

    A minimod for easy to use continuation pattern in CSharp.

  17. Minimod.HttpMessageStream

    By:

    Small embedded web server based on Rx and working like node.js.

  18. Minimod.PatternMatching

    By:

    A minimod for easy to use pattern matching in CSharp.

  19. Minimod.RxEventRepository

    By:

    A minimod for persisting event messages using Rx.

  20. Minimod.String2Enum

    By:

    A minimod for parsing Strings as Enums.