José Bayoán Santiago Calderón

Results 262 comments of José Bayoán Santiago Calderón

I guess I am not that late to the party. Here would be the approach from SQL ``` UPDATE A SET a = B.x, b = B.y FROM B WHERE...

The SQL syntax I find it easier (example of in-place), ``` UPDATE t1 SET t1.c1 = COALESCE(t1.c1, t2.c1) FROM t1 INNER JOIN t2 ON t1.id = t2.id ; ```

I guess this is related. I would like VS code clients (e.g., julia client) to have an option to start in the Slurm job I am currently in and not...

I am able to get the Julia language server by having added ``` ml >/dev/null 2>&1 && ml julia ``` to my `~/.bashrc`. For Slurm jobs, I have to 1....

@roblourens There seems to be about 37 non-bugs in the backlog milestone. Could you give a rough estimate on how high this issue ranks in terms of priorities? For example,...

I tried the solution. I am able to start VS code on the computing node but it returns a shell in the computing node on in the Slurm job. Is...

Aye. The solution works in the sense I can connect to the compute nodes but I am not inside the Slurm job so I don't have access to the resources...

@simonbyrne Do you know if there is an issue for the Statistics stdlib for this?

I might push a draft soon to get some feedback but I have mostly followed the Python kit. The object-oriented makes it slightly awkward so minor changes to use multiple...