Marcin Golenia (@goleniamarcin) 's Twitter Profile
Marcin Golenia

@goleniamarcin

I am here for cats 🐱agile software dev 🧙‍♂️ and functional programming ().

ID: 4896020481

linkhttps://mcode.it/ calendar_today10-02-2016 21:09:04

401 Tweet

60 Takipçi

62 Takip Edilen

🇺🇦 Anton Moldovan (@antyadev) 's Twitter Profile Photo

[Blogged] Entering Actor Model Nirvana with F# and TPL DataFlow. I highly recommend reading a section with the papers list: (Actor Model + Data Storage = Actor Database) medium.com/draftkings-eng… #fsharp #csharp #dotnet

Cory House (@housecor) 's Twitter Profile Photo

I think the term "prop drilling" encourages React developers to overuse tools like Context and Redux. "Prop drilling" is just passing arguments down through multiple functions. That's typically no big deal. Don't let the jargon scare you into overusing global state.

SchlenkR (@schlenkr) 's Twitter Profile Photo

Hi folks, I've released an alpha of an F# text template type provider. It's basically this: A model is infered for a given text template that is made up of literals, holes, conditionals and loops. See here:

Hi folks, I've released an alpha of an F# text template type provider. It's basically this: A model is infered for a given text template that is made up of literals, holes, conditionals and loops. See here:
David Dawkins (@davedawkins) 's Twitter Profile Photo

Sutil 2.0.0 released. See (sutil.dev/#documentation…) for notes on upgrading existing projects. Added API docs using fsdocs: sutil.dev/apidocs/refere…. Release notes: github.com/davedawkins/Su… More documentation here (with new sections): sutil.dev/#documentation… REPL update soon

F# Online (@fsharponline) 's Twitter Profile Photo

Get ready for an incredible 3-day event! Discover the world of Data Science in F# with inspiring talks and dynamic collaboration. Explore Biology, Finance, and Logistics and help shape F#'s rapidly growing Data Science ecosystem. #fsharp #DataScience buff.ly/3mzTBjl

Get ready for an incredible 3-day event! Discover the world of Data Science in F# with inspiring talks and dynamic collaboration. Explore Biology, Finance, and Logistics and help shape F#'s rapidly growing Data Science ecosystem. #fsharp #DataScience 
buff.ly/3mzTBjl
Łukasz Krzywizna (@lukaskrz) 's Twitter Profile Photo

Exciting news! 🎉 We're seeking a dynamic #fsharp Full Stack Developer based in Poland to join our team at SelectView. More info here: justjoin.it/offers/selectv… 💼💻 #HiringNow #fable #dotnet

Marcin Golenia (@goleniamarcin) 's Twitter Profile Photo

Hey #fsharp and Fable Compiler 🇺🇦 #StandWithUkraine! I just used Fable.Core.Jsx feature to use MUI components. Works great! But now I face the issue to create a theme using ThemeProvider and createTheme from @mui/material. Can anyone give me a hint how can I define a provider that wraps my app?

Tomas Petricek (find me on BlueSky) (@tomaspetricek) 's Twitter Profile Photo

For the new semester at Matematicko-fyzikální fakulta Univerzity Karlovy, I'm planning a new course (what a bad idea, but it will be fun!) Focused on writing tiny versions of programming systems and key algorithms in #fsharp. Code samples and recordings will be publicly available. Check it out: d3s.mff.cuni.cz/teaching/nprg0…

For the new semester at <a href="/matfyz/">Matematicko-fyzikální fakulta Univerzity Karlovy</a>, I'm planning a new course (what a bad idea, but it will be fun!) Focused on writing tiny versions of programming systems and key algorithms in #fsharp. Code samples and recordings will be publicly available.

Check it out: d3s.mff.cuni.cz/teaching/nprg0…
amplifyingfsharp (@amplifyfsharp) 's Twitter Profile Photo

Excited for our "Unlocking F# Potential" session on F# programming! Join us this Friday to explore UI development, practical scripting, and more! Lineup: SchlenkR on UI, Amber Dawe's top-secret talk, and نيفو العراقيه's top F# scripts! #fsharp amplifying-fsharp.github.io/sessions/2023/…

Jindřich Ivánek (@jindraivanek) 's Twitter Profile Photo

I am starting blog series "F# tips weekly", where I'll share F# programming tips I have learned along my #fsharp journey. You can expect general F# tips with code examples or explaining pitfalls I have encountered. jindraivanek.hashnode.dev/series/fsharp-…

I am starting blog series "F# tips weekly", where I'll share F# programming tips I have learned along my #fsharp journey. You can expect general F# tips with code examples or explaining pitfalls I have encountered.

jindraivanek.hashnode.dev/series/fsharp-…
Łukasz Krzywizna (@lukaskrz) 's Twitter Profile Photo

🌟 Thrilled to share my debut article! "Optimizing F# and React Integration with Elmish Store: A Guide to Efficient State Management" delves into enhancing state control in #fsharp, #elmish, and #react. Check it out here: dev.to/lkrzywizna/opt…

Marcin Golenia (@goleniamarcin) 's Twitter Profile Photo

Hi #fsharp! How the routef from giraffe is implemented? I mean how can I wrote a function that depending on the string pattern will enforce another function with specific parameters? routef "/abc/%s" (fun x -> text x) routef "/def/%s/%i" (fun (x, i) -> text (x + i.ToString())