User Portlet User Portlet

Discussions
Thanks, Gianluca and Neil, for your suggestions. What ended up working for me was the following code: ``` export[notebookFile_, outputFile_] := With[ {notebook = NotebookPut[Get[notebookFile], Visible -> False]}, SetOptions[notebook,...
It turns out Export[] works just fine: ``` Export[ FileNameJoin[{ $HomeDirectory, "optimization", "production-optimization.html" }], nb ] ```
Hello Werner, You probably figured it out by now, but here's how you can create the notebook and make it public: ``` obj = CloudDeploy[ Notebook[{Cell["head", "Section"], Cell["text", "Text"]}], "MyPath/MyNotebook.nb" ]; ...
Also, for those using JetBrains IntelliJ or PyCharm, there is a plugin that seems quite nice: https://plugins.jetbrains.com/plugin/7232-mathematica-support Probably not as feature-rich as the Workbench, but it got 5 starts from its users.
Is it possible to configure a custom domain/subdomain to our Wolfram Cloud base url? Let's say I have a domain xyz.com, and I want to configure it to point to the wolframcloud.com/objects/username url? That's so my Cloud objects can be served...
Is it possible to put the GalleyView inside other UI elements, and publish it to the Cloud? When I deploy the following: CloudDeploy[ Column[{TextCell["Some Title"], GalleryView[....]}], "some/url" ] I see a blank...
Hello, I'd like to publish a web page publicly, but the "Powered by Wolfram Cloud" footer is rendered at the bottom of the page. Is there a way to remove it? In order to do that, do I need a specific type of license? Thanks, Quenio