Skip to content
View corlaez's full-sized avatar
🏠
WFH since January 2020
🏠
WFH since January 2020

Block or report corlaez

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
corlaez/README.md

Welcome!

I am Armando Cordova and:

  • 🔭 I’m currently working for Align Technology
  • 💕 Hexagonal Architecture, Data Context Interaction, Vertical Slices, Extreme Programming, Functional Programming, Kotlin, Java. Out of the Tar Pit
  • 📫 Ping me: Twitter, LinkedIn
  • ⚡ Fun fact: I enjoy playing the violin and guitar

Pinned Loading

  1. combinatorsYandU.js combinatorsYandU.js
    1
    // Y  combinator's lambda calculus formula:
    2
    // Y = λf.(λx.f(x x))(λx.f(x x))
    3
    // Single line Y combinator implementation:
    4
    // const Y = f => (x => f(v => x(x)(v))) (x => f(v => x(x)(v)))
    5
    // My prefered (2 line) Y implementation (more readable IMO)
  2. Flatten an Array! Flatten an Array!
    1
    # Flatten an array.
    2
    
                  
    3
    ## Requirements
    4
    You will need node js to run this array flattener.
    5
    
                  
  3. palatable/lambda palatable/lambda Public

    Functional patterns for Java

    Java 876 85