Grant Richmond

Results 54 comments of Grant Richmond

I managed to add delete support to a personal build really easily, editing will be much more difficult. You can see the delete changes here: https://github.com/grantcodes/omnibear/commit/edc2013442dfc602500311493af2a92755bdd36e I've not submitted a...

I didn't even think about that issue. In a basic case it could always just support replacing properties, with no need to pull the existing microformats from the site. Actually...

I don't think I have tested reading link headers on the frontend. But it may just be a limitation of js fetch requests. See: https://stackoverflow.com/questions/38953864/how-to-get-headers-of-the-response-from-fetch#38954244 So perhaps setting `Access-Control-Expose-Headers` accordingly...

I agree that structuring it around the parts of the brain is confusing. I would prefer just naming things after what they do, for example: skillMapper is more obvious than...

I've had a first go at restructuring the skills as classes: https://github.com/grantcodes/P-Brain.ai/tree/extendable-skills I need to do a lot of tidying, testing and updating. But I think it feels like a...

In case someone ends up wanting to set up docker vacuum with caprover like I did: 1. Create an app with persistent data 2. Don't expose as a webapp 3....

An example feed where a `photo` property is created, but not removed from the content: http://feeds2.feedburner.com/thenextweb

Digging this one up again because I managed to work around this with a couple of filters: ```php add_filter( 'timber/image/new_url', function ( $url ) { if ( strpos( $url, '-content/uploads'...

Excellent idea! I'm all for it! I don't know if you've mentioned them already but I've talked with @EdwardHinkle and @martymcguire about a similar idea of having express middleware to...