Skip to content

Instantly share code, notes, and snippets.

View toddmohney's full-sized avatar
💭
Upside down in a code dumpster looking for my contact lens

Todd Mohney toddmohney

💭
Upside down in a code dumpster looking for my contact lens
View GitHub Profile
@toddmohney
toddmohney / 01-useful-libraries.md
Last active October 27, 2017 18:14
So, you've learnt you a Haskell? Now read these!

HTTP client libraries

wreq

If you're coming from Ruby, think HTTParty level of abstraction.

https://www.stackage.org/package/wreq

This is a great tutorial written by the creator. Definitely something to aspire to as a library author.

Keybase proof

I hereby claim:

  • I am toddmohney on github.
  • I am grossghost (https://keybase.io/grossghost) on keybase.
  • I have a public key ASBwP7fJErISb4xW-Swh7Lme-rvk8alEUCX29W9eUNR2AQo

To claim this, I am signing this object:

@toddmohney
toddmohney / 1_interfaceoff.md
Last active November 11, 2016 18:14
Interfaceoff

###The design of an interface should always speak the language of the consumer, ###for if not for the consumer, the interface serves no purpose.

@toddmohney
toddmohney / namespaces-in-test.md
Last active November 4, 2016 19:54
Namespaces in test

I've been bitten by this on multiple projects now.

Take the following test setup for the class Accounts::Analytics::Account

module Accounts
  module Analtyics
    describe Account do

    end
 end