Gwendal Roué

Results 177 comments of Gwendal Roué

SQLite is certainly capable of database observation. Check out GRDB's [ValueObservation](https://github.com/groue/GRDB.swift/blob/master/README.md#valueobservation) for ready-made Combine publishers. ```swift // Connect to the database let dbQueue = ... // Define an observation for...

You can look at the way GRDB.swift handles search pattern sanitization ([FTS3/4](https://github.com/groue/GRDB.swift/blob/master/Documentation/FullTextSearch.md#fts3pattern), [FTS5](https://github.com/groue/GRDB.swift/blob/master/Documentation/FullTextSearch.md#fts5pattern)).

@RLovelett, thanks for the mention of GRDB. Beware that the code you provide embeds a raw string right into SQL, which should always be avoided: > `SELECT * FROM documents...

@mickeyl, this is the author of GRDB speaking. I'll try to answer your question. GRDB currently provides absolutely no diffing algorithm, because the current trend is to split data production...

Exactly! Long life to the large landscape or database apis for Obj-C and Swift developers :-)

GRMustache is a bad Mustache citizen: it does not provide the white-space processing that is documented by the Mustache spec. My opinion on it that it was half-thought, painful to...

Yep, I'm free to do whatever I want - especially solve my users' problems. Mustache looks like it will remain a very bare spec forever - nothing that ties me...

I've rewritten the issue title - it now exactly describes my interpretation of your story. Let me know if you believe I missed something.

@thelucid had a [neat idea](https://github.com/mustache/spec/issues/2#issuecomment-13942526) that at first sight looks flawless to me (thanks!). It would require: - you to turn your strings into template instances before rendering them (through...

Hi Jonathan. I'm sorry I've been very busy last weeks. The more I've been looking at our goal, the more I convinced myself I need to implement spec-compliance regarding white...