swamidass

Results 85 comments of swamidass

I can manage the refresh through the UI backend. That isn't hard in the use case I'm envisioning. I'm still unclear on how to actually create a key that will...

Okay, it seems that I now have some working code. In python (or nodejs), first make the key. ``` my_key = jwt.encode(claims, secret, algorithm="HS256") ``` Then make a supabase client...

I checked. Turns out that even if you use the service_role API-key, it will NOT bypass RLS, and instead use just the header key for RLS with role="authenticated" or "anon",...

What about server side WASM? Does that work? E.g... https://github.com/vercel/og-image

Thanks for linking to that! Looks close, but not quite there. As written, doesn't it assume you have the full text read into memory? How would you rework it to...

In summary it seems this functionality is technically feasible but not easy to implement. It's useful too, so adding the feature to the main library seems worth while.

That's great! I should also specify I really need this for python.

Looks like orbits can be comptued from automorphism groups, e.g those computed from igraph_automorphism_group. However, it looks like those aren't available in the python bindings. I added a request in...

igraph_automorphism_group is not the same as computing the topological equivalence. However, it is fairly straightfoward to compute the equivalence groups from the automorphism groups. I can implement this myself. @szhorvat...

FYI, there is a straightforward solution, using the serverless framework and this plugin: https://www.serverless.com/plugins/serverless-python-requirements Key configuration is to add: ``` custom: pythonRequirements: zip: true ``` And to include this in...