You're asking for something different here. What conda does is package all binary dependencies (e.g., libpq) that normally should be dynamically linked and provided by your OS. The pip ecosystem (including uv) doesn't…
In other words: * /skill may or may not call on the instructed action * /tool (or @tool) will guarantee the action is taken This is overgeneralizing and we need to talk about harness-specific features like hooks (which…
It's determinism, flexibility, and language. To the LLM, the a skill input is deterministic, inflexible, and outputs natural language. A REST API (not the REST itself, but modern output being JSON primitives) outputs…
You've misunderstood the GIL and Python threads. For I/O, you can add threads and share the same connection object. Like any other languages, you are responsible for making it thread-safe. There's also async. Many…
It's more so horizontal vs vertical scaling rather than languages. You aren't running large scale xact/s on a single node.
Kubernetes isn’t a great example of you can just read it like a document. The resource kind jargon is huge. Most compose files are small and use familiar linux jargon. I can give an non-dev IT person a compose file and…
I like to think most seniors know to not blindly follow DRY. However, I can tell many of us are uncomfortable with the idea of needing to maintain multiple duplicated sources of code. To help with that, I think the…
This assumes the bug exists in both places which might not be true at all even if they both are dependent on the same duplicated code. If you only spot the bug in path A and not path B, why fix the bug for B?
You could still have security bumps happening (like dependabot).
GTD has the addition that you must create a system of reminders/followups. GTD is great to practice being okay with forgetting stuff and trusting your tracking system.
I think your argument focuses a lot on the scenario where you already have cleaned data (i.e., data warehouse). I and many other data engineers agree, you're better off with hosting it on SQL RDBMS. However, before…
We need long running averages and 2023-2025 is still too early to determine it's not effective. The barriers of entry for 2023 and 2024, I'd argue is too high for inexperienced developers to start churning software. For…
The data is surprising. However, I do wish this article looked carefully into barriers of entry as it can explain the lack of increases in your data. For example, in Steam, it costs $100 to release a game. You may…
You could either delete the .venv and recreate it or run `uv pip install --upgrade .` Much prefer not thinking about venvs.
The autocorrelation is important to show that it's transformation to D-K plot will always give you the D-K affect for independent variables. However, the focus on autocorrelation is not very illuminating. We can explain…
The more common experience with autocorrelations are with time series, but what the author said is correct even in that context. A time series autocorrelation relates the same time series function at different times. At…
Did you guys considered existing standards when you chose what to use for representing workflow definitions before choosing OpenFlow? For example, Common Workflow Language
Hover your mouse over those and you should get the absolute date. Some if not many are using time tags.
It's not popular because you're mostly hearing from the science community who want more features in their array (vector/matrix/tensors). Why would you want to use C-like arrays in Python anyways?
It is not deprecated. Calling setup.py directly is (i.e., `python setup.py sdist`) Modern way of building a package is to use a build frontend. Most notably is the PyPA's build package. python -m build . Most project…
In this particular case. OP had a lot of knowledge which served as a crutch in this journey. The less you are aware of how setuptools used to work, the better.
Here's a packaging guide that answers most of your questions. https://learn.scientific-python.org/development/guides/packa... As a TLDR, you have many options 3rd party build tool (aka build backends). Each build tool…
In diataxis, a tutorial serves your education and a how-to guide serves your work. Following this standard, a tutorial may contain a simpler or more contrived example; it may contain things you'd never do in production.
Why? What's your goal visiting the W3C homepage? It should be to learn who they are and what else the website provides. You're not there to read it's entire homepage. You're there to navigate. The pages that need to be…
It works on HN for at least the reason that HN post titles are often relatable. The same can't be said about paper titles even if you're in the field.
You're asking for something different here. What conda does is package all binary dependencies (e.g., libpq) that normally should be dynamically linked and provided by your OS. The pip ecosystem (including uv) doesn't…
In other words: * /skill may or may not call on the instructed action * /tool (or @tool) will guarantee the action is taken This is overgeneralizing and we need to talk about harness-specific features like hooks (which…
It's determinism, flexibility, and language. To the LLM, the a skill input is deterministic, inflexible, and outputs natural language. A REST API (not the REST itself, but modern output being JSON primitives) outputs…
You've misunderstood the GIL and Python threads. For I/O, you can add threads and share the same connection object. Like any other languages, you are responsible for making it thread-safe. There's also async. Many…
It's more so horizontal vs vertical scaling rather than languages. You aren't running large scale xact/s on a single node.
Kubernetes isn’t a great example of you can just read it like a document. The resource kind jargon is huge. Most compose files are small and use familiar linux jargon. I can give an non-dev IT person a compose file and…
I like to think most seniors know to not blindly follow DRY. However, I can tell many of us are uncomfortable with the idea of needing to maintain multiple duplicated sources of code. To help with that, I think the…
This assumes the bug exists in both places which might not be true at all even if they both are dependent on the same duplicated code. If you only spot the bug in path A and not path B, why fix the bug for B?
You could still have security bumps happening (like dependabot).
GTD has the addition that you must create a system of reminders/followups. GTD is great to practice being okay with forgetting stuff and trusting your tracking system.
I think your argument focuses a lot on the scenario where you already have cleaned data (i.e., data warehouse). I and many other data engineers agree, you're better off with hosting it on SQL RDBMS. However, before…
We need long running averages and 2023-2025 is still too early to determine it's not effective. The barriers of entry for 2023 and 2024, I'd argue is too high for inexperienced developers to start churning software. For…
The data is surprising. However, I do wish this article looked carefully into barriers of entry as it can explain the lack of increases in your data. For example, in Steam, it costs $100 to release a game. You may…
You could either delete the .venv and recreate it or run `uv pip install --upgrade .` Much prefer not thinking about venvs.
The autocorrelation is important to show that it's transformation to D-K plot will always give you the D-K affect for independent variables. However, the focus on autocorrelation is not very illuminating. We can explain…
The more common experience with autocorrelations are with time series, but what the author said is correct even in that context. A time series autocorrelation relates the same time series function at different times. At…
Did you guys considered existing standards when you chose what to use for representing workflow definitions before choosing OpenFlow? For example, Common Workflow Language
Hover your mouse over those and you should get the absolute date. Some if not many are using time tags.
It's not popular because you're mostly hearing from the science community who want more features in their array (vector/matrix/tensors). Why would you want to use C-like arrays in Python anyways?
It is not deprecated. Calling setup.py directly is (i.e., `python setup.py sdist`) Modern way of building a package is to use a build frontend. Most notably is the PyPA's build package. python -m build . Most project…
In this particular case. OP had a lot of knowledge which served as a crutch in this journey. The less you are aware of how setuptools used to work, the better.
Here's a packaging guide that answers most of your questions. https://learn.scientific-python.org/development/guides/packa... As a TLDR, you have many options 3rd party build tool (aka build backends). Each build tool…
In diataxis, a tutorial serves your education and a how-to guide serves your work. Following this standard, a tutorial may contain a simpler or more contrived example; it may contain things you'd never do in production.
Why? What's your goal visiting the W3C homepage? It should be to learn who they are and what else the website provides. You're not there to read it's entire homepage. You're there to navigate. The pages that need to be…
It works on HN for at least the reason that HN post titles are often relatable. The same can't be said about paper titles even if you're in the field.