Nick Olinger

Results 20 comments of Nick Olinger

@janko-m just wanted to comment that having some basic `specs` would be helpful

> would something like that suffice? Yes! This is great. Thanks for pointing me toward that

@dblock Thanks for the suggestion! That indeed worked. I also noticed that using match do not populate the bot's help command. If using `match` and I want to provide syntax...

@dblock I see. I have a long weekend coming up, so I'll give this a look and see if I can open an PR.

Just a passerby giving his two cents. > What determines who is in/out of the "community"? I think this is something that would take shape down the road if the...

@markstos I'll provide a detail explanation of what is being displayed here later today.

> I suspect it's listing nested dependencies which got flattened to the top level, even though they are not top-level dependencies. @markstos At a glance from the work a year...

Thanks for the package! Using produces "invalid prop" errors in Expo 29.0.0 ```jsx ``` I'm curious if `barCodeWidth` could be aliased so that `width` and `barCodeWidth` could be supported? https://github.com/wonsikin/react-native-barcode-builder/blob/master/index.js#L171

You can use fastify's preHandler hook ![image](https://user-images.githubusercontent.com/1470297/194718131-927791db-cd80-4f55-9b03-273775998844.png) Example: ```typescript export function jwtAuthMiddleware( request: FastifyRequest, reply: FastifyReply, done: HookHandlerDoneFunction ) { // get auth token from header const token = request.headers['x-auth-token']...

Also seeing this problem with postgres. ![image](https://user-images.githubusercontent.com/1470297/198336201-290623f3-a9e5-411b-ba16-0ddaa9e293ca.png) The same query used with this plugin returns `null` table_name's _hardcoding for debugging purposes_ ```typescript console.log("== before load =="); const db = await...