Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am giorgiolino on github.
  • I am gknb (https://keybase.io/gknb) on keybase.
  • I have a public key ASCQSG-oT_jLX8StRwJev2KZM6IAbc6ZNPO2KkRI-tJlAwo

To claim this, I am signing this object:

@Giorgiolino
Giorgiolino / mixmo_word_parser.js
Last active September 28, 2016 08:00
Init word parser implementation for mixmo
/*
|------------------------------------------------------------------------------
| USAGE
|------------------------------------------------------------------------------
| * Open a blank web page
| * Inject this script
| * Init a working mixmo table with :
| * Mixmo.init();
| * Add a few words :
| * Mixmo.h_word('HELLO', {x:20,y:5});
<?php
abstract class AbstractAgent
{
abstract function getName();
abstract function publishMessage($message, $receiver);
abstract function receiveMessage($message, $sender);