Skip to content
  • Home Home Home, current page.
  • Moments Moments Moments, current page.

Saved searches

  • Remove
  • In this conversation
    Verified accountProtected Tweets @
Suggested users
  • Verified accountProtected Tweets @
  • Verified accountProtected Tweets @
  • Language: English
    • Bahasa Indonesia
    • Bahasa Melayu
    • Català
    • Čeština
    • Dansk
    • Deutsch
    • English UK
    • Español
    • Filipino
    • Français
    • Hrvatski
    • Italiano
    • Magyar
    • Nederlands
    • Norsk
    • Polski
    • Português
    • Română
    • Slovenčina
    • Suomi
    • Svenska
    • Tiếng Việt
    • Türkçe
    • Ελληνικά
    • Български език
    • Русский
    • Српски
    • Українська мова
    • עִבְרִית
    • العربية
    • فارسی
    • मराठी
    • हिन्दी
    • বাংলা
    • ગુજરાતી
    • தமிழ்
    • ಕನ್ನಡ
    • ภาษาไทย
    • 한국어
    • 日本語
    • 简体中文
    • 繁體中文
  • Have an account? Log in
    Have an account?
    · Forgot password?

    New to Twitter?
    Sign up
dibblego's profile
Tony Morris
Tony Morris
Tony Morris
@dibblego

Tweets

Tony Morris

@dibblego

Power ∧ Attitude ⇒ Performance

Brisbane, Australia
tmorris.net
Joined May 2009

Tweets

  • © 2021 Twitter
  • About
  • Help Center
  • Terms
  • Privacy policy
  • Cookies
  • Ads info
Dismiss
Previous
Next

Go to a person's profile

Saved searches

  • Remove
  • In this conversation
    Verified accountProtected Tweets @
Suggested users
  • Verified accountProtected Tweets @
  • Verified accountProtected Tweets @

Promote this Tweet

