Tobias Bergkvist

Results 48 comments of Tobias Bergkvist

### I just realized: This won't actually work as well as I had hoped Calculating the maximum available power using the thevenin equivalent simplification makes the assumption that impedances in...

No, I haven't - but thanks for the suggestion! continuation power flow seems to be close to what I'm looking for. It would be great if the PYPOWER implementation was...

Seems like PYPOWER added continuation power flow 20 days ago! https://github.com/rwl/PYPOWER/commit/b05591d415cd515a37f8e61766458405300ac3c3

In case you want to create geopandas.GeoSeries from bus_geodata: ```py import pygeos import geopandas as gpd import numpy as np def bus_geoseries(net): points = pygeos.points(np.array([ net.bus_geodata.x.values, net.bus_geodata.y.values ]).T) return gpd.GeoSeries(points,...

Update: pygraphblas is now published to conda-forge: https://github.com/conda-forge/pygraphblas-feedstock (thanks to @eriknw, @jim22k, @michelp)

If the following issue is solved https://github.com/conda-forge/graphblas-feedstock/issues/8, I guess it might be easy/possible to install pygraphblas on Windows as well.

@DiscRiskandBisque Consider the following: You run a contract with invalid parameters, causing the Ethereum VM to throw an error. Gas is spent, and you receive a transaction hash. **Drizzle registers...

[Docker app](https://github.com/docker/app) (which is currently part of Docker CLI 19.03.0 as an experimental feature) ``` DOCKER_CLI_EXPERIMENTAL=enabled docker app run ```

When the popup is closed, the respective html tags are removed from the DOM. The React element remains. The way this component is implemented makes a lot of sense in...

Is it possible to have libgit2 use OpenSSH instead of libssh/libssh2?