home.social

#haskel — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #haskel, aggregated by home.social.

  1. BoE's Jonathan #Haskel prefers to keep interest rates steady amid labor market #inflation pressures. Despite a 60% market expectation for an August rate cut, Haskel urges caution. #UK inflation hit 2% in May, but wage growth could drive it up. #BoE #InterestRates #UKEconomy

  2. BoE's Jonathan #Haskel prefers to keep interest rates steady amid labor market #inflation pressures. Despite a 60% market expectation for an August rate cut, Haskel urges caution. #UK inflation hit 2% in May, but wage growth could drive it up. #BoE #InterestRates #UKEconomy

  3. BoE's Jonathan #Haskel prefers to keep interest rates steady amid labor market #inflation pressures. Despite a 60% market expectation for an August rate cut, Haskel urges caution. #UK inflation hit 2% in May, but wage growth could drive it up. #BoE #InterestRates #UKEconomy

  4. #BoE policymakers #Greene, #Haskel and #Mann voted to raise interest rates by 0.25% points.

  5. #BoE policymakers #Greene, #Haskel and #Mann voted to raise interest rates by 0.25% points.

  6. Discussion of the expression model (easy to add data types vs. easy to add functions)
    here as Haskell algebraic data types vs OOP classes

    stackoverflow.com/questions/87

    #Haskel #OOP #ADT

  7. Discussion of the expression model (easy to add data types vs. easy to add functions)
    here as Haskell algebraic data types vs OOP classes

    stackoverflow.com/questions/87

    #Haskel #OOP #ADT

  8. Discussion of the expression model (easy to add data types vs. easy to add functions)
    here as Haskell algebraic data types vs OOP classes

    stackoverflow.com/questions/87

    #Haskel #OOP #ADT

  9. Discussion of the expression model (easy to add data types vs. easy to add functions)
    here as Haskell algebraic data types vs OOP classes

    stackoverflow.com/questions/87

    #Haskel #OOP #ADT

  10. The friendship between Haskell and C. ~ Chris Martin (@chris__martin). #Haskel #FunctionalProgramming

  11. The friendship between Haskell and C. ~ Chris Martin (@chris__martin). #Haskel #FunctionalProgramming

  12. The friendship between Haskell and C. ~ Chris Martin (@chris__martin). #Haskel #FunctionalProgramming

  13. The friendship between Haskell and C. ~ Chris Martin (@chris__martin). #Haskel #FunctionalProgramming

  14. The friendship between Haskell and C. ~ Chris Martin (@chris__martin). #Haskel #FunctionalProgramming

  15. Un #Google #Doodle attribuisce a #JerryLawson il titolo di "Padre del gioco su #cartuccia".
    Così si fa partire la storia da metà, cancellando la creazione di #Kirschner e #Haskel, dipendenti di #ALPEX e di tutto quello che arrivò prima e dopo

    bufale.net/il-doodle-di-google

  16. Un #Google #Doodle attribuisce a #JerryLawson il titolo di "Padre del gioco su #cartuccia".
    Così si fa partire la storia da metà, cancellando la creazione di #Kirschner e #Haskel, dipendenti di #ALPEX e di tutto quello che arrivò prima e dopo

    bufale.net/il-doodle-di-google

  17. Un #Google #Doodle attribuisce a #JerryLawson il titolo di "Padre del gioco su #cartuccia".
    Così si fa partire la storia da metà, cancellando la creazione di #Kirschner e #Haskel, dipendenti di #ALPEX e di tutto quello che arrivò prima e dopo

    bufale.net/il-doodle-di-google

  18. Un #Google #Doodle attribuisce a #JerryLawson il titolo di "Padre del gioco su #cartuccia".
    Così si fa partire la storia da metà, cancellando la creazione di #Kirschner e #Haskel, dipendenti di #ALPEX e di tutto quello che arrivò prima e dopo

    bufale.net/il-doodle-di-google

  19. Interesse in #linux (desktop draait linux sinds ca 1997), programmeren (op dit moment meestal #python, #haskel), databases (#oracle) en #IT in het algemeen.

    Speel #gitaar (#guitar), (modern) klassiek en af en toe jazzy/Zuid Amerikaans (Bijv. Antonio Lauro; de Venozolaanse walsen).

  20. Interesse in #linux (desktop draait linux sinds ca 1997), programmeren (op dit moment meestal #python, #haskel), databases (#oracle) en #IT in het algemeen.

    Speel #gitaar (#guitar), (modern) klassiek en af en toe jazzy/Zuid Amerikaans (Bijv. Antonio Lauro; de Venozolaanse walsen).

  21. Interesse in #linux (desktop draait linux sinds ca 1997), programmeren (op dit moment meestal #python, #haskel), databases (#oracle) en #IT in het algemeen.

    Speel #gitaar (#guitar), (modern) klassiek en af en toe jazzy/Zuid Amerikaans (Bijv. Antonio Lauro; de Venozolaanse walsen).

  22. Interesse in #linux (desktop draait linux sinds ca 1997), programmeren (op dit moment meestal #python, #haskel), databases (#oracle) en #IT in het algemeen.

    Speel #gitaar (#guitar), (modern) klassiek en af en toe jazzy/Zuid Amerikaans (Bijv. Antonio Lauro; de Venozolaanse walsen).

  23. Interesse in #linux (desktop draait linux sinds ca 1997), programmeren (op dit moment meestal #python, #haskel), databases (#oracle) en #IT in het algemeen.

    Speel #gitaar (#guitar), (modern) klassiek en af en toe jazzy/Zuid Amerikaans (Bijv. Antonio Lauro; de Venozolaanse walsen).

  24. @sir

    > Time for arguments. Functional programming has many useful applications, but functional programming *languages* are universally bad

    I assume you're drawing a distinction between multi-paradigm languages that support functional languages and "pure" functional languages.

    If so, you're not talking about a very large group of languages
    en.wikipedia.org/wiki/List_of_

    I basically read your toot as " is bad" :D

  25. @sir

    > Time for arguments. Functional programming has many useful applications, but functional programming *languages* are universally bad

    I assume you're drawing a distinction between multi-paradigm languages that support functional languages and "pure" functional languages.

    If so, you're not talking about a very large group of languages
    en.wikipedia.org/wiki/List_of_

    I basically read your toot as "#haskel is bad" :D

  26. (in fairness, though, the naive solution is even prettier/closer to English:

    fib :: Integer -> Integer
    fib 0 = 0
    fib 1 = 1
    fib n = fib (n-1) + fib (n-2)

    )

  27. @anathem According to internals.rust-lang.org/t/math, and all use '%' for the remainder operation, but and use it for true modulo