Log inSign up
Atif Aziz
3,500 posts
@raboof

Atif Aziz

@raboof
raboof.com
Joined September 2007
148
Following
834
Followers
RepliesRepliesRepostsRepostsMediaMedia

Log in or sign up for X

See what’s happening and join the conversation

Continue with phone
or
Log in with username or email
Terms·Privacy·Cookies·Accessibility·Ads Info·© 2026 X Corp.
  • @raboof
    Atif Aziz
    @raboof
    Jun 30
    1/3 Earlier this year, I published BuildConstants. It solves a simple problem: define C# constant from MSBuild items. github.com/atifaziz/Build…
    1
  • @raboof
    Atif Aziz
    @raboof
    Jun 6
    It's just been crickets here since a minute! 💤 Time to try & change that (soon).
    GIF
  • @raboof
    Atif Aziz
    @raboof
    Jun 12, 2024
    Just for fun & kicks, published an Interact Monad gist in C#, derived from fssnip.net/8ay in F# by @tomaspetricek and demonstrating an interactive computation that asks the user questions: gist.github.com/atifaziz/4a043…
  • @raboof
    Atif Aziz
    @raboof
    Jun 11, 2024
    1/5 Here's a (peculiar) idea…writing & combining C# functions (`Func<,>`) entirely with LINQ, as if you didn't have `=>` in the language. Introducing Finq: github.com/atifaziz/Finq or F(unq) + (L)inq
    using Finq;

var f = // : Func<int, int>
    from x in Funq.Arg.Int32()
    select x * 2;

var g = // : Func<int, string>
    from x in f
    select $"{x + 2}";

Console.WriteLine(g(20)); // prints: "42"
    1
  • @raboof
    Atif Aziz
    @raboof
    Apr 3, 2024
    Released MoreLINQ 4.2, a minor bug fix release
    Release 4.2.0 · morelinq/MoreLINQ
    From github.com
    1