Skip to content
View gardyna's full-sized avatar

Organizations

@BandUp

Block or report gardyna

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 Loading

  1. wearable_communicator wearable_communicator Public

    A simple utility plugin to make it easier for a flutter project to add and communicate with wearable devices

    Kotlin 48 13

  2. BandUp/band-up-android BandUp/band-up-android Public

    An Android client for BandUp

    Java 4

  3. BandUp/band-up-server BandUp/band-up-server Public

    A backend server for BandUp

    JavaScript 2 1

  4. reverse polish evaluator in python reverse polish evaluator in python
    1
    # This example assumes binary operators, but this is easy to extend.
    2
    # Comes from this excellent article: http://blog.reverberate.org/2013/07/ll-and-lr-parsing-demystified.html
    3
    ops = {
    4
      "+": (lambda a, b: a + b),
    5
      "-": (lambda a, b: a - b),