.NET 11 Preview 2 is now available!
#dotnet #csharp #programming #TechNews #TechUpdates #dotnet11 #fsharp
Latest posts tagged with #Fsharp on Bluesky
.NET 11 Preview 2 is now available!
#dotnet #csharp #programming #TechNews #TechUpdates #dotnet11 #fsharp
Case in point: I had never encountered the concept of "lazy evaluation" before (or at least don't recall it if I did). But I wrote a bit about how this applies to #fsharp sequences and how to take advantage of it.
blog.samirparikh.com/2026/03/lazy...
The more I learn about functional programming in general, and #fsharp in particular, the more I feel like I'm starting my programming journey "Ab initio".
or jewelry.
Looking back at your posts, I see you've been sharing so many interesting thoughts! You've been really diving into games like "Marathon" and reflecting on technology and programming languages like #fsharp. It's so cool to see your passion and how you connect different ideas! You're
Been doing @gleam.run and #fsharp side by side the past few days (porting libs).
Two of the best programming languages I have worked with. And so much you can enrich your knowledge of one with the help of the other.
⚡️ F# Weekly #11, 2026
🏷️ #devdigest #dotnet #net #fp #fsharp #nbomber
https://devdigest.today/goto/5808
F# Weekly #11, 2026 - F# in .NET 11 Preview 2 #fsharp sergeytihon.com/2026/03/14/f...
F# in .NET 11 Preview 2 - Release Notes #fsharp github.com/dotnet/core/...
I’ve heard discriminated unions are coming to #csharp soon, but I’m already playing around with it my own way 🤓
#fsharp #functional #programming #discriminated #unions
www.celsojr.com/post/partiti...
📖 After four months of work, the book “Safe Clean Architecture” is now complete 🎉
🔗 Check it out online.
rdeneau.gitbook.io/safe-clean-a...
#fsharp #free #e-book
I think I get List.collect
let myList = [ 1 .. 3 ]
// return list of n and n * 2
myList
|> List.collect (fun n -> [ n; n * 2 ])
int list = [1; 2; 2; 4; 3; 6]
// return list of tuples of n and n * 2
myList
|> List.collect (fun n -> [ n, n * 2 ])
(int * int) list = [(1, 2); (2, 4); (3, 6)]
👍
#fsharp
The start of a cross-platform Actor library for F# / Fable ✨ Works on .NET, Python, JS and ... BEAM. Single process except BEAM where you get multi-process and supervision. Same code runs everywhere 🤩 #fablecompiler #fsharp github.com/dbrattli/Fab...
Yesterday I went down a rabbit hole of personal reflection (no pun intended) of meta programming and how the approach to an agentic system I took with MOTHER, written in #fsharp, actually aligns nicely with F#’s lineage in the programming language world.
blog.bencope.land/mother-metap...
Great article and thanks for posting! As someone still new to functional programming and #fsharp, I really appreciate the examples you provided and the comparisons to the imperative way of doing things.
Stupid question: What's the difference between exceptions and results?
This blog sums up the reason why I choose for #fsharp to program a complicated clinical decision support system #GenPRES: cekrem.github.io/posts/why-i-...
Just my personal observation as a complete #fsharp newbie but when it comes to getting LLM assistance to troubleshoot code, ask questions or get clarification on things:
DeepSeek-V3.2 > ChatGPT 5.2 > Claude Opus 4.6
Trying to better understand the differences between using records types
type EmailAddress = { EmailAddress: string }
and single-case DU
type EmailAddress = EmailAddress of string
to provide type safety when wrapping strings in #fsharp 🤔
And I would love getting people on board using #fsharp to write great clinical decision software like #GenPRES. Great blog and I couldn't agree more with you. For complex domains (like medicine), #fsharp just shines!
Hey #fsharp what are your thoughts on github.com/fsprojects/f... ?
Hey #fsharp what are your thoughts on github.com/fsprojects/f... ?
I use the great AZD plugin to make working with Azure DevOps PRs simpler for JetBrains IDEs (plugins.jetbrains.com/plugin/22319... ). One of its many features is an AI-driven PR review. It gave me many good pointers, but it should sharpen its F# knowledge 😀
1/3
#fsharp #dotnet #JetBrains
It’s awesome! ML type inference is great. try also #dotnet #fsharp it comes from ocaml and is part of dotnet-sdk, also has REPL and .fsx scripts, works well with nuget packages, if you interested . Benefits of dotnet/csharp but with a FP first Lang
cekrem.github.io/posts/why-i-...
#fsharp
WebView and then Native GPU Control from Clef language - mind you it's loading one framebuffer but it's a start! This is actually a #cleflang and #fsharp story for now, but I'll be moving web generation to the Composer compiler soon. youtu.be/8egiPpVi4pg
I made a post on higher order functions in #fsharp to document what I'm learning about functional programming in general and the language in particular. As always, feedback and suggestions welcome!
blog.samirparikh.com/2026/03/high...
After a loooong vacation, I published a new version of #Feliz #DaisyUI library. Big kudos to Oleksiy Slyshyk, who did all the work (I just pushed the button 😁)
#fsharp
For those in the #fsharp and #dotnet arena, we're also starting to work on a distinct pathway for actors in Cloudflare using their Durable Object model along with other management and backplane tooling for supporting extended scenarios for distributed compute. github.com/FidelityFram...
🚨 BREAKING: 🙄🧐🤨☺️ (isn't everyone doing this now?) We just pushed the latest version of Cloudflare bindings for #fsharp. We've generated bindings for a fairly significant cross-section of the supported SDK and API surface for management. #dotnet www.nuget.org/packages?q=F...
I'm learning about currying and partial application in #fsharp functions
blog.samirparikh.com/2026/03/func...
F# Weekly #10, 2026 - Start Your Day With Code That’s Better
#fsharp sergeytihon.com/2026/03/08/f...