Skip to content

Instantly share code, notes, and snippets.

View jmakov's full-sized avatar

jmakov

View GitHub Profile
Clickhouse start fails after fresh install:
problem:
- permission denied /var/lib/clickhouse
solution:
- sudo mkdir -p /var/lib/clickhouse
- chown -R clickhouse:clickhouse /var/lib/clickhouse
MT4 install on Ubuntu 19.10
problem:
- during install asks for proxy settings
@jmakov
jmakov / test.py
Last active February 12, 2023 15:25
polars hvplot exception
# import hvplot.pandas # monkeypatch `pandas` data frames so we can have `df.plot()`
# import hvplot.polars # does not exist
import hvplot
import polars
df = polars.DataFrame({"a": range(0, 10)})
hvplot.plot(df["a"], kind="line")
---------------------------------------------------------------------------