Kyle Van Berendonck

Results 24 comments of Kyle Van Berendonck

Only UTF8 is required by spec now. The best implementation that we've found is the lightweight one linked on MDN.

+1 also need to be able to do search i.e. `/records?q=bob` to match an artist with name `bob` assosciated to record via foreign key. Currently have a table driven by...

Is this trivial now that https://github.com/sequelize/sequelize/issues/3095 has landed?

This workaround isn't working for me, here's what I did: ``` let accounts = epilogue.resource({ model: models.Account, endpoints: ['/accounts', '/accounts/:id'], associations: true }); accounts.list.fetch.before = function (req, res, context) {...

I made it work ! I'll share solution when I get off lunch

@edrpls ``` let fixPagination = (endpoint) => { endpoint.use({ list: { fetch: { before: function(req, res, context) { context.options = context.options || {}; context.options.distinct = true; return context.continue; }}}}); };...

Please fix this! I installed SublimeHaskell just to use its (much better!) .tmLanguage file and was a little disappointed when this didn't work because my project is riddled with these.

Do you think that it is a valid test if I remote into the other node on a different network, and then attempt to connect back to the same workstation...

I have tested the above scenario, and assuming that I tested correctly, I believe that the server can not successfully establish the connection. However, this weird duplication in the menu...

Thanks Denton, I apologize for jumping to the wrong conclusion. We have been using Tailscale for less than a week now. Perhaps it would be nice if there was a...