Charles
Charles
Cool, this looks awesome and exactly what I want! I might make my own version based on this, if you don't mind. I'll link it here if I do.
Sorry, just realized this repo hasn't been active for 5 years. Found a functional maintained fork at [here](https://github.com/sorenisanerd/gotty).
Hi! Thanks for your work btw! It's a normal file. ```bash ❯ which kak /usr/local/bin/kak ❯ EDITOR=/usr/local/bin/kak starship config thread 'main' panicked at 'Unable to locate editor in $PATH.: Custom...
Yes my environment is exported in my shell configs. By the way I installed starship through snaps. I'm also struggling to get starship to use my config file. It complains...
```python for a in accounts: print("a=",a) if a["mcc"] == "True": a.update(mcc=True) if a["mcc"] == "False": a.update(mcc=False) if a["parent_id"] == "": a.update(parent_id=None) graph.add_node(redisgraph.Node(label="account", properties=a)) ``` Basically, I'm loading data from a...
An extract from the actual cypher query: ``` "GRAPH.QUERY" "accounts" "CREATE (hpebuobbzn:account{account_id:\"310-095-8250\",name:\"Fondation Mira\",parent_id:None,mcc:False}) ``` I guess it should be converting the `None` to a `null`, right?
Okay, I got it. Thanks!
Thanks, I'll use keep_alive! Some clarifications on our setup. * We have multiple deployments running luigi(different codebases), sharing the same central scheduler * in a single deployment of a codebase,...
Thanks, that all makes sense. In our case, we don't have multiple deployments of the same codebase sharing a scheduler. On Sat., Mar. 6, 2021, 5:16 a.m. Lars Albertsson, wrote:...