Jerome Dane
Jerome Dane
I LOVE traktoid, but it desperately needs widgets such as "upcoming shows" like the ones found in TV Show Favs (http://goo.gl/ZcEkl). I forget this project, and will probably use adding...
Still working on handling new changes to the Gmail DOM to make this work again.
There were massive changes to the Gmail DOM. Gmail no longer runs in an iFrame, so I need to step through my code and make sure everything is working. I've...
The extension was originally designed as an HTML signature manager, so no code was implemented to handle plain text emails. It works as designed, but I would like to have...
The actual reloading of extensions wasn't happening for me (see issue https://github.com/robin-drexler/chrome-extension-auto-reload/issues/1), so I fixed it using code from [this extension](https://github.com/arikw/chrome-extensions-reloader/blob/master/background.js#L1). I also added a gulp build process in order...
Pull request for [this post](https://github.com/vlucas/phpDataMapper/issues#issue/6) Separated out field validation logic within phpDataMapper_Base::field() to protected phpDataMapper_Base::loadFields(array $fields) to give classes that extend from the base more flexibility in defining their fields....
Need a better way of setting table engine ("MyISAM", "InnoDB", etc.) through the mapper class instead of tying it to the adapter, which forces you to create multiple adapters if...
From [relationships documentation](http://phpdatamapper.com/documentation/usage/table-relationships/): "Currently, the above ‘HasMany’ example will incur N+1 queries. That is, one query will be executed for each set of comments requested for each post. So if...