Tag Archives: .NET
The Legend of FinkyPieheimer@zoobatz.com
Occasionally, you want a quick disposable email address for registering on suspicious websites, or in my case, for testing your own website’s registration system. While there are several options, I use Mailinator because you don’t need to set up anything … Continue reading
Announcing Manta
It’s taken much too long, but I’ve finally created an online project for Manta, which until recently didn’t even have an official name. Manta is an open source .NET library that currently features a variety of I/O- and web-related classes … Continue reading
Crouching Enumerator, Hidden Boxing
A few months ago, I was playing around with a simple C# permutation generator to build a word list, with each character position having its own list of characters to iterate through: List<T>.Enumerator enumerator = characterList.GetEnumerator(); while (condition) { if … Continue reading