James Berry

Results 29 comments of James Berry

Poracle remembers the weather rather than needing an extra query. Is this an option?

This would be a valuable addition, are PRs being actively integrated on this project?

Switched to develop branch. SQL for execution is: ```sql INSERT INTO `user` (`user_id`,`name`,`email`) VALUES ('1','James','[email protected]') AS `new_user` ON DUPLICATE KEY UPDATE `name`=`new_user`.`name`,`name`=`new_user`.`name`,`email`=`new_user`.`email`,`email`=`new_user`.`email` ``` For MYSQL8 this has a duplicate 'email'=......

You add this in pypika like this: ``` q = q.on_duplicate_key_update(field, Values(field)) ```

These steps confirmed working after my migration. Things are slightly more complicated now because we have upgraded the database schema since dropping support for sqlite. 1. be on the latest...

When a user selects edit are you presenting as a new row, or using the edit row functionality on the monster api? @TurtIeSocks @kamieniarz a reproduction api call sequence would...

I don't have up to date reactmap so unable to repro so need api calls

Funnily enough a user asked me for this today as well. The hook is not sent with a weather report, but could be in weather cache. It may be possible...

Thanks - that is very close to what I'm trying to do. Rather than have one big file though, I prefer the idea of individual filter files which can be...

Yes, absolutely the intention is that the file based configuration feeds into existing tracking database, so there are no changes to the alerting part of Poracle. On reloading the config...