Tolga Paksoy

Results 25 comments of Tolga Paksoy

In order to keep the first post a bit short, I'll paste the relevant files here: `SequenceMixin.countCompounds()` https://github.com/biojava/biojava/blob/master/biojava3-core/src/main/java/org/biojava3/core/sequence/template/SequenceMixin.java#L49 `AbstractSequence.countCompounds()` (delegates to `SequenceMixin`) https://github.com/biojava/biojava/blob/master/biojava3-core/src/main/java/org/biojava3/core/sequence/template/AbstractSequence.java#L607

@willishf Yes I eventually went that path. But it forces me to think about ambiguity myself when I would like the Biojava library to do it for me. Perhaps a...

If you need API routes where it doesn't matter if you are authenticated with Shopify, you can just skip the `verifyRequest` middleware for those routes using this snippet: ```javascript //...

As a workaround you can force this using type casting: ```ts Shopify.Context.initialize({ // ... API_VERSION: "2022-01" as ApiVersion, }); ```

Or use the context that you pass into the `headers` method. ```ruby require "graphql/client" require "graphql/client/http" # Star Wars API example wrapper module SWAPI # Configure GraphQL endpoint using the...

I license past and future contributions under the dual MIT/Apache-2.0 license, allowing licensees to chose either at their option.

This is a kind of a big issue for me during development. I keep having to do full page reloads in order to get a valid token. I am receiving...

You need to perform any routing on the client side. Any page that lands on `/:someroute` needs make use of the same logic that loads an app skeleton and not...

At some point you will use that offline access token in one of your requests to retrieve things from Shopify (or maybe your own local database as well?), so yes...