Satoshi Terasaki
Satoshi Terasaki
Hi, @caseykneale How about this code? ```julia cpu_count = py"psutil.cpu_count(logical=True)" label = reshape(["Trace $(c)" for c in 1:cpu_count], 1, cpu_count) p = plot( range(1,step=interval/SECOND,length=len), cpu_history', xlim=[0, xmax], ylim=[0, 100], xticks...
# Compare code A and code B - We can see the difference between codeA: `sum((1,2,3,4))` and codeB `sum([1,2,3,4])` and will find that the former is better than latter. -...
Hi, I've created a Julia package [PyPlotly.jl](https://github.com/AtelierArith/PyPlotly.jl) which is Pythonista friendly Julia user interface for plotly. Now we can write a Julia code as if it is written in Python....
@jorge-jardim FYI ```julia using Dash using PyPlotly using JSON3 using PyCall py""" import psutil """ using Plots const SECOND = 1000 interval = 0.5 * SECOND # msec xmax =...
I've got the following error even the latest releases. An error message `✘ Cannot find Slack installation.` shows on my Mac terminal
Ah ... Sorry. I should have tried the script below: https://github.com/fsavje/math-with-slack/blob/v3/math-with-slack.py just run ``` $ sudo python math-with-slack.py sudo python mathwiths.py Using Slack installation at: /Applications/Slack.app/Contents/Resources/app.asar Using local settings file...
Yep I think we need fix `cfg/metayolo.data` accordingly not `data/metayolo.data`
No. > GC.gc(false)
FYI: I've found (though it's not perfect) the following code works on Jupyter Notebook: ```julia using WebIO using JSXGraph function init() w = Scope( imports=[ joinpath(dirname(pathof(JSXGraph)), "libs", "jsxgraphcore.js"), joinpath(dirname(pathof(JSXGraph)), "libs",...
I came up with another solution based on `WebIO.onmount` function. ```julia using WebIO # WebIO v0.8.15 using JSXGraph #JSXGraph v0.1.6 function initscope(id="board") n = Node( :div, id=id, className = "jxgbox",...