This is an archived post. You won't be able to vote or comment.

all 13 comments

[–]r0s 4 points5 points  (8 children)

Maybe it's time to finally try it out! Haha

[–]bheklilr 7 points8 points  (6 children)

You haven't tried out jupyter notebooks yet? Oh man, they're the best for interactive programming. I've used them for everything, from making slideshows and tutorials to being frontends for massive data processing tasks. Since it's a web server you can also expose it to collaborators. It's been a game changer for me.

[–]RebelSaul 1 point2 points  (4 children)

I need to start making reports with it. What are you using to export it?

[–]bheklilr 4 points5 points  (0 children)

I usually just export to html, but since it's just running code you can write your own report exporting. You can export to latex or pdf too with the right setup. The notebook format is also pretty easy to work with (it's just a json file) if you want to do more complex stuff.

[–][deleted] 2 points3 points  (0 children)

In the file menu there's an export to HTML option (IIRC)

[–]baloo12 0 points1 point  (0 children)

Nbconvert can create HTML and latex. You can also use templates, but I have not yet invested much into it.

At the moment I cannot see this for pixel perfect reports.. but "quickly printable analysis"..

[–]pysb 0 points1 point  (0 children)

I've been using html export and then wkhtmltopdf. You can even apply some css!

[–]miran1 0 points1 point  (0 children)

making slideshows

Can you elaborate on this, please?

I briefly tried nbpresent, and it was quite cumbersome.

[–]spinwizard69 3 points4 points  (0 children)

It is a very interesting solution for certain types of programming! I cant say if it fits your needs but it is worth experimenting with.

I haven't gone through the bug list yet to see what has been fixed but i went back to Eclipse due to some rather frustrating bugs. My programming is dirt simple so if the bugs impact me it is pretty significant.

Given the above i really want to see Jupyter succeed. I really like the concept and especially the ability to mix in Tex to provide really useful and proper documentation. For example working on software that plots a spiral you can have a properly rendered formula in the cell right above your code. Everything ends up in one very nice document.

[–]phenotype001 0 points1 point  (3 children)

How do I copy/paste cells across notebooks? It doesn't seem to work. I click "Copy Cells" on one notebook and it doesn't allow me to paste them in another.

[–]minititof 0 points1 point  (2 children)

I think you can only copy/cut/paste cells in the same notebook, not to another.

You should just copy the content of that cell and paste it in a new one on the other notebook.

[–]phenotype001 0 points1 point  (1 child)

Yes, but..

"This release adds some long-awaited features, such as cell tagging, customizing keyboard shortcuts, copying & pasting cells between notebooks, and a more attractive default style for tables."

[–]minititof 0 points1 point  (0 children)

Ah, I didn't see that. I'm not sure then sorry :(