Posts about IPython
Made this as part of Svelte's hackathon. An IPython notebook that runs completely in your browser with Pyodide, with a GPT copilot. The chat interface allows users to seamlessly move code from the notebook to the chat to ask questions and vice versa, make coding more accessible to everyone. Used SvelteKit, Taildwind, Pyodide (running in a webworker), openai, daisyui, svelte-splitpane, and codemirror. I would be happy to go into the details if anyone is interested. :) the code is pretty messy tbh since it's kinda hacky but would love for folks to try it out.
Try it here: https://zeusnotebook.com
Repo: https://github.com/seahyinghang8/zeus-notebook
Youtube demo: https://youtu.be/6XMwHDJHaqA
I don't like to use Jupyter notebook, but I use IPython for runnning Pyhton scripts. It is easy with VS Code, I have to just press 'shift+enter' and ipython console is running. I can switch the kernel in this ipython console and then Julia commands work great, but I have to write them in the command line directly. I tried to find solution in order to make 'shift+enter' combination to work and I found one workaround...I just switch the language from Julia to Python in right bottom angle of VS Code. After that 'shift+enter' creates automatically new IPython console, then I manually switch to Julia kernel in this console. Now, the problem is no Julia syntax highlighting.......any ideas?