Greg Berns

Results 11 issues of Greg Berns

I'm new to OCaml and started using `pgocaml` but ran into an issue immediately because I used `Core` in the same module. [It was suggested](https://discuss.ocaml.org/t/errors-with-base-core-and-an-imported-ppxs-or-deriving/7927) I open an issue to...

I'm new to OCaml and struggled to figure out how to get the PPX working. Suggestion: In the [Using the PPX section](https://github.com/darioteixeira/pgocaml#using-the-ppx), add how to configure the PPX in the...

From [#83](https://github.com/fcsonline/drill/issues/83#issuecomment-687357126): > Concurrency and iterations are linked so there's no way to, say, run a large CSV file a single time with currency > 1 other than by using...

question

**Minimal steps to reproduce the problem (not required if feature enhancement):** 1) Open browser window so its only 700px hight 1) Create new flow, create new "REST Invoke" activity 1)...

kind/bug
area/flogo-web

Had a problem where I had a tuple of functions `(a->b, a->c)`, so needed to apply `a` to both functions and return `(b,c)`. Signature: `(a -> b, a -> c)...

The `introspection query` link in the README is broken. > The easiest way to add this to your project is using an [introspection query](https://github.com/graphql/graphql-js/blob/master/src/utilities/introspectionQuery.js) to your backend. Looks like the...

### Summary We're heavily using 'Named Queues' (setting the `queue_name` column in `jobs` table) now and seeing issues with a job becoming locked and never getting unlocked. This blocks the...

question

The [ApplicationInsights-JS](https://github.com/Microsoft/ApplicationInsights-JS) SDK supports a method called [`setAuthenticatedUserContext`](https://github.com/Microsoft/ApplicationInsights-JS/blob/f07196947183f13703a507a636c197d72e4a91ba/API-reference.md#setauthenticatedusercontext) which sends a custom auth token with each event. The client code is basically just doing some validation then updating the `ai.user.authUserId`...

enhancement

Needed removed the www to get the url to work. Thanks for a great talk, lots of reading to do.

Code changes have been made that make [Error-handling](https://github.com/louthy/echo-process/wiki/Error-handling) out f date. ``` Process.observe(Process.DeadLetters).Subscribe(Console.WriteLine); ``` Should be something like this: ``` Process.observe(Process.DeadLetters()).Subscribe(Console.WriteLine); ```