Giter VIP home page Giter VIP logo

baobab's Introduction

Welcome to my GitHub page, weary traveler. My name is Guillaume Plique, aka Yomguithereal and I am a research engineer working with social science researchers and designers in Sciences Po's médialab in Paris.

I am usually available for some light/short freelance or consulting work. You can join me by writing at guillaumeplique+freelance on gmail.com servers for such enquiries.

I usually work in the following domains:

  • Webmining (Scraping, APIs, Crawling etc.)
  • Algorithmics & data structures
  • Fuzzy matching & full-text search tweaking
  • Record linkage & deduplication
  • Natural Language Processing
  • Machine learning & data science
  • Graph theory & interactive visualisation
  • Fullstack web development

You can also read some shenanigans on my blog over there: https://yomguithereal.github.io/

Finally, you can support my Open Source work by sponsoring me directly on GitHub over here: https://github.com/sponsors/Yomguithereal

baobab's People

Contributors

angus-c avatar anthony-redfox avatar antimatter15 avatar basicdays avatar brendanannable avatar bverjat avatar charlieschwabacher avatar christianalfoni avatar denisw avatar fmal avatar fraunigai avatar hnordt avatar jacomyal avatar jblz avatar jondot avatar jrust avatar kirjs avatar marciaga avatar marcin-mazurek avatar mkuklis avatar nimelrian avatar nivekmai avatar ogennadi avatar pindamonhangaba avatar remidej avatar roark avatar tschwecke avatar vog avatar yomguithereal avatar zache avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

baobab's Issues

Handle log update better

So that sub updates should be dropped by parent's one (should not happen however thanks to merge).

Rename $thread

The term thread is misleading for non-functional backgrounds. chain or stack maybe?

Cursor merging

Plus would mean a drastic mixin simplification.

AND / OR

Problem with multiple cursors.

Hi there,

thanks for creating an interesting data tree module :)

While testing Baobab, I have a problem with multiple cursors.

A structure with a single cursor works nicely:

var tree = new Baobab({
  users: ['John', 'Jack'],
  firstlast: {
    john: {
      firstname: 'John',
      lastname: 'Silver'
    },
    jack: {
      firstname: 'Jack',
      lastname: 'Gold'
    }
  }
});

var BaobabTest = React.createClass({

    mixins: [tree.mixin],   
    cursor: ['users'],

    render: function() {

        var uniqueId = function() {
            return 'id-' + Math.random().toString(36).substr(2, 16);
        };

        var renderItem = function(name) {
            return <li key={uniqueId()}>Name: {name} Key: {uniqueId()}</li>;
        };

    return (
        <Title title='Boabab-Test'>
            <ul>{this.cursor.get().map(renderItem)}</ul>
        </Title>

    );
    }

});

The same structure with multiple cursors throws the error:
"ReferenceError: path is not defined"

var BoababTest = React.createClass({

    mixins: [tree.mixin],

    cursors: {
    users: ['users'],
    firstlast: ['firstlast']
    },

    render: function() {

        var uniqueId = function() {
            return 'id-' + Math.random().toString(36).substr(2, 16);
        };

        var renderItem = function(name) {
            return <li key={uniqueId()}>Name: {name} Key: {uniqueId()}</li>;
        };

    return (
        <Title title='Boabab-Test'>
            <ul>{this.cursors.users.get().map(renderItem)}</ul>
        </Title>

    );
    }

});

Same error message with: this.cursors[0].get()

Do I miss something?

State recording

Must keep log in history in order to be able to fire updates correctly.

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.