User Portlet User Portlet

Carlo Barbieri
Discussions
Of course I didn't mean to say this is not really cool. I especially liked your MakeBoxes code I think it might be very useful to expose to end users in some form, maybe it should be a way to typeset (tree) Graphs or just general expressions, maybe...
To see what FormPage is doing you can evaluate it locally. If you do that you'll see that interpreter is already doing what you need In[102]:= Interpreter["GeoCoordinates"]["12 3', 3"] Out[102]= GeoPosition[{241/20, 3}]
There is a much better way of doing that APIFunction["d" -> RepeatingElement["Integer"], Max[#d] &]["d__json" -> "[1,2,3,4]"] Look at the documentation of AllowedCloudParameterExtensions, to see why that works, and what else can be made to...
KeyMap[Interpreter["AdministrativeDivision"], as] This is really inefficient, because you'd be interpreting things serially. AssociationThread[Interpreter["AdministrariveDivision"][Keys[as]], Values[as]] is probably a bit less...
Hi, First of all it's great to see our little function being put to such good use, I really like the form you've deployed! I've noticed you use bare HTML tags in your form. Please note that the fact that doing that works at all right now is a...
This is because FortranForm, CForm et al are not properly functions, they don't evaluate. As a matter of fact they just change the out cell in the frontend. Same goes for InputForm, FullForm, TraditionalForm. Because of that they mostly just work in...
They exist for as long as Wolfram Research is in business and as long as you still have cloud credits. It's not terribly difficult to remove them all (but be careful as this is **irreversible** and will delete **all** of your deployments): ...
The problem is that what can be considered a URL actually varies depending on context. And sometimes something that is not a complete URL can be promoted to one. I suggest you look up `Interpreter["URL"]` and its restrictions. Then you'll probably...
Beautiful post. Just an FYI if you do `Interpreter[type] /@ list` it's much slower than `Interpreter[type][list]`, because the latter parallelizes the calls to alpha. Also if all you're interested in are the coordinates you can use...
Exercise: figure out what fraction of buildings in the US don't overlook a McDonalds "restaurant". Bonus points for using height of buildings and GeoVisibleRegion.