Jordan Phillips

Results 15 comments of Jordan Phillips

@jspeth - thanks, this is working great. One oddity I've noticed is that calling `blur()` on a focused element from javascript running within the webview will dismiss the keyboard, but...

I have an immediate use case for this, and would be interested in working up a PR for it. My minimal wishlist for this feature would be: - Associating `Problem`...

For my part, there are some issues with outsourcing this to external trackers; mainly: 1. We receive email notifications from and perform investigation of `Problem`s in errbit itself - moving...

@stevecrozz - sorry, I should have clarified that our assignment/issue creation has been automated (we've done this with hosted services in the past, and do it in a makeshift way...

Thanks for the code @saadq - that worked great, but I did need to add an authorization header (using DSN auth, so no secrets are required): ``` "Authorization": `DSN ${...

After experiencing a slowdown in month view with many events, as described, profiling pointed to a large proportion of time spent in sort, which appears to be due to the...

Hi @pcboy - I've run into the same issue, as there doesn't appear to be any way to use an arbitrary location for the database. If you happen to still...

Hi @poltak - I don't have the cycles at the moment, but it should be relatively straightforward to make it configurable. There are a couple ways that come to mind:...

I've updated the patch above to include a subtle difference: switching the database to WAL journaling mode with: `sqlite3_exec(db, "PRAGMA journal_mode=WAL;", NULL, NULL, NULL);` This is necessary due to an...

HI @LulinhaReparador - @poltak has an open PR for this in https://github.com/andpor/react-native-sqlite-storage/pull/374.