Skip to main content

Get ready for fsharpConf 2023!

Note: This is a guest blog post by Tomas Petricek, a member of the fsharpConf team, and Petr Semkin, who works on the F# Compiler & Tooling team.

Join the F# Community online Monday, June 26th for the live streaming of the fourth year of fsharpConf, a free virtual event featuring world-class F# experts across the globe supported by the F# Software Foundation and the.NET team at Microsoft.

F# boasts a dynamic open-source community that contributes to an expansive range of libraries, tools, and applications. These span areas from web development frameworks and domain-driven development tools to data analytics and scientific computing. The aim of fsharpConf is to unite this community, facilitating a platform to explore both foundational principles and innovative ideas in the world of F#.

What to anticipate at fsharpConf 2023?

This year’s conference will highlight discussions on diverse topics, including:

  • Moving from R to F#, harnessing F# for scientific computing, and using F# for city analysis.
  • Domain modeling, employing F# tools for domain-driven development, and web programming with Fable.
  • Insights into the current activities of the F# team at Microsoft, updates on the dotnet/fsharp repository, and the community’s initiatives to advocate and sustain F#.
  • Developing an F# version of Wolfenstein and using F# to construct a “deployless” programming language, DarkLang.
Time Speaker Topic
08:55 EDT

05:55 PST

14:55 CEST

fsharpConf organizers

Welcome to fsharpConf!
09:00 EDT

06:00 PST

15:00 CEST

Kathleen Dollard

.NET Languages PM and Friends Talk About F#
09:30 EDT

06:30 PST

15:30 CEST

John Azariah

Scientific Computing with F#
10:00 EDT

07:00 PST

16:00 CEST

Mark Seemann with Tomas Petricek

Discussion: Are Free Monads Really Free?
10:30 EDT

07:30 PST

16:30 CEST

James Randall

A Whirlwind Tour of Creating an F# Version of the Classic Wolfenstein 3D
11:00 EDT

08:00 PST

17:00 CEST

Edgar Gonzalez, David Schaefer, Jimmy Byrd & Florian Verdonck

Amplifying F#
11:30 EDT

08:30 PST

17:30 CEST

Maxime Mangel

Fable.Form: Unlock your Forms Super Powers
12:00 EDT

09:00 PST

18:00 CEST

Lars Furu Kjelsaas

Handling a Complex Domain with Readable Code
12:30 EDT

09:30 PST

18:30 CEST

Christopher Simon

Ubiquitous F# in Contextive, the Ubiquitous Language Tool
13:00 EDT

10:00 PST

19:00 CEST

Quick Coffee or Tea Break!

fsharpConf organizers

13:15 EDT

10:15 PST

19:15 CEST

Don Syme

A Brief Appearance of a Mystery Guest (TBA)
13:30 EDT

10:30 PST

19:30 CEST

Georg Haaser

FSharp.­Data.­Adaptive – Taming Mutation/td>
14:00 EDT

11:00 PST

20:00 CEST

Beth Milhollin

My Leap from R to F#
14:30 EDT

11:30 PST

20:30 CEST

Paul Biggar

Building Darklang in F#
15:00 EDT

12:00 PST

21:00 CEST

Paweł Stadnicki

City as a Function
15:30 EDT

12:30 PST

21:30 CEST

F# Team – MSFT Prague

News From the dotnet/fsharp Repository

Can’t wait until June 26?

If anticipation is too much, delve into our archives. Recordings from fsharpConf 2016, fsharpConf 2018, and fsharpConf 2020 offer a wealth of past talks on topics including the SAFE stack, F# type providers, using F# for Ham Radio, probabilistic programming languages, distributed computing, and even quantum computing.

The post Get ready for fsharpConf 2023! appeared first on .NET Blog.



source https://devblogs.microsoft.com/dotnet/tune-in-for-fsharpconf-2023/

Comments

Popular posts from this blog

Fake CVR Generator Denmark

What Is Danish CVR The Central Business Register (CVR) is the central register of the state with information on all Danish companies. Since 1999, the Central Business Register has been the authoritative register for current and historical basic data on all registered companies in Denmark. Data comes from the companies' own registrations on Virk Report. There is also information on associations and public authorities in the CVR. As of 2018, CVR also contains information on Greenlandic companies, associations and authorities. In CVR at Virk you can do single lookups, filtered searches, create extracts and subscriptions, and retrieve a wide range of company documents and transcripts. Generate Danish CVR For Test (Fake) Click the button below to generate the valid CVR number for Denmark. You can click multiple times to generate several numbers. These numbers can be used to Test your sofware application that uses CVR, or Testing CVR APIs that Danish Govt provide. Generate

How To Iterate Dictionary Object

Dictionary is a object that can store values in Key-Value pair. its just like a list, the only difference is: List can be iterate using index(0-n) but not the Dictionary . Generally when we try to iterate the dictionary we get below error: " Collection was modified; enumeration operation may not execute. " So How to parse a dictionary and modify its values?? To iterate dictionary we must loop through it's keys or key - value pair. Using keys

How To Append Data to HTML5 localStorage or sessionStorage?

The localStorage property allows you to access a local Storage object. localStorage is similar to sessionStorage. The only difference is that, while data stored in localStorage has no expiration time untill unless user deletes his cache, data stored in sessionStorage gets cleared when the originating window or tab get closed. These are new HTML5 objects and provide these methods to deal with it: The following snippet accesses the current domain's local Storage object and adds a data item to it using Storage.setItem() . localStorage.setItem('myFav', 'Taylor Swift'); or you can use the keyname directly as : localStorage.myFav = 'Taylor Swift'; To grab the value set in localStorage or sessionStorage, we can use localStorage.getItem("myFav"); or localStorage.myFav There's no append function for localStorage or sessionStorage objects. It's not hard to write one though.The simplest solution goes here: But we can kee