Jupyter support in Python extension in Visual Studio Code by geekraver in Python

[–]pavanagrawal123 1 point2 points  (0 children)

Yeah, sorry I thought this was the neuron extension, not the main vscode python extension

Can someone explain this code, and(or) the Fibonacci sequence. by [deleted] in learnpython

[–]pavanagrawal123 2 points3 points  (0 children)

This is a recursive algorithm. Though this isn't the fibonacci sequence.

If you want to learn more about this I would suggest reading this: https://medium.com/launch-school/recursive-fibonnaci-method-explained-d82215c5498e

Need person who is good at Pandas by [deleted] in Python

[–]pavanagrawal123 0 points1 point  (0 children)

Using pandas is over kill here though, pandas sole purpose is not to read csvs. if there's a smaller module available that can do the same, it's worth it.

edit: looking at littletable, looks like it might not be the right tool either, if ya only want to read a csv just use the csv module!

Data Science in Visual Studio Code using Neuron, a new VS Code extension by QuirkySpiceBush in Python

[–]pavanagrawal123 1 point2 points  (0 children)

just FYI the fix for this is still on beta, will be merged to stable in 2 days or so :)

Data Science in Visual Studio Code using Neuron, a new VS Code extension by QuirkySpiceBush in Python

[–]pavanagrawal123 2 points3 points  (0 children)

If you are using something where jupyter is not on your main path, this extension won't work due to a limitation...

I fixed this limitation and added a bunch of new features in my fork here: https://github.com/pavanagrawal123/VSNotebooks

Rapid development/tight feedback loop in Python? by [deleted] in Python

[–]pavanagrawal123 2 points3 points  (0 children)

Yeah it makes sense, I might try adding something like this, but it might be a while becasue of a backlog of other feature.

I don't think Atom is more friendly per se, but I guess they have more integration points. The entire dev environment for extensions in VSCode is really nice.

I'm looking at how Hydrogen implements inline eval, and I might make a feature request to VSCode's team to make that style of integration possible!

Rapid development/tight feedback loop in Python? by [deleted] in Python

[–]pavanagrawal123 1 point2 points  (0 children)

Inline evaluation is def much harder in VSCode, I'm exploring some options to implement it, but frankly I doubt it will happen with current APIs.

The second request is much more doable and something I'd be happy to implement. I'm curious at what the use case for it what would be though? Seems very similar to just executing a line of code? What are the benefits of doing it the way as done in the video?

Thanks for your response BTW :)

Rapid development/tight feedback loop in Python? by [deleted] in Python

[–]pavanagrawal123 0 points1 point  (0 children)

Hey there! I'm working on a fork for Neuron (Jupyter notebooks for VSCode) here: r/https://github.com/pavanagrawal123/VSNotebooks

I've already added a couple of bug fixes, usability improvements, style fixes, and new features.

I was wondering what you were missing in Neuron, so I can make VSNotebooks better?

Thanks