User Portlet User Portlet

Discussions
This has been long time an inspiration for me, and I finally got to recreating this with another dataset: https://community.wolfram.com/groups/-/m/t/3554064 Thank you [@Marco Thiel][at0] ! ![enter image description here][1] [at0]:...
I am running 14.0 and built-in multi-step undo seems to work with small notebooks. With my larger notebook size 30k, 900 lines, I only get one level of undo, sometimes zero. The problem seems to be MemoryLimit = 10,000,000 is too small. It...
> One could probably say that Mathematica is a language for people who > what to get things done, but who don't want to be programmers. I would > have no idea how to quantify that type of user. That is exactly why I am using Mathematica 10.0.2. ...
You already have a direct and simple solution( flatten first) using basic Mathematica and it works for any depth of nesting. A different way to do that is to use a Listable function (alias for "==") and flatten the result. eq[x_, y_] =...
> Try it again, but this time click the "case insensitive" button. Let > us know what you turn up. A gain for both but with *I do not know* winning.. I missed the i (I) on a laptop screen.
Fixed. Forgot about the z^0 case. Again, this is just proof of concept. The parsing can be done better and in a much more robust way. Any other bugs, please let me know.
Thank you gentlemen. These are certainly workarounds. I consider this either a bug though or a design flaw, or a design decision that I do not understand the reasoning for... It doesn't make sense to me that placing an image in a Column or grid...
Scenario - a series of distances between GPS points. (Some overhead in getting there too). Fold the list for accumulated distances along a path. How costly are units? About 3 orders of magnitude after realizing that 0.0 is converted on every...
If you're really pressed for time (With Complete Loss of Generality) **WCLOG** xml = xml /. XMLElement[a_, b_, {}] -> XMLElement[a, b, {"Null"}]; list = xml[[3, 1, 3, 1, 3]]~Join~xml[[3, 2 ;; 16, 3, 1]] {"Kuwait", "5", "5",...
Hello Douglas, thanks for answer! A very good solution! Cheers, Gordon