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

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only 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 ShopRunner 🛒
  • 💕 Hexagonal Architecture, Functional Programming, Kotlin, Java, Web, Lambda Calculus
  • 📫 Ping me: Twitter, LinkedIn
  • ⚡ Fun fact: I enjoy playing the violin and teach to a handful of students.

Pinned

  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 855 87