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

Block or report corlaez

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 Fedex (fdx 🛒)
  • 💕 Hexagonal Architecture, Functional Programming, Kotlin, Java, Web, Lambda Calculus
  • 📫 Ping me: Twitter, LinkedIn
  • I own a capsule (Lagrange or other gemini client needed): gemini://corlaez.com
  • ⚡ Fun fact: I enjoy playing the violin and teach to a handful of students.

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 875 85