Yet another product where I haven't got a clue what it is after reading the front page.
Azure Jupyter Notebooks
91–100 of 160 posts
Re: Azure Jupyter Notebooks
#92Is this just a hosting solution for Jupyter Notebooks? Or does it add something to the standard Jupyter Notebooks?
Re: Azure Jupyter Notebooks
#93Did not expect this to happen with Microsoft. Giving away access to a public Jupyter Server (open source project) Running it in Linux (Ubuntu) and letting users have a play with it. I for one am super happy to play with it however long this lasts. Some info so far. !free -h total used free shared buff/cache available Mem: 55G 7.5G 26G 70M 21G 44G Swap: 99G 0B 99G !uname -a Linux nbserver 4.4.0-51-generic #72-Ubuntu S…
Data point - our team (Python), wanted to hold a "Python day @ msft" event to teach/inform internal teams on the language/ecosystem. We were hoping maybe 50..100 would show up, if lucky. A thousand and twenty one people showed up!
Another data point - the official Azure CLI was just rewritten in Python (win/macos/linux):
https://github.com/Azure/azure-cli
Thanks!
Re: Azure Jupyter Notebooks
#94> "Internet Explorer is not supported by Jupyter: For best results use Microsoft Edge, Chrome, Firefox, or another modern browser."
This makes me so happy - MS products leaving old browsers behind gives all web developers a ball and bat in the same fight.
Re: Azure Jupyter Notebooks
#95just small bug 1: Click "sign in". 2: Choose account I want to signin with 3: Click "cancel". 4: I get "500, Runtime Error" without custom error page. Anyway, looks interresting
Re: Azure Jupyter Notebooks
#96Awesome to see F# supported, based on OSS F# for Jupyter Notebooks ( https://github.com/fsprojects/IfSharp ) work. It's really lovely when a tool written in another tech (Python there) can be used/extended with others stack/tech, because was written as language agnostic. That should be a rule for good design in oss tooling. Not starting using language specific communication, but extensibile from day0 in design (obv d…
Seeing APIs that look like: Chart.Line(data) |> Chart.WithTitle("smth") |> ... ...makes anyone say "yuck" and avoiding F# for any exploratory work. And even after you understand how the pipe operator works and how useful it can be in other contexts . I mean, ugh... Even putting up with superfluous verbosity like `List.Map(myList)` instead of a `map(myList, ...)` or `myList.map(...)` because "that's how F#/OCaml does…
R is a curious counter-example, given that the '%>%'[1] operator in dplyr is nearly identical to the '|>' operator in F#. Given dplyr's ubiquity, it would seem that people coming from R would have no issue with F#.
[1] https://cran.rstudio.com/web/packages/dplyr/vignettes/introd...
Re: Azure Jupyter Notebooks
#97I've been experimenting with Jupyter notebooks recently so I thought I'd try uploading one I made which solves a wooden puzzle. It seemed to work just fine! https://notebooks.azure.com/library/puzzles I had to host the images in the notebook elsewhere rather than upload them with the notebook. It looks like that is possible but then I'd have to grapple with Azure blobs...
Re: Azure Jupyter Notebooks
#98Re: Azure Jupyter Notebooks
#99Earlier quoted context omitted.
Currently, yeah, just JS. It's aimed more at non-technical folks - the "clever graphing" stuff should work without writing much code, if any.
> Currently, yeah, just JS. How do they plan to make it support multiple languages without having a backend service?
Not claiming this is a good solution, but definitely would be one possible route.
Re: Azure Jupyter Notebooks
#100Did not expect this to happen with Microsoft. Giving away access to a public Jupyter Server (open source project) Running it in Linux (Ubuntu) and letting users have a play with it. I for one am super happy to play with it however long this lasts. Some info so far. !free -h total used free shared buff/cache available Mem: 55G 7.5G 26G 70M 21G 44G Swap: 99G 0B 99G !uname -a Linux nbserver 4.4.0-51-generic #72-Ubuntu S…
[msft] :). Interestingly enough, the decision to use linux/docker was a no-brainer. I know from the outside it might seem odd, but these days, the attitude (and rightly so) is: use the language/stack/OS/toolchain/etc. you need to get your job done. I think you'll see an explosion of Linux/Python/Java/Go/... internally & externally on Azure. Data point - our team (Python), wanted to hold a "Python day @ msft" event to…