GithubHelp home page GithubHelp logo

geckopush's Introduction

Introduction

  • I'm Patrick! (☞゚ヮ゚)☞
  • I'm a product-minded fullstack developer and engineering manager.
  • I develop mostly with Python and Typescript these days.
  • I've done a lot of work building experimentation platforms and scaling the Growth team at @noom.
  • I'm a huge productivity tool nerd, currently a huge fan of @obsidianmd.

Quickstart

Things I've built

  • Collate Notes - A cross platform electron-based note taking app
  • VS Notes - A vscode extension for rapid note taking
  • Obsidian Readability - An Obsidian plugin to add Hemmingway App style highlights for your writing
  • Noom.com - Contributed a fairly sizable portion of Noom.com's codebase
  • Noom.com's Experimentation Platform (aka Meristem) - Built a Git-based experimentation system used by Noom's Growth team to run experiments while reducing tech debt (ask me how).

geckopush's People

Contributors

patleeman avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

geckopush's Issues

Bar_Chart class missing "name" field in self.data to show legend of multi-series bar chart

Hi,

Have always been enjoying your work so far but your bar_chart missing name field to show legend:

class BarChart(Widget):
    def __init__(self, data=None, x_axis_labels=None,
                 x_axis_type=None, y_axis_format=None, y_axis_unit=None,
                 *args, **kwargs):
        super(BarChart, self).__init__(*args, **kwargs)
        self.data = []
        self.x_axis_labels = x_axis_labels
        self.x_axis_type = x_axis_type
        self.y_axis_format = y_axis_format
        self.y_axis_unit = y_axis_unit

        if data is not None:
            self.add_data(data=data)

    def add_data(self, data, *args, **kwargs):
        self.data.append(
            {
                "data": data
            }
        )

would be better if you could update them as:

class BarChart(Widget):
    def __init__(self, data=None, name = None, x_axis_labels=None,
                 x_axis_type=None, y_axis_format=None, y_axis_unit=None,
                 *args, **kwargs):
        super(BarChart, self).__init__(*args, **kwargs)
        self.data = []
        self.name  = '' ''
        self.x_axis_labels = x_axis_labels
        self.x_axis_type = x_axis_type
        self.y_axis_format = y_axis_format
        self.y_axis_unit = y_axis_unit

        if data is not None:
            self.add_data(data=data)

    def add_data(self, data, name, *args, **kwargs):
        self.data.append(
            {
                "data": data
            }
        )
      self.name =  name

Text for 2x2 number and secondary stat widget

The docs say:

For a 2 x 2 widget you can show a label next to the primary value. For a 1 x 1 if you exclude a number from the second item you can specify a text label instead.

However, I get the following error when I push to a 2x2 number and secondary stat widget:
GeckoboardException: Widget accepts text or a secondary value only.
Shouldn't the text be accepted?

Now accepting issues

If you run into any bugs, have any feature requests, or questions, please open up an issue and I'll get to them as soon as possible!

Datasets API Support

There has been a request for support for the new Datasets API.

The new API allows developers to create and delete a schema and push data to it so a user can build visualizations using a data set instead of pushing data directly to a specific widget.

This issue will be documenting support for this new feature.

Links:

Developer docs
Forum discussion

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.