Charles Burgess

Results 11 issues of Charles Burgess

Currently Knex converts encrypted PG fields to Buffers, which are not consistently encoded to and from JSON. Add support for optionally passing a param to `.cache()` that handles buffers (...

This project could really use some test coverage. Jest is configured, but mocking and testing that the cache is working when expected is necessary.

help wanted
chore

When launching, sometimes the app will repeatedly crash and it does not always start working again. I often need to delete the app and reinstall it Heres what console.app on...

Love this project and use it regularly for templates! A sample splash screen would really help me understand the dimensions are placement of things so i can start making those...

Would be a great option to be able to automatically delete any dead files

enhancement
help wanted
good first issue

Adds optional support for setting the page title based on the breadcrumbs a user has defined. Example: ```jsx `MyApp - ${name}`} /> ``` Closes #15

This could be accomplished with a lib like [react-helmet](https://github.com/nfl/react-helmet) or with a simple hook: ```js useEffect(() => { document.title = paths[paths.length - 1]; }); ```

See the 5.x roadmap here https://github.com/ReactTraining/react-router/issues/6497 And the release here: https://github.com/ReactTraining/react-router/releases/tag/v5.0.0

WIth the Mutation component from Apollo. you can do something like this: ```jsx const AddTodo = () => { let input; return ( {(addTodo, { data }) => ( {...

When I do the following (where `RM_CODE` is a valid code) I get the error in the issue title and `deviceToken` is `undefined`. ```js const { Remarkable } = require("remarkable-typescript");...