Block

  • Tweet with a location

    You can add location information to your Tweets, such as your city or precise location, from the web and via third-party applications. You always have the option to delete your Tweet location history. Learn more

    Your lists

    Create a new list


    Under 100 characters, optional

    Privacy

    Copy link to Tweet

    Embed this Tweet

    Embed this Video

    Add this Tweet to your website by copying the code below. Learn more

    Add this video to your website by copying the code below. Learn more

    Hmm, there was a problem reaching the server.

    By embedding Twitter content in your website or app, you are agreeing to the Twitter Developer Agreement and Developer Policy.

    Preview

    Why you're seeing this ad

    Log in to Twitter

    · Forgot password?
    Don't have an account? Sign up »

    Sign up for Twitter

    Not on Twitter? Sign up, tune into the things you care about, and get updates as they happen.

    Sign up
    Have an account? Log in »

    Two-way (sending and receiving) short codes:

    Country Code For customers of
    United States 40404 (any)
    Canada 21212 (any)
    United Kingdom 86444 Vodafone, Orange, 3, O2
    Brazil 40404 Nextel, TIM
    Haiti 40404 Digicel, Voila
    Ireland 51210 Vodafone, O2
    India 53000 Bharti Airtel, Videocon, Reliance
    Indonesia 89887 AXIS, 3, Telkomsel, Indosat, XL Axiata
    Italy 4880804 Wind
    3424486444 Vodafone
    » See SMS short codes for other countries

    Confirmation

     

    Welcome home!

    This timeline is where you’ll spend most of your time, getting instant updates about what matters to you.

    Tweets not working for you?

    Hover over the profile pic and click the Following button to unfollow any account.

    Say a lot with a little

    When you see a Tweet you love, tap the heart — it lets the person who wrote it know you shared the love.

    Spread the word

    The fastest way to share someone else’s Tweet with your followers is with a Retweet. Tap the icon to send it instantly.

    Join the conversation

    Add your thoughts about any Tweet with a Reply. Find a topic you’re passionate about, and jump right in.

    Learn the latest

    Get instant insight into what people are talking about now.

    Get more of what you love

    Follow more accounts to get instant updates about topics you care about.

    Find what's happening

    See the latest conversations about any topic instantly.

    Never miss a Moment

    Catch up instantly on the best stories happening as they unfold.

    1. Nicolas Rinaudo‏ @NicolasRinaudo 18 Nov 2020

      Got into yet another argument that Haskell's type classes were superior to Scala's because Haskell has global instance uniqueness. Problem being, as far as I can tell, this is true in theory (by specifications) but not in practice (by implementation): https://nrinaudo.github.io/typeclasses/haskell.html …

      11 replies 3 retweets 34 likes
    2. Brian McKenna‏ @puffnfresh 19 Nov 2020
      Replying to @NicolasRinaudo @Iceland_jack

      in practice people often compile with warnings enabled

      1 reply 0 retweets 1 like
    3. Nicolas Rinaudo‏ @NicolasRinaudo 19 Nov 2020
      Replying to @puffnfresh @Iceland_jack

      In practice, it’s actually rather hard to put yourself in that situation unintentionally. My point is more that global uniqueness isn’t guaranteed, not that it’s hard to achieve :)

      1 reply 0 retweets 0 likes
    4. Brian McKenna‏ @puffnfresh 19 Nov 2020
      Replying to @NicolasRinaudo @Iceland_jack

      so "not in practice (but actually kinda in practice)"

      1 reply 0 retweets 0 likes
    5. Nicolas Rinaudo‏ @NicolasRinaudo 19 Nov 2020
      Replying to @puffnfresh @Iceland_jack

      No, I disagree with that. It’s not at all enforced by default, in practice. That’s just far less of an issue, in practice, than people make it out to be.

      1 reply 0 retweets 0 likes
    6. Tony Morris‏ @dibblego 19 Nov 2020
      Replying to @NicolasRinaudo @puffnfresh @Iceland_jack

      In practice, Haskell has global type-class uniqueness. That's not the only reason Haskell type-classes are superior.https://www.youtube.com/watch?v=hIZxTQP1ifo …

      1 reply 0 retweets 2 likes
    7. Nicolas Rinaudo‏ @NicolasRinaudo 19 Nov 2020
      Replying to @dibblego @puffnfresh @Iceland_jack

      Fair enough - what did I miss in my (nasty) bit of code? Doesn't it expose exactly the fact that global uniqueness is not guaranteed by ghc? Who's got the bigger type class implementation is another debate entirely and not at all the point I was making, sorry if it was unclear

      1 reply 0 retweets 2 likes
      Tony Morris‏ @dibblego 22 Nov 2020
      Replying to @NicolasRinaudo @puffnfresh @Iceland_jack

      The argument is practical Write Haskell; never use orphan instances. This is achievable with little/no penalty Write Scala; never use orphan instances. With this commitment, it's difficult & there's no sweet spot Scala does not have type-classes in any general practical sense

      5:19 PM - 22 Nov 2020
      2 replies 0 retweets 0 likes
        1. New conversation
        2. Nicolas Rinaudo‏ @NicolasRinaudo 22 Nov 2020
          Replying to @dibblego @puffnfresh @Iceland_jack

          That is entirely besides the point though. My point is: GHC doesn't enforce global instance uniqueness. This is demonstrably true, but exhibiting a program in which global instance uniquess is violated. Whether or not it's easy to avoid is another discussion

          2 replies 0 retweets 1 like
        3. Nicolas Rinaudo‏ @NicolasRinaudo 22 Nov 2020
          Replying to @NicolasRinaudo @dibblego and

          I will agree that a well disciplined team with 0 external dependencies will have no such problem in Haskell, but is almost guaranteed to have them in Scala. I'm not aware of a mechanism by which you can guarantee that your Haskell dependencies don't do what I did though.

          0 replies 0 retweets 0 likes
        4. End of conversation
        1. New conversation
        2. Nicolas Rinaudo‏ @NicolasRinaudo 22 Nov 2020
          Replying to @dibblego @puffnfresh @Iceland_jack

          The separate discussion that you're answering to is interesting though. I'd like to know how you define a type class, and in which way that definition invalidates Scala's encoding of them. This is neither a challenge nor sarcasm. I'm genuinely interested.

          1 reply 0 retweets 0 likes
        3. Tony Morris‏ @dibblego 22 Nov 2020
          Replying to @NicolasRinaudo @puffnfresh @Iceland_jack

          It's a rabbit hole! Happy to go there though.

          1 reply 0 retweets 0 likes
        4. Show replies

      Loading seems to be taking a while.

      Twitter may be over capacity or experiencing a momentary hiccup. Try again or visit Twitter Status for more information.

        Promoted Tweet

        false

        • © 2021 Twitter
        • About
        • Help Center
        • Terms
        • Privacy policy
        • Cookies
        • Ads info