Daniel Himmelstein

Results 652 comments of Daniel Himmelstein

Okay both of the following work, so the double quotes were the issue: ```sql deployment_environment = 'development' deployment_environment='development' ``` Also noting `deployment_environment` doesn't show up in the SQL editor autocomplete:...

Are you envisioning dependabot being used for this python package, whose dependencies are as unpinned as possible for wide compatibility: https://github.com/manubot/manubot/blob/2914d720dfe02d2bda8781f8f784bc14d461e2e3/setup.cfg#L41-L55 Or for rootstock which does [pin](https://github.com/manubot/rootstock/blob/ca748bf4e80a830d7bee69a20b1fae18e028d9e6/build/environment.yml) dependencies? For the...

> I think we could start with dependency updates for GH actions (e.g. actions/checkout, actions/setup-python, which are out of date). No objections here, it's good to update action dependencies. Doing...

Hmm, this Cypher query finds all 27,977 gene-gene edges and just took 340 milliseconds for me to run at , so something is going wrong for you: ```cypher MATCH (gene:Gene)-[rel]-(disease:Disease)...

I wonder if if the node.js [logfire](https://www.npmjs.com/package/logfire) package would be better for an electron app than the `@pydantic/logfire-browser` browser package (looking at [docs here](https://logfire.pydantic.dev/docs/integrations/javascript/#deno))? @bruno-borges-2001 are there any features missing...

Ah okay, so the `logfire` node.js library currently hardcodes the [following](https://github.com/pydantic/logfire-js/blob/f998d44e4eb0228749b6ae27f40891c55250b8b6/packages/logfire/src/logfireConfig.ts#L115): ```ts const TRACE_ENDPOINT_PATH = 'v1/traces' ... traceExporterUrl: `${baseUrl}/${TRACE_ENDPOINT_PATH}`, ``` without the ability to specify the trace url in [`LogfireConfigOptions`](https://github.com/pydantic/logfire-js/blob/f998d44e4eb0228749b6ae27f40891c55250b8b6/packages/logfire/src/logfireConfig.ts#L42-L112)...

Thanks @petyosi, we'll keep an eye on https://github.com/pydantic/logfire-js and stay tuned here for any workarounds in the meantime.

@petyosi coming back to this issue, I'm thinking proper electron app support is really just blocked by `TRACE_ENDPOINT_PATH` and `METRIC_ENDPOINT_PATH` being [hardcoded](https://github.com/pydantic/logfire-js/blob/fbeda12a66c51c07623d457c7370a62266e75ad4/packages/logfire-node/src/logfireConfig.ts#L115-L116) in the `logfire-node` package (renamed from just `logfire`...

Okay I finally got logfire-node working with the proxy using a config like: ```mjs import { DiagLogLevel } from '@opentelemetry/api'; import logfire from '@pydantic/logfire-node'; const baseUrl = 'https://custom-base-url.net'; logfire.configure({ advanced:...

In general, you will probably start by creating a hetmat graph with: https://github.com/hetio/hetmatpy/blob/3a426ccbcf63b27911e43be5ff305a3968224439/hetmatpy/hetmat/__init__.py#L20-L25 But to create graph, you'll need https://github.com/hetio/hetnetpy/issues/49! I'll follow up with a getting started. Also noting the...