Skip to content
View stephenjfox's full-sized avatar

Organizations

@OpenMined
Block or Report

Block or report stephenjfox

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

Pinned

  1. CustomExtensions CustomExtensions Public

    Making my Java development experience a bit more organized and a little less painful, one abstraction at a time.

    Java 1

  2. Morph.py Morph.py Public

    A neural architecture optimizer, targeted at model-size w.r.t. accuracy

    Python 17 2

  3. Parse XML in Kotlin with Jackson Parse XML in Kotlin with Jackson
    1
    import com.fasterxml.jackson.annotation.JsonAlias
    2
    import com.fasterxml.jackson.annotation.JsonProperty
    3
    import com.fasterxml.jackson.annotation.JsonRootName
    4
    import java.util.*
    5
    
                  
  4. const vs function declaration, showi... const vs function declaration, showing why you must declare your work first
    1
    /*
    2
    This shows that, because of block-scoping, const function references must be
    3
    invoked in-order or else things will fail silently.
    4
    const's are added the name space serially (in the order in which they appear)
    5
    and much of the body isn't declared when we first try to invoke or functions