Skip to content

Instantly share code, notes, and snippets.

View raymcdermott's full-sized avatar

Ray McDermott raymcdermott

  • OpenGrail
  • Belgium
View GitHub Profile

Keybase proof

I hereby claim:

  • I am raymcdermott on github.
  • I am raymcdermott (https://keybase.io/raymcdermott) on keybase.
  • I have a public key ASBzSH6LGCylAeFE3FiusmnPT-4axjypt15F-CXfalAC3go

To claim this, I am signing this object:

AWS Lambda, now with first class parentheses

A simple, powerful and compelling story for deploying Clojure with no overhead on AWS Lambdas.

NBB

ok2cry - end to end cryptography for the API ecosystem.

The following story explains the business need that gave birth to ok2cry. It shows why the need will continue to increase.

Composing products: to innovate in business and to delight customers

A fintech company wanted to offer credit cards to its customers over the loan product that they offered. In the modern manner, they outsourced the credit card management to another company. This kept them out of any regulatory controls which keeps costs and risk to a minimum. It offered an efficient way to quickly launch this new option and make their product more valuable and desirable to customers.

High security standards

The fintech company were using state-of-the-art cloud services to run their operations and manage customer access using Multi-Factor Authentication (MFA).

@raymcdermott
raymcdermott / jokes.clj
Last active February 11, 2023 17:28
Dumb quote transformations
(defn joke? [quotations r1 r2]
(let [[quotation author] (rand-nth quotations)
words (string/split quotation #" ")
words-count (range (count words))
[i1 i2] (take 2 (shuffle words-count))
start (vec (take (dec i1) words))
start (conj start (rand-nth r1))
remainder (drop i1 words